/* =========================
   DESIGN SYSTEM 2026
========================= */

:root {
    --champagne: #F6F1E8;
    --gold: #C6A75E;
    --deep-bordeaux: #6E0F1F;
    --text-dark: #2A2A2A;
    --light: #ffffff;

    --radius: 14px;
    --transition: 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 83px;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--light);
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    width: 100%;
    background: #6E0F1F;
    backdrop-filter: blur(10px);
    padding: 5px 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    color: var(--primary);
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 25px;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
}

.nav ul li a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* HERO */

.hero-logo {
    width: 520px;
    transition:
            transform 0.6s ease,
            opacity 0.6s ease;
}

/* HEADER */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(110, 15, 31, 0.6);
    transition: padding 0.6s ease;
    z-index: 1000;
}

.logo{
    max-width: 200px;
    opacity: 100;
    transform: translateY(-100%);
    transition: transform 0.6s ease;
}.logo img{
     max-width: 200px;}

/* États actifs */


.headerWithLogo{
    padding:20px 60px;
    transition: padding 0.6s ease;
}
.showLogoHeader{
    transform: translateY(0%);
    transition: transform 0.6s ease;
}

.hero-logo.shrink {
    transform: scale(0.6) translateY(-80px);
    opacity: 0;
}


/* =========================
   HERO CHAMPAGNE PREMIUM
========================= */

.hero-champagne {
    position: relative;
    height: 100vh;
    background:url("../image/XB7A5486-edited-scaled-1.jpg") center/cover no-repeat;
    text-align: center;
    color: white;
    padding-top:20vh
}

/* Overlay cinématographique */

.hero-overlay {
    position: relative;
    inset: 0;
    pointer-events: none;
}

/* Contenu */

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
    animation: fadeHero 1.2s ease-out;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Bouton luxe */

.btn-hero {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #C6A75E;
    color: #C6A75E;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.4s ease;
}

.btn-hero:hover {
    background: #C6A75E;
    color: white;
}

/* Animation douce */

@keyframes fadeHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*PopUp age*/
/* OVERLAY */

#age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px); /* flou global */
    -webkit-backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
    animation: fadeIn 0.6s ease;
}

/* BOITE VERRE */

.age-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;

    padding: 50px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;

    color: #fff;

    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* TITRE */

.age-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* QUESTION */

.age-question {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

/* BOUTONS */

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.age-buttons button {
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

/* BOUTON ENTRER */

#age-yes {
    background: #8b1e2d;
    color: white;
    border: none;
}

#age-yes:hover {
    background: #a32638;
}

/* BOUTON QUITTER */

#age-no {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
}

#age-no:hover {
    background: rgba(255,255,255,0.1);
}

/* TEXTE LEGAL */

.age-legal {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ANIMATION */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/*Fin PopUp age*/

/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.dark {
    background: var(--dark);
    color: white;
}
/* =========================
   SPLIT PREMIUM 50/50
========================= */

.maison-split {
    display: flex;
    min-height: 65vh;;
}

/* TEXTE (gauche) */

.maison-left {
    width: 50%;
    background: #F6F1E8; /* champagne */
    display: flex;
    align-items: center;
    padding: 80px;
}

.maison-content h2 {
    font-size: 2.8rem;
    color: #6E0F1F;
    margin-bottom: 30px;
    position: relative;
}

.maison-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 70px;
    height: 2px;
    background: #C6A75E;
}

.maison-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #2A2A2A;
}

.maison-content p.highlight{
    color:#6E0F1F;
    font-weight: bold;
}

.signature {
    margin-top: 30px;
    font-style: italic;
    color: #6E0F1F;
}

/* IMAGES (droite) */

.maison-right {
    width: 50%;
    position: relative;
    overflow: hidden;
}

/* Image arrière */

.image-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7a0014, #d4af37); /* flashy temporaire */
    transform: scale(1.1);
}

/* Image principale */

