:root {
    --accent: #ffdf0e; /* Lime Yellow Sport */
    --bg-black: #080808;
    --dark-grey: #121212;
}

body {
    background-color: var(--bg-black);
    font-family: 'Manrope', sans-serif;
    color: white;
    overflow-x: hidden;
}

/* --- TYPOGRAPHIE (Cinzel) --- */
.font-title {
    font-family: 'Cinzel', serif;
    letter-spacing: -1px;
}

.display-1 {
    font-size: clamp(3rem, 5vw, 6rem) !important;
    line-height: 0.9;
}

.text-accent { color: var(--accent); }
.bg-accent { background-color: var(--accent); }
.bg-dark-grey { background-color: var(--dark-grey); }

.text-outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    color: transparent;
}

.spacing-1 { letter-spacing: 1px; }
.spacing-2 { letter-spacing: 2px; }
.ls-3 { letter-spacing: 3px; }

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 60px;
    background-color: var(--bg-black);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* IMAGE CORRIGÉE (Pour voir le corps) */
.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Centre l'image verticalement */
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* --- BANDEAU DÉFILANT --- */
.marquee-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 15px 0;
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    white-space: nowrap;
    color: white;
}

.marquee-wrapper-reviews {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 15px 0;
}
.marquee-wrapper-reviews .marquee-content {
    animation: scroll 30s linear infinite;
    display: inline-block;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- ICÔNES GLOW (EFFET NÉON) --- */
.icon-glow {
    text-shadow: 0 0 15px rgba(226, 246, 76, 0.4); 
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Effet au survol du bloc parent */
.icon-hover-box:hover .icon-glow {
    transform: scale(1.2);
    text-shadow: 0 0 30px rgba(226, 246, 76, 0.8);
    color: white !important; /* Devient blanc au centre du glow */
}

/* --- DECORATIONS --- */
.decor-line-v {
    position: absolute;
    width: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}
.decor-plus, .decor-cross {
    position: absolute;
    color: rgba(255,255,255,0.2);
    font-family: 'Courier New', monospace;
    font-size: 20px;
}
.top-20 { top: 20%; }
.right-10 { right: 10%; }
.left-5 { left: 5%; }
.bottom-10 { bottom: 10%; }

/* --- BOUTONS --- */
.btn {
    border-radius: 0 !important;
    transition: all 0.3s;
    font-family: 'Manrope', sans-serif;
}

/* Bouton Jaune FORCÉ */
.btn-accent {
    background-color: var(--accent) !important;
    color: black !important;
    border: 1px solid var(--accent);
    opacity: 1;
}

.btn-accent:hover {
    background-color: white !important;
    border-color: white;
    color: black !important;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.4);
}

.btn-black {
    background-color: #000;
}
.btn-black:hover {
    background-color: #333;
    color: white;
}
.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}
.btn-outline-light:hover {
    background-color: white;
    color: black;
}

/* --- DIVERS --- */
.separator-accent {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
}
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }

/* --- SERVICES MODERNISÉS --- */

.service-row {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Animation très fluide */
    cursor: pointer; /* Indique qu'on peut interagir */
}

/* 1. Le Numéro Géant (Stroke Effect) */
.number-anim {
    /* Contour blanc fin par défaut */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3); 
    color: transparent;
    opacity: 0.5; /* Plus visible qu'avant (0.25 c'était trop sombre) */
    transition: all 0.5s ease;
    display: inline-block;
}

/* 2. Le Fond qui apparait subtilement */
.hover-bg {
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    transition: width 0.6s ease;
    z-index: 0;
}

/* 3. Les Flèches de la liste */
.list-arrow {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.3s ease;
    opacity: 0.5;
}

/* --- ANIMATION AU SURVOL (HOVER) --- */

/* Le fond s'étend */
.service-row:hover .hover-bg {
    width: 100%;
}

/* Le numéro se remplit en Jaune et se déplace légèrement */
.service-row:hover .number-anim {
    -webkit-text-stroke: 0px; /* On enlève le contour */
    color: var(--accent); /* On remplit en jaune */
    opacity: 1;
    transform: translateX(10px); /* Glissade latérale */
}

/* Le Titre s'allume */
.service-row:hover .title-anim {
    text-shadow: 0 0 15px rgba(255,255,255,0.3); /* Légère lueur */
}

