/* ========================================================= */
/*                       1. RESET                            */
/* ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: white;
}


/* ========================================================= */
/*                       2. HEADER                           */
/* ========================================================= */

header {
    background: url("images/ambiance.jpg") center/cover no-repeat;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: visible;
    isolation: isolate; /* FIX CRITIQUE */
}


header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    z-index: 1;
}

.logo-container {
    position: relative;
    z-index: 2;
}

.logo-neon {
    width: 350px;
    animation: neonPulse 2.5s infinite ease-in-out;
    filter: drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 14px #ffffff);
    margin: 0 auto 15px auto;
}

.logo-svg {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.logo-text {
    font-size: 100px;
    fill: #d4b44a;
    font-weight: bold;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(212,180,74,0.6);
}

.subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #4d7bff;
    margin-top: 10px;
    position: relative;
    display: inline-block;
}

.subtitle::after {
    content: attr(data-text);
    position: absolute;
    top: 130%;          /* bien en dessous pour le voir */
    left: 0;
    width: 100%;
    transform: scaleY(-1);
    color: red;         /* rouge pétant pour le test */
    opacity: 1;
    filter: none;
    pointer-events: none;
}




/* ========================================================= */
/*                       3. MENU                             */
/* ========================================================= */

.menu {
    background: rgba(0,0,0,0.0);
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(6px);
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: #caa03c;
}


/* ========================================================= */
/*                4. STRUCTURE GLOBALE PAGE                  */
/* ========================================================= */

.page-prestations {
    position: relative;
    z-index: 0;
    min-height: auto;
    padding-top: 40px;
}

/* ========================================================= */
/*        5. FOND ANIMÉ — DÉGRADÉ + HALOS + GRAIN            */
/* ========================================================= */

.page-prestations {
    background: linear-gradient(135deg, #0a1a33, #0f2747, #0a1a33);
    background-attachment: fixed;
    padding-top: 40px;
}

.page-prestations::before {
    content: "";
    position: fixed;
    top: var(--haloY);
    left: var(--haloX);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(80,150,255,0.45), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
    animation: haloMove 18s infinite ease-in-out;
}

.page-prestations::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(circle, rgba(255,215,130,0.35) 0px, transparent 2px),
        radial-gradient(circle, rgba(255,215,130,0.25) 0px, transparent 2px),
        radial-gradient(circle, rgba(255,215,130,0.15) 0px, transparent 2px);
    background-size: 3px 3px, 4px 4px, 5px 5px;
    animation: goldStars 14s infinite linear;
}

.stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 220, 150, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 220, 150, 1);
    animation: fallStars linear infinite;
}
/* ========================================================= */
/*                6. BLOCS PRESTATIONS                       */
/* ========================================================= */

.prestation-bloc {
    background: #fff;
    color: #333;
    border-radius: 14px;
    padding: 40px 30px;
    margin: 60px auto;
    max-width: 1000px;
    position: relative;
    border: 2px solid rgba(202,160,60,0.6);
    box-shadow:
        0 0 8px rgba(202,160,60,0.5),
        0 0 16px rgba(202,160,60,0.4),
        0 0 24px rgba(202,160,60,0.3);
    animation: neonGlow 3s infinite ease-in-out;
}