.image-front {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 75%;
    height: 75%;
    background: linear-gradient(135deg, #f8e7c4, #8b0000);
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    border: 5px solid;
    border-color: #6E0F1F #C6A75E #C6A75E #6E0F1F;
    transition: 0.4s ease;
}

.image-front:hover {
    transform: translate(-50%,-50%) scale(1.03);
}

.image-back {
    background: url("../image/vigne.jpg") center/cover no-repeat;
}

.image-front {
    background: url("../image/NathalieAssailly.jpg") center/cover no-repeat;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .maison-split {
        flex-direction: column;
    }

    .maison-left,
    .maison-right {
        width: 100%;
    }

    .maison-left {
        padding: 60px 30px;
    }

    .image-front {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
    }
}

/* =========================
   GENERATION SPLIT
========================= */

.generation-split {
    display: flex;
    min-height: 65vh;;
}

/* =========================
   PARTIE GAUCHE IMAGES
========================= */

.generation-left {
    width: 50%;
    position: relative;
    overflow: hidden;
}

/* Image arrière (flashy temporaire) */
.image-back-gen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #6E0F1F);
    transform: scale(1.1);
}

/* Image principale */
.image-front-gen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 75%;
    height: 75%;
    background: linear-gradient(135deg, #f5deb3, #8b0000);
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    border: 5px solid;
    border-color: #6E0F1F #C6A75E #C6A75E #6E0F1F;
    transition: 0.4s ease;
}

.image-front-gen:hover {
    transform: translate(-50%,-50%) scale(1.03);
}

/* =========================
   PARTIE DROITE TEXTE
========================= */

.generation-right {
    width: 50%;
    background: #F6F1E8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    position: relative;
}

.generation-content h2 {
    font-size: 2.4rem;
    color: #6E0F1F;
    margin-bottom: 30px;
    position: relative;
}

.generation-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 70px;
    height: 2px;
    background: #C6A75E;
}

.generation-content p {
    line-height: 1.8;
    color: #2A2A2A;
}

.generation-content strong {
    color: #6E0F1F;
}

/* =========================
   CAROUSEL
========================= */

.carousel {
    position: relative;
}

.carousel-slide {
    display: none;
    animation: fadeSlide 0.6s ease;
}

.carousel-slide.active {
    display: block;
}

/* DOTS */

.carousel-controls {
    margin-top: 40px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border-radius: 50%;
    background: #C6A75E;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    opacity: 1;
}

/* Animation */

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .generation-split {
        flex-direction: column;
    }

    .generation-left,
    .generation-right {
        width: 100%;
    }

    .generation-right {
        padding: 60px 30px;
    }

    .image-front-gen {
        right: 50%;
        transform: translate(50%, -50%);
        width: 80%;
    }
}

.image-back-gen {
    background: url("../image/coupe.jpg") center/cover no-repeat;
}

.image-front-gen {
    background: url("../image/FamilleAssaillyVigne.jpg") center/cover no-repeat;
}

/* =========================
   POLYVALENCE SPLIT
========================= */

.polyvalence-split {
    display: flex;
    min-height: 45vh;
}

/* =========================
   PARTIE GAUCHE TEXTE
========================= */

.polyvalence-left {
    width: 50%;
    background: #8B1E2D; /* bordeaux premium */
    color: #F6F1E8; /* ivoire */
    display: flex;
    align-items: center;
    padding: 80px;
}

.polyvalence-content h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 1px;
}

.polyvalence-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 70px;
    height: 2px;
    background: #C6A75E; /* or */
}

.polyvalence-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

/* =========================
   PARTIE DROITE IMAGES
========================= */

.polyvalence-right {
    width: 50%;
    display: flex;
}

.poly-img {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: 0.5s ease;
}

/* Fonds flashy temporaires */