/* Le texte descriptif devient plus clair */
.service-row:hover .text-anim {
    opacity: 1 !important;
    transition: opacity 0.4s ease;
}

/* Les lignes de détails bougent en cascade */
.service-row:hover .item-anim {
    color: white; /* Le texte devient blanc pur */
}

/* Les flèches s'allument et avancent */
.service-row:hover .list-arrow {
    transform: translateX(5px);
    opacity: 1;
    color: var(--accent) !important;
}

/* La barre verticale de séparation s'allume en jaune */
.service-row:hover .details-box {
    border-left-color: var(--accent) !important;
    transition: border-color 0.4s ease;
}
.bg-blue-glow {
    position: absolute; width: 200px; height: 200px;
    background: blue; filter: blur(80px); opacity: 0.1;
    top: -50px; left: -50px;
}
.bg-red-glow {
    position: absolute; width: 200px; height: 200px;
    background: red; filter: blur(80px); opacity: 0.1;
    top: -50px; right: -50px;
}

.review-card {
    min-width: 300px;
    white-space: normal;
}

.bg-black-transparent { background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); }
.filter-invert { filter: invert(1); }
.hover-accent:hover { color: var(--accent) !important; transition: 0.3s; }

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 80px;
    }
    .hero-image-wrapper { 
        position: relative; 
        height: 50vh;
        margin-top: 2rem;
    }
    .display-1 {
        font-size: 3.5rem !important;
    }
}

/* Accessibilité */
::selection { background-color: var(--accent); color: black; }
a:focus-visible, button:focus-visible, .btn:focus-visible {
    outline: 2px solid white; outline-offset: 4px; box-shadow: 0 0 15px var(--accent);
}
.text-white-50 { color: rgba(255, 255, 255, 0.7) !important; }
.bg-accent { color: #000000 !important; }

/* --- STYLE FAQ ACCORDÉON --- */
.accordion-button:not(.collapsed) {
    color: var(--accent) !important; /* Titre jaune quand ouvert */
    background-color: transparent !important; /* Pas de fond bleu moche */
    box-shadow: none !important; /* Pas de bordure bleue */
}
.accordion-button:focus {
    box-shadow: none !important; /* Enlève le focus bleu par défaut */
}
/* La petite flèche à droite en blanc */
.accordion-button::after {
    filter: invert(1);
}
/* La petite flèche devient jaune quand ouvert */
.accordion-button:not(.collapsed)::after {
    filter: sepia(100%) hue-rotate(50deg) saturate(500%);
}

/* --- EFFET IMAGE N&B -> COULEUR --- */
.grayscale-hover {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.grayscale-hover:hover {
    filter: grayscale(0%);
}

/* --- STYLE IMAGE SECTION DUO --- */
.grayscale-contrast {
    filter: grayscale(100%) contrast(1.2); /* N&B + Contraste renforcé */
    transition: all 0.5s ease;
}
.grayscale-contrast:hover {
    filter: grayscale(0%) contrast(1); /* Couleur au survol */
    transform: scale(1.02);
}

/* --- STYLE FOOTER SEO --- */
.hover-white:hover {
    color: white !important;
    padding-left: 5px; /* Petit décalage vers la droite */
    transition: all 0.3s ease;
}

.hover-accent:hover {
    color: var(--accent) !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Bordures subtiles pour le footer */
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* --- FIX PHOTO GROUPE (NOIR & BLANC + RECADRAGE) --- */
.team-photo-fix {
    width: 100%;
    height: 600px; /* Force la hauteur pour que le rognage s'active */
    object-fit: cover; /* Remplit le cadre proprement */
    object-position: center 35%; /* C'est ici qu'on descend le regard vers les corps */
}

/* --- LOGO STYLES --- */
.navbar-logo {
    height: 50px; /* Ajuste cette valeur si tu le veux plus ou moins gros (ex: 60px ou 40px) */
    width: auto;  /* La largeur s'adapte automatiquement pour ne pas déformer l'image */
    transition: transform 0.3s ease;
}

/* Petit effet bonus : le logo grossit légèrement au survol */
.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

/* Ajustement pour le mobile si besoin */
@media (max-width: 768px) {
    .navbar-logo {
        height: 40px; /* Un peu plus petit sur téléphone */
    }
}