.mariage-bloc { background: #fff7e6; }
.anniversaires-bloc { background: #f0f7ff; }
.entreprise-bloc { background: #f5f5f5; }
.privees-bloc { background: #fef6ff; }
.commerciale-bloc { background: #f6fff2; }

.prestation-bloc::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 4px;
    border-radius: 4px;
    background: #4da6ff;
    box-shadow:
        0 0 8px #4da6ff,
        0 0 16px #4da6ff,
        0 0 24px #4da6ff;
    animation: neonLinePulse 3s infinite ease-in-out;
}

.prestation-contenu {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.prestation-image img {
    width: 420px;
    border-radius: 14px;
    object-fit: cover;
    transition: 0.3s ease;
    border: 2px solid rgba(202,160,60,0.5);
    animation: neonImageGlow 3s infinite ease-in-out;
}

.prestation-image img:hover {
    transform: scale(1.03);
}

.prestation-texte {
    flex: 1;
    min-width: 300px;
}

.prestation-bloc:nth-child(even) .prestation-contenu {
    flex-direction: row-reverse;
}
/* ========================================================= */
/*                8. RESPONSIVE                              */
/* ========================================================= */

@media (max-width: 900px) {
    .prestations-menu {
        flex-wrap: wrap;
        gap: 10px;
    }

    .prestation-contenu {
        flex-direction: column !important;
        text-align: center;
    }

    .prestation-image img {
        width: 100%;
        max-width: 500px;
    }
}


/* ========================================================= */
/*                9. ANIMATIONS                              */
/* ========================================================= */

@keyframes neonGlow {
    0% { box-shadow: 0 0 6px rgba(202,160,60,0.4); }
    50% { box-shadow: 0 0 24px rgba(202,160,60,0.8); }
    100% { box-shadow: 0 0 6px rgba(202,160,60,0.4); }
}

@keyframes neonImageGlow {
    0% { box-shadow: 0 0 6px rgba(202,160,60,0.4); }
    50% { box-shadow: 0 0 28px rgba(202,160,60,0.8); }
    100% { box-shadow: 0 0 6px rgba(202,160,60,0.4); }
}

@keyframes neonLinePulse {
    0% { box-shadow: 0 0 6px #4da6ff; }
    50% { box-shadow: 0 0 28px #80c1ff; }
    100% { box-shadow: 0 0 6px #4da6ff; }
}

@keyframes moveLights {
    0% { --x1: 20%; --y1: 20%; --x2: 80%; --y2: 80%; }
    50% { --x1: 30%; --y1: 10%; --x2: 70%; --y2: 90%; }
    100% { --x1: 15%; --y1: 30%; --x2: 85%; --y2: 70%; }
}

@keyframes gradientShift {
    0% { --c1: #2b2b2b; --c2: #3a3a3a; --c3: #4a4a4a; }
    50% { --c1: #262626; --c2: #333333; --c3: #404040; }
    100% { --c1: #2b2b2b; --c2: #3a3a3a; --c3: #4a4a4a; }
}

@keyframes haloMove {
    0% { --haloX: 10%; --haloY: 20%; }
    33% { --haloX: 70%; --haloY: 30%; }
    66% { --haloX: 40%; --haloY: 80%; }
    100% { --haloX: 10%; --haloY: 20%; }
}

@keyframes goldStars {
    0% { opacity: 0.4; }
    50% { opacity: 0.7; }
    100% { opacity: 0.4; }
}

@keyframes fallStars {
    0% { transform: translateY(-10vh); opacity: 0.2; }
    50% { opacity: 1; }
    100% { transform: translateY(110vh); opacity: 0; }
}
/* ========================================================= */
/*                10. PAGE ACCUEIL (INDEX)                   */
/* ========================================================= */

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.hero p {
    font-size: 22px;
    opacity: 0.9;
}

/* VIDEO */
.video-presentation {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.video-presentation video {
    width: 100%;
    display: block;
}

/* SERVICES */
#services {
    text-align: center;
    padding: 60px 20px;
}

#services h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: white;
}

.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 14px;
    width: 280px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.service h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

/* CONSEILS */
.conseils-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    color: white;
}

.conseils-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

.conseils-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.conseil-item {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    display: flex;
    gap: 15px;
}

.conseil-item .icon {
    font-size: 28px;
    color: #caa03c;
    text-shadow: 0 0 8px rgba(202,160,60,0.6);
}

.conseil-titre {
    font-weight: bold;
    color: #caa03c;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 20px;
    color: white;
    opacity: 0.8;
    margin-top: 60px;
}
/* Correction centrage header index */
header,
.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.logo-svg,
.logo-neon,
.subtitle {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.menu {
    width: 100%;
    display: flex;
    justify-content: center;
}

.menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: auto;
    margin: 0 auto;
}
body:not(.page-prestations) {
    background: linear-gradient(to bottom, #0d0d0d, #1a1a1a, #0d0d0d);
}
/* Correction centrage menu sur toutes les pages */
nav.menu {
    width: 100%;
    display: flex;
    justify-content: center;
}

nav.menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 0 auto;
    padding: 0;
}
/* Style boutons premium du menu */
nav.menu a {
    padding: 10px 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s ease;
}

nav.menu a:hover {
    background: rgba(255,255,255,0.18);
    border-color: #caa03c;
    color: #caa03c;
    box-shadow: 0 0 10px rgba(202,160,60,0.5);
}
/* Sous-menu prestations centré */
.prestations-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px auto;
    text-align: center;
}

/* Boutons du sous-menu prestations */
.prestations-menu a,
.prestations-menu button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.prestations-menu a:hover,
.prestations-menu button:hover {
    background: rgba(202,160,60,0.2);
    border-color: #caa03c;
    color: #caa03c;
    box-shadow: 0 0 12px rgba(202,160,60,0.6);
}
/* MENU PRINCIPAL — centrage global */
nav.menu {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* UL centré */
nav.menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 0 auto;
    padding: 0;
}

/* Boutons premium */
nav.menu a {
    padding: 10px 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s ease;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

nav.menu a:hover {
    background: rgba(255,255,255,0.18);
    border-color: #caa03c;
    color: #caa03c;
    box-shadow: 0 0 10px rgba(202,160,60,0.5);
}
/* Espace entre le sous-titre et le menu principal */
.logo-container .subtitle {
    margin-bottom: 30px;
}

/* Espace supplémentaire pour bien aérer le header */
header {
    padding-bottom: 60px;
}
/* Barre lumineuse premium sous le sous-titre */
.logo-container .subtitle::after {
    content: "";
    display: block;
    width: 160px;
    height: 3px;
    margin: 18px auto 0 auto;
    background: linear-gradient(to right, transparent, #caa03c, transparent);
    box-shadow: 0 0 12px rgba(202,160,60,0.7);
    border-radius: 3px;
}
/* Halo bleu léger derrière le menu */
nav.menu {
    position: relative;
}

nav.menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 60px;
    background: radial-gradient(circle, rgba(80,150,255,0.25), transparent 70%);
    filter: blur(18px);
    z-index: -1;
}
/* Effet néon bleu autour de chaque bloc prestation */
.prestation-bloc {
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(80,150,255,0.75); /* plus épais + plus lumineux */
    box-shadow:
        0 0 18px rgba(80,150,255,0.55),
        0 0 32px rgba(80,150,255,0.45),
        0 0 48px rgba(80,150,255,0.35);
    transition: 0.4s ease;
}


/* Halo externe animé */
.prestation-bloc::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(80,150,255,0.25), transparent 70%);
    filter: blur(18px);
    z-index: -1;
    opacity: 0.7;
    animation: neonPulseBlue 4s infinite ease-in-out;
}

/* Intensification au survol */
.prestation-bloc:hover {
    box-shadow:
        0 0 18px rgba(80,150,255,0.55),
        0 0 32px rgba(80,150,255,0.45),
        0 0 48px rgba(80,150,255,0.35);
    border-color: rgba(80,150,255,0.75);
}


/* Effet ligne laser animée autour des blocs */
.prestation-bloc {
    position: relative;
    overflow: hidden;
}

/* Ligne laser */
.prestation-bloc::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4da6ff, transparent);
    animation: laserLine 3s linear infinite;
    opacity: 0.9;
}

/* Ligne laser horizontale */
.prestation-bloc::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -120%;
    width: 120%;
    height: 5px; /* plus épais */
    background: linear-gradient(90deg, transparent, #4da6ff, #80c8ff, transparent);
    animation: laserLine 2.8s linear infinite;
    opacity: 1;
}

/* Ligne laser verticale */
.prestation-bloc::before {
    content: "";
    position: absolute;
    top: -120%;
    right: -3px;
    width: 5px; /* plus épais */
    height: 120%;
    background: linear-gradient(180deg, transparent, #4da6ff, #80c8ff, transparent);
    animation: laserLineVertical 2.8s linear infinite;
    animation-delay: 1.4s;
    opacity: 1;
}
@keyframes laserLine {
    0% { left: -120%; }
    50% { left: 120%; }
    100% { left: -120%; }
}

@keyframes laserLineVertical {
    0% { top: -120%; }
    50% { top: 120%; }
    100% { top: -120%; }
}
/* TITRE ANIMÉ PREMIUM – CONTRASTE RENFORCÉ */
.titre-anim {
    position: relative;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 8px;
    display: inline-block;
    overflow: hidden;

    /* Glow plus fort et plus net */
    text-shadow:
        0 0 6px #4da6ff,
        0 0 12px #4da6ff,
        0 0 22px #4da6ff,
        0 0 32px rgba(77, 166, 255, 0.8);
}


/* Glow néon bleu */
.titre-anim {
    text-shadow: 0 0 8px #4da6ff, 0 0 16px #4da6ff;
}

/* Balayage lumineux renforcé */
.titre-anim::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: sweepStrong 2.4s infinite;
    opacity: 0.8; /* plus visible */
}

@keyframes sweepStrong {
    0% { left: -150%; }
    60% { left: 150%; }
    100% { left: 150%; }
}


@keyframes sweep {
    0% { left: -120%; }
    60% { left: 120%; }
    100% { left: 120%; }
}

.icon-gold {
    color: #f5d27a; /* doré plus clair */
    margin-right: 10px;
    font-size: 1.5em;
    vertical-align: middle;

    /* Glow doré renforcé */
    filter: drop-shadow(0 0 6px rgba(245, 210, 122, 0.9))
            drop-shadow(0 0 12px rgba(245, 210, 122, 0.7));
}


.accroche {
    font-style: italic;
    font-size: 1.2rem;
    color: #e6e6e6;
    opacity: 0;
    animation: fadeInAccroche 1.2s ease forwards;
    margin-bottom: 15px;
}

@keyframes fadeInAccroche {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.points-clefs {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.points-clefs li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #dcdcdc;
    font-size: 1.05rem;
}

/* Puce lumineuse bleue */
.points-clefs li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: #4da6ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #4da6ff, 0 0 14px #4da6ff;
}

.conclusion {
    margin-top: 15px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 6px #4da6ff;
}

.prestation-texte {
    animation: fadeInBloc 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeInBloc {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.prestation-image img {
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(77, 166, 255, 0.4);
}
.accroche {
    font-style: italic;
    font-size: 1.2rem;
    color: #b38cff;
    opacity: 0;
    animation: fadeInAccroche 1.2s ease forwards;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(179, 140, 255, 0.6);
}
.titre-anim::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4da6ff, #caa03c, #4da6ff);
    box-shadow: 0 0 12px #4da6ff;
    border-radius: 2px;
}
.conclusion {
    margin-top: 18px;
    font-size: 1.25rem; /* même taille */
    font-weight: 700;   /* même épaisseur */
    color: #ff4d4d;     /* rouge flashy mais net */
    letter-spacing: 0.5px;
    line-height: 1.4;

    /* Aucun glow, aucun halo */
    text-shadow: none;

    opacity: 0;
    animation: fadeInConclusion 0.9s ease forwards;
}


@keyframes fadeInConclusion {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* TITRES ULTRA LISIBLES – BLEU FONCÉ PREMIUM */
.titre-anim {
    color: #ffffff; /* blanc pur */
    text-shadow:
        0 0 4px #1e4fff,
        0 0 10px #1e4fff,
        0 0 18px rgba(30, 79, 255, 0.9),
        0 0 28px rgba(30, 79, 255, 0.7);
}

/* Balayage lumineux (inchangé, juste plus visible avec le bleu foncé) */
.titre-anim::after {
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
}



/* =============================== */
/*     SLIDESHOW PLEIN ÉCRAN       */
/* =============================== */

.slideshow {
    position: relative;
    width: 100%;
    height: 300px; /* ← ajuste la hauteur ici */
    overflow: hidden;
    border-radius: 20px; /* optionnel */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ou contain si tu veux voir l’image entière */
}


/* =============================== */
/*     EFFETS DE TRANSITION        */
/* =============================== */

/* Fondu doux */
.fade-soft {
    transition: opacity 3s ease;
}

/* Fondu rapide */
.fade-fast {
    transition: opacity 1.5s ease;
}

/* Zoom progressif (effet cinéma) */
.fade-zoom {
    animation: zoom 8s ease-in-out forwards;
}

@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.tv-frame {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background: #111;
    border-radius: 20px;
    border: 6px solid #444;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    position: relative;
}

.tv-frame::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 8px;
    background: linear-gradient(to right, #666, #aaa, #666);
    border-radius: 4px;
}

.tv-frame::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 8px;
    background: linear-gradient(to right, #666, #aaa, #666);
    border-radius: 4px;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    font-size: 32px;
    padding: 8px 14px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: #caa03c;
    box-shadow: 0 0 12px rgba(202,160,60,0.6);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}
.slideshow-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #caa03c; /* ton doré premium */
    margin-top: 20px;
    margin-bottom: 15px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(202,160,60,0.5),
                 0 0 25px rgba(0,0,0,0.6);
    font-family: 'Montserrat', sans-serif;
}

.avis-container, .partenaires-container {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}

.avis, .partenaire, .placeholder {
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #caa03c;
}
/* ========================= */
/*   TITRES PRINCIPAUX       */
/* ========================= */

.page-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #caa03c;
    margin-top: 40px;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(202,160,60,0.5),
                 0 0 25px rgba(0,0,0,0.6);
}

.page-subtitle {
    text-align: center;
    font-size: 20px;
    color: #ddd;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

/* ========================= */
/*   SECTIONS BLANCHES       */
/* ========================= */

.page-section {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #caa03c;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Texte par défaut dans les sections blanches */
.page-section p,
.page-section li,
.page-section span {
    color: #000;
    line-height: 1.6;
}

/* ========================= */
/*   SECTION AVIS CLIENTS    */
/* ========================= */

.avis-container {
    display: grid;
    gap: 25px;
}

.avis {
    background: rgba(0,0,0,0.45);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #caa03c;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* Titre "Avis Clients" */
.section-title.avis-title {
    color: #caa03c !important;
    text-shadow: 0 0 8px rgba(202,160,60,0.4);
}

/* Texte des avis : ORANGE VIF */
.avis-texte {
    font-size: 18px;
    color: #ffa64d !important;
    font-style: italic;
    margin-bottom: 10px;
}

/* Signature : BLANC PUR */
.avis-auteur {
    font-size: 15px;
    color: #ffffff !important;
    font-weight: 600;
    margin-top: 10px;
}

/* ========================= */
/*   PLACEHOLDER PARTENAIRES */
/* ========================= */

.placeholder {
    background: rgba(0,0,0,0.25);
    padding: 25px;
    border-radius: 10px;
    border: 2px dashed #caa03c;
    text-align: center;
}

.placeholder-text {
    text-align: center;
    color: #aaa;
    font-style: italic;
    padding: 10px 0;
}
.avis-texte {
    font-size: 18px;
    color: #ffa64d !important;
    font-style: italic;
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
}

.avis-texte::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: #caa03c; /* nouvelle couleur dorée */
    opacity: 0.6;
}

.avis-texte::after {
    content: "”";
    margin-left: 5px;
    font-size: 30px;
    color: #caa03c; /* nouvelle couleur dorée */
    opacity: 0.6;
}

.avis-stars {
    color: #caa03c;
    font-size: 20px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(202,160,60,0.4);
}
.avis-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
}

.avis-slide {
    min-width: 300px;
    scroll-snap-align: start;
}
.avis-auteur {
    font-family: "Dancing Script", cursive;
    font-size: 17px;
    color: #ffffff !important;
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* ========================= */
/*   PAGE CONTACT            */
/* ========================= */

.contact-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #000;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form, .contact-infos {
    flex: 1;
    min-width: 300px;
}

/* FORMULAIRE */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #caa03c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #caa03c;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.contact-btn {
    background: #caa03c;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #e6c46a;
}

/* INFOS DIRECTES */
.contact-infos h3 {
    color: #caa03c;
    margin-bottom: 15px;
}

.contact-infos p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-infos i {
    color: #caa03c;
    margin-right: 8px;
}

/* RÉSEAUX SOCIAUX */
.contact-socials a {
    font-size: 28px;
    margin-right: 15px;
    color: #caa03c;
    transition: 0.3s;
}

.contact-socials a:hover {
    color: #e6c46a;
}

.contact-map {
    margin-top: 30px;
    border: 3px solid #caa03c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(202,160,60,0.3);
}
.section-title {
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

nav.menu a.active {
    background: rgba(202,160,60,0.25);
    border-color: #caa03c;
    color: #caa03c !important;
    box-shadow: 0 0 12px rgba(202,160,60,0.6);
}

/* Animation horizontale */
@keyframes slideAvis {
    0%   { transform: translateX(0%); }
    16%  { transform: translateX(0%); }

    20%  { transform: translateX(-100%); }
    36%  { transform: translateX(-100%); }

    40%  { transform: translateX(-200%); }
    56%  { transform: translateX(-200%); }

    60%  { transform: translateX(-300%); }
    76%  { transform: translateX(-300%); }

    80%  { transform: translateX(-400%); }
    96%  { transform: translateX(-400%); }

    100% { transform: translateX(0%); }
}

/* Pause au survol */
.avis-carousel-wrapper:hover .avis-carousel-track {
    animation-play-state: paused;
}

/* Empêche les textes d'être coupés */
.avis-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

/* Le conteneur s'adapte à la hauteur du slide visible */
.avis-carousel-wrapper {
    height: auto;
}

/* La track prend la hauteur du contenu */
.avis-carousel-track {
    height: auto;
    align-items: stretch;
}

/* Les avis prennent toute la hauteur disponible */
.avis {
    height: auto;
}

.avis-carousel-wrapper {
    min-height: 260px; /* Ajuste si besoin */
}

/* ===== CARROUSEL FADE AVIS ===== */

.avis-fade-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    min-height: 260px;
}

.avis-fade-slide {
    position: absolute;
    top: 0;          /* <<< OBLIGATOIRE */
    left: 0;         /* <<< OBLIGATOIRE */
    width: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.avis-fade-slide:first-child {
    position: relative;
    opacity: 1;
}

@keyframes fadeAvis {
    0%   { opacity: 1; }
    18%  { opacity: 1; }
    20%  { opacity: 0; }
    100% { opacity: 0; }
}

.avis-fade-slide:nth-child(1) { animation: fadeAvis 25s infinite; }
.avis-fade-slide:nth-child(2) { animation: fadeAvis 25s infinite 5s; }
.avis-fade-slide:nth-child(3) { animation: fadeAvis 25s infinite 10s; }
.avis-fade-slide:nth-child(4) { animation: fadeAvis 25s infinite 15s; }
.avis-fade-slide:nth-child(5) { animation: fadeAvis 25s infinite 20s; }