.img-1 {
    background: linear-gradient(135deg, #ff0055, #ffcc00);
}

.img-2 {
    background: linear-gradient(135deg, #00c3ff, #ffff1c);
}

.img-3 {
    background: linear-gradient(135deg, #7f00ff, #e100ff);
}

.poly-img:hover {
    flex: 1.2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .polyvalence-split {
        flex-direction: column;
    }

    .polyvalence-left,
    .polyvalence-right {
        width: 100%;
    }

    .polyvalence-left {
        padding: 60px 30px;
    }

    .polyvalence-right {
        height: 400px;
    }
}

.img-1 {
    background: url("../image/leo.jpg") center/cover no-repeat;
}

.img-2 {
    background: url("../image/vigne-nb.jpg") center/cover no-repeat;
}

.img-3 {
    background: url("../image/laurent.jpg") center/cover no-repeat;
}

/* ===============================
   ACTUALITES PREMIUM
================================ */

.actualites-premium {
    background: #f1dbdb;
    padding: 120px 0;
}

/* Header */

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.subtitle-premium {
    font-weight: 300;
    color: #6E0F1F;
    letter-spacing: 1px;
}

/* Grid */

.actualites-grid {
    display: grid;
    gap: 40px;
}

/* Très grand écran : 5 articles alignés */
@media (min-width: 1400px) {
    .actualites-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .actualites-premium .container {
         max-width: 95%;
     }
}

/* Desktop large */
@media (max-width: 1399px) and (min-width: 1200px) {
    .actualites-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (max-width: 1199px) and (min-width: 992px) {
    .actualites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablette */
@media (max-width: 991px) and (min-width: 768px) {
    .actualites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .actualites-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */

.actu-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.actu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

/* Image */

.actu-image {
    height: 220px;
}

/* Flashy backgrounds temporaires */

.flashy-1 { background: linear-gradient(135deg, #8B1E2D, #E6C77D); }
.flashy-2 { background: linear-gradient(135deg, #C6A75E, #6E0F1F); }
.flashy-3 { background: linear-gradient(135deg, #B23A48, #F1E3C6); }
.flashy-4 { background: linear-gradient(135deg, #6E0F1F, #C6A75E); }
.flashy-5 { background: linear-gradient(135deg, #A67C52, #8B1E2D); }

/* Content */

.actu-content {
    padding: 30px;
}

.actu-date {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C6A75E; /* or */
    font-weight: 500;
}

.actu-content h3 {
    margin: 15px 0;
    color: #6E0F1F;
    font-size: 1.3rem;
}

.actu-content p {
    font-weight: 300;
    line-height: 1.6;
    color: #333;
}

/* Lien élégant */

.actu-link {
    display: inline-block;
    margin-top: 18px;
    text-decoration: none;
    color: #6E0F1F;
    font-weight: 500;
    position: relative;
}

.actu-link::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background: #C6A75E;
    transition: 0.3s;
    margin-top: 4px;
}

.actu-link:hover::after {
    width: 100%;
}

.actu-image {
    height: 180px;
    overflow: hidden;
}

.actu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* évite les déformations */
    display: block;
}

/* SECTION */

/* HEADER SECTION */

.cuvee-header {
    text-align: center;
    margin-bottom: 7vh;
}

/* TITRE */

.cuvee-header h2 {
    padding-top:35px;
    font-size: 1.6rem;
    color: #8b1e2d;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

/* TRAIT ÉLÉGANT */

.cuvee-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #8b1e2d;
    margin: 20px auto 0;
}

.cuvee-section {
    height: 80vh;
    background: #f8f6f2;
    align-items: center;
}

/* CONTAINER */

.cuvee-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

/* ======================
   LISTE GAUCHE
====================== */

.cuvee-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.cuvee-item {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    color: #777;
    padding-left: 15px;
    border-left: 2px solid transparent;
    transition: 0.3s ease;
}

.cuvee-item:hover {
    color: #8b1e2d;
}

.cuvee-item.active {
    color: #8b1e2d;
    border-left: 2px solid #8b1e2d;
    font-weight: 500;
}

/* ======================
   CONTENU DROITE
====================== */

.cuvee-content {
    position: relative;
    display: flex;
    align-items: center;
}

/* DETAIL */

.cuvee-detail {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;

    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.cuvee-detail.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

/* TEXTE */

.cuvee-text {
    max-width: 400px;
    flex-shrink: 0;
    z-index: 2;
}

.cuvee-text h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    color: #8b1e2d;
    margin-bottom: 20px;
}

.cuvee-text h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #8b1e2d;
    margin-top: 10px;
}

.cuvee-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* VISUEL */

.cuvee-visual {
    flex: 1;
    position: relative;
    height: 320px;
}

/* IMAGE FOND */

.img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
}

/* IMAGE OVERLAY */

.img-overlay {
    position: absolute;
    left: -100px;
    bottom: -20px;
    width: 200px;
    max-height: 400px;
    object-fit: contain;
    z-index: 2;

    opacity: 0;
    transform: translateX(-50px);
    transition: 0.6s ease;
}

.cuvee-assemblage {
    margin-top: 30px;
    max-width: 400px;
}

/* TITRE */

.cuvee-assemblage h3 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b1e2d;
    margin-bottom: 15px;
}

/* BARRE PRINCIPALE */

.assemblage-bar {
    display: flex;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #eee;
}

/* SEGMENTS */

.segment {
    height: 100%;
    position: relative;
    transition: 0.6s ease;
}

/* COULEURS PREMIUM */

.segment.meunier {
    background: #8b1e2d;
}

.segment.chardonnay {
    background: #d4af37; /* doré */
}

.segment.pinot {
    background: #3a3a3a;
}

/* POURCENTAGE (optionnel) */

.segment span {
    position: absolute;
    top: -22px;
    font-size: 0.7rem;
    color: #555;
}

/* LÉGENDE */

.assemblage-legend {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #555;
}

/* POINTS COULEUR */

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.dot.meunier {
    background: #8b1e2d;
}

.dot.chardonnay {
    background: #d4af37;
}

.dot.pinot {
    background: #3a3a3a;
}

.segment {
    transform: scaleX(0);
    transform-origin: left;
}

/* animation UNIQUEMENT quand actif */

.cuvee-detail.active .segment {
    animation: fillBar 0.8s ease forwards;
}

/* animation */

@keyframes fillBar {
    to {
        transform: scaleX(1);
    }
}

/* ANIMATION */

.cuvee-detail.active .img-overlay {
    opacity: 1;
    transform: translateX(0);
}

/* OMBRE LUXE */

.img-overlay {
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:900px){

    .cuvee-section {
        height: auto;
        padding: 80px 0;
    }

    .cuvee-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cuvee-detail {
        flex-direction: column;
    }

    .cuvee-visual {
        width: 100%;
        height: 250px;
    }

    .img-overlay {
        left: 20px;
        width: 130px;
    }

    .cuvee-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cuvee-item {
        border: none;
        border-bottom: 2px solid transparent;
        padding: 5px 10px;
    }

    .cuvee-item.active {
        border-bottom: 2px solid #8b1e2d;
    }

}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .maison-grid {
        grid-template-columns: 1fr;
    }

    .maison-visual {
        height: 400px;
        margin-top: 40px;
    }
}

.contact-section {
    padding: 100px 20px;
    background: #f8f6f2;
}

/* CONTAINER */

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    gap: 60px;
    align-items: stretch;
}

/* CARTE */

.contact-map {
    flex: 1;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* BLOC DROIT */

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITRE */

.contact-info h2 {
    font-size: 1.6rem;
    color: #8b1e2d;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

/* petit trait élégant */

.contact-info h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #8b1e2d;
    margin-top: 15px;
}

/* INFOS */

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #555;
    letter-spacing: 0.5px;
}

/* ICÔNES */

.contact-item i {
    width: 18px;
    height: 18px;
    color: #8b1e2d;
}

/* BOUTON */

.contact-btn {
    margin: 30px 0;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #8b1e2d;
    color: #8b1e2d;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #8b1e2d;
    color: white;
}


/* ANIMATION SCROLL */

.contact-section {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-link {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.contact-link:hover {
    color: #8b1e2d;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #111;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer a{
    color: #fff;
    font-size: 12px;
}

.footer-container {
    max-width: 900px;
    margin: auto;
}

/* TEXTE LEGAL */

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

/* BLOC PICTO */

.footer-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-warning img {
    width: 35px;
    height: auto;
}

.footer-warning p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* INFOS */

.footer-infos {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: #8b1e2d;
    margin: 0 auto 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

