@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Oswald:wght@500;700&display=swap');

/* VARIABLES DE BASE */
:root {
    --lions-blue: #00529b;
    --lions-gold: #ffcf06;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
}

/* THEMES ALTERNATIFS (Admin) */
body.template-modern { --lions-blue: #2D3436; --lions-gold: #00B894; }
body.template-royal { --lions-blue: #00529b; --lions-gold: #C5A022; }

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
    margin: 0; 
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* TITRES DE SECTIONS */
.section-title { 
    font-weight: 700; 
    color: var(--lions-blue); 
    text-transform: uppercase; 
    position: relative; 
    padding-bottom: 15px; 
    margin-bottom: 30px; 
}
.section-title::after { 
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: 0; 
    width: 50px; 
    height: 4px; 
    background: var(--lions-gold); 
}
.text-center .section-title::after { 
    left: 50%; 
    transform: translateX(-50%); 
}

/* SLIDER */
.carousel-item { height: 400px; background-color: #000; }
.carousel-item img { object-fit: cover; height: 400px; opacity: 0.6; width: 100%; }
.carousel-caption { bottom: 25%; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); }
.carousel-caption h1 { font-family: 'Oswald', sans-serif; font-size: 3.5rem; color: var(--lions-gold); letter-spacing: 2px; }

/* SECTIONS & CARTES */
.bg-white-section { background: white; padding: 80px 0; border-bottom: 1px solid #E2E8F0; transition: 0.3s; }
.gallery-img { height: 250px; width: 100%; object-fit: cover; border-radius: 10px; transition: 0.3s; }
.gallery-img:hover { transform: scale(1.03); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.info-card { background: #fff; padding: 30px; border-radius: 15px; border-left: 5px solid var(--lions-gold); box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }

/* BOUTONS */
.btn-lions { 
    background: var(--lions-blue); 
    color: white !important; 
    font-weight: 700; 
    border: none; 
    padding: 12px 25px; 
    border-radius: 6px; 
    transition: 0.3s; 
}
.btn-lions:hover { 
    background: var(--lions-gold); 
    color: var(--lions-blue) !important; 
}

/* =========================================
   MODE SOMBRE (DARK MODE)
   ========================================= */
body.dark-mode {
    --bg-light: #121212;
    --text-dark: #e0e0e0;
    --lions-blue: #00529b; /* Eclaircit le bleu pour la lisibilité sur fond noir */
}

body.dark-mode .bg-white-section,
body.dark-mode .card,
body.dark-mode .bg-white,
body.dark-mode .info-card {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
    border-color: #333 !important;
}

body.dark-mode .form-control,
body.dark-mode .form-select,
body.dark-mode .input-group-text {
    background-color: #2c2c2c !important;
    color: #ffffff !important;
    border-color: #444 !important;
}

body.dark-mode .text-muted { color: #a0a0a0 !important; }
body.dark-mode .navbar-brand img { background-color: #e0e0e0 !important; }

/* Taille unique pour tous les titres de section du site */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem) !important; /* S'adapte de mobile à PC */
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--lions-blue); /* Couleur officielle */
}