/* --- VARIABLES --- */
:root {
    --noir: #0a0a0a;
    --noir-gris: #161616;
    --rose: #ff85a2;
    --rose-clair: #ffafcc;
    --blanc: #ffffff;
    --gris: #a0a0a0;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--noir);
    color: var(--blanc);
    line-height: 1.6;
}

.container { width: 85%; margin: 0 auto; }
.section-padding { padding: 100px 0; }

h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 60px;
    display: block;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(10, 10, 10, 0.98); /* Fond plus opaque pour la lisibilité */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 133, 162, 0.1);
}

/* STYLE DU NOM DE L'ÉTABLISSEMENT (LOGO) */
.logo { 
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    font-weight: bold; 
    letter-spacing: 1px;
    text-transform: uppercase;
}
.logo span { color: var(--rose); font-weight: 300; text-transform: capitalize; }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links li a { text-decoration: none; color: var(--blanc); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links li a:hover { color: var(--rose); }

.btn-reserver {
    background: var(--rose);
    color: var(--noir) !important;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
}

/* BURGER ICON (MOBILE ONLY) */
.burger {
    display: none; /* Masqué sur desktop */
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--blanc);
    margin: 5px;
    transition: all 0.3s ease;
}


/* --- HERO --- */
.hero {
    height: 90vh;
    /* VOTRE IMAGE DE FOND ICI */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('votre_image_neon.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 25px;
}

.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 8vw, 75px); margin-bottom: 20px; }
.hero-content h1 span { color: var(--rose); font-style: italic; }
.hero-content p { font-size: 18px; color: #ccc; margin-bottom: 40px; max-width: 600px; margin: 0 auto 40px; }

.btn-main, .btn-outline {
    display: block;
    padding: 16px 45px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
    margin: 5px; /* Ajout d'une petite marge pour le mobile */
    border-radius: 5px;
}

.btn-main { background: var(--rose); color: var(--noir); }
.btn-outline { border: 1px solid var(--blanc); color: var(--blanc); margin-left: 10px; }

.btn-main:hover { background: var(--noir); color: var(--rose); border: 1px solid var(--rose); }
.btn-outline:hover { background: var(--blanc); color: var(--noir); }

/* --- QUICK SERVICES --- */
.quick-services {
    display: flex;
    justify-content: center;
    background: var(--noir-gris);
    padding: 50px 0;
    gap: 40px;
    flex-wrap: wrap;
}

.service-box {
    text-align: center;
    padding: 0 20px; /* Réduit le padding pour mobile */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-box:last-child { border: none; }
.service-box h4 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 5px; }
.service-box .price { color: var(--rose); font-weight: 600; font-size: 18px; }

/* --- PRICING CARD --- */
.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--noir-gris);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 133, 162, 0.1);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-row .name { font-size: 18px; font-weight: 400; }
.pricing-row small { display: block; color: var(--gris); font-size: 13px; }
.price-val { color: var(--rose); font-weight: 600; font-size: 20px; }

/* --- WEDDING SECTION --- */
.wedding-section { padding: 80px 5%; }
.wedding-container { 
    display: flex; 
    background: var(--noir-gris); 
    border-radius: 30px; 
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.wedding-img { flex: 1; min-height: 400px; border-radius:10px;  } /* Min-height réduit pour mobile */
.wedding-img img { width: 80%; height: 80%; object-fit: cover;padding: 20px; }

.wedding-info { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; } /* Padding réduit pour mobile */
.tag { background: var(--rose); color: var(--noir); padding: 4px 12px; font-size: 11px; font-weight: bold; width: fit-content; margin-bottom: 20px; }
.wedding-price { font-size: 32px; color: var(--rose); font-weight: bold; margin-bottom: 20px; }
.wedding-list { list-style: none; margin-bottom: 40px; }
.wedding-list li { margin-bottom: 15px; color: #ddd; }

/* --- SHOP --- */
.shop-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Min-width réduit pour mobile */
    gap: 30px; 
}

.shop-item { 
    background: var(--noir-gris); 
    padding: 40px; 
    text-align: center; 
    border-radius: 10px;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.shop-item:hover { transform: translateY(-5px); border-bottom: 3px solid var(--rose); } /* Effet réduit */
.shop-item h5 { font-family: 'Playfair Display', serif; color: var(--rose); font-size: 20px; margin-bottom: 15px; }
.shop-item p { color: var(--gris); font-size: 14px; }

/* --- FOOTER --- */
footer { padding: 80px 0 30px; background: #050505; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.tel-box { margin: 20px 0; }
.tel-number { font-size: 24px; color: var(--rose); font-weight: bold; }
.footer-bottom { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; font-size: 12px; color: var(--gris); }

/* --- RESPONSIVE MOBILE (<= 992px) --- */
@media screen and (max-width: 992px) {
    body { overflow-x: hidden; } /* Empêche le défilement horizontal */

    .nav-links {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 80px; /* Hauteur de la navbar */
        background-color: var(--noir-gris);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
    }

    .nav-links li {
        margin: 0;
        opacity: 0;
        margin-bottom: 25px;
    }
    
    .nav-links li a {
        font-size: 16px;
    }

    .burger {
        display: block;
    }

    .wedding-container { flex-direction: column; }
    .hero-content h1 { font-size: 50px; }
    .hero-btns { display: flex; flex-direction: column; align-items: center; }
    .btn-outline { margin-left: 0 !important; margin-top: 15px; }
}

/* Classes JavaScript pour l'animation */
.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0px); }
}

.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }


/* --- WEDDING SECTION (MODIFIÉE) --- */
.wedding-section { 
    padding: 60px 0; 
}

.wedding-container { 
    display: flex; 
    max-width: 900px; /* Taille diminuée */
    margin: 0 auto; /* Centrage de la section */
    background: var(--noir-gris); 
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    align-items: center; /* Aligne verticalement le texte et l'image */
}

.wedding-img { 
    flex: 0 0 45%; /* Prend un peu moins de la moitié */
    height: 400px;
    overflow: hidden; /* Important pour l'effet hover */
    margin: 20px; /* Espace autour de l'image */
    border-radius: 15px; /* Border radius sur l'image */
}

.wedding-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    display: block;
}

/* Effet Hover sur l'image */
.wedding-container:hover .wedding-img img {
    transform: scale(1.1); /* Zoom léger */
    filter: brightness(1.1); /* Augmente légèrement la lumière */
}

.wedding-info { 
    flex: 1; 
    padding: 40px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; /* Centre le contenu horizontalement */
    text-align: center; /* Centre le texte */
}

.tag { 
    background: var(--rose); 
    color: var(--noir); 
    padding: 4px 12px; 
    font-size: 11px; 
    font-weight: bold; 
    margin-bottom: 15px; 
}

.wedding-price { 
    font-size: 28px; 
    color: var(--rose); 
    font-weight: bold; 
    margin-bottom: 15px; 
}

.wedding-list { 
    list-style: none; 
    margin-bottom: 30px; 
    text-align: left; /* Garde la liste alignée à gauche pour la lisibilité */
}

.wedding-list li { 
    margin-bottom: 10px; 
    color: #ddd; 
}

/* Centrage du bouton dans la section */
.wedding-info .btn-main {
    margin: 0 auto;
    width: fit-content;
}

/* --- AJUSTEMENT MOBILE --- */
@media screen and (max-width: 768px) {
    .wedding-container { 
        flex-direction: column; 
        width: 90%;
    }
    .wedding-img {
        width: 90%;
        margin: 20px auto 0;
        height: 250px;
    }
    .wedding-info {
        padding: 30px 20px;
    }
}

