/* Variables de couleurs basées sur ta charte graphique */
:root {
    --bg-color: #FAF8F5; /* Blanc cassé / Beige très clair */
    --accent-color: #9B8272; /* Marron glacé / Taupe */
    --accent-hover: #7A6659;
    --text-color: #3B332C; /* Marron très foncé */
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--bg-color);
    border-bottom: 1px solid rgba(155, 130, 114, 0.2);
}

.logo {
    font-size: 2rem;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Bouton Panier Navbar */
.cart-nav-link {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.cart-badge {
    background-color: #E74C3C;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    margin-left: 5px;
    transform: translateY(-2px); 
}

/* --- Sections communes --- */
.page-section {
    display: none;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-in-out;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

/* --- Boutons --- */
button {
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* --- Accueil --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 20px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h1 { 
    font-size: 3rem; 
    margin-bottom: 10px; 
}

.hero-content h2 { 
    font-size: 1.8rem; 
    color: var(--accent-color);
    margin-bottom: 20px; 
}

.hero-content p { 
    margin: 20px 0; 
    font-size: 1.1rem; 
}

.cta-buttons { 
    display: flex; 
    gap: 15px; 
    margin-top: 30px; 
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(155, 130, 114, 0.2);
}

/* --- Section Vidéo + Texte --- */
.video-presentation-container {
    padding: 60px 5%;
    background-color: #fff;
}

.video-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-column {
    flex: 1;
    min-width: 300px;
}

.video-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    line-height: 0;
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}

.text-column {
    flex: 1;
    text-align: left;
}

.text-column h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.text-column .intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: flex-start;
}

.features-list li::before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: 0;
}

blockquote {
    border-left: 3px solid #d4af37;
    padding-left: 15px;
    font-style: italic;
    color: #777;
    margin: 20px 0;
}

/* --- Section Vanilles --- */
.style-showcase-container {
    padding: 80px 5%;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(155, 130, 114, 0.1);
}

.style-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.style-showcase-container .text-column {
    flex: 1;
    text-align: left;
}

.style-showcase-container h2 {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-box {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(59, 51, 44, 0.15); 
    transition: transform 0.4s ease;
    object-fit: cover;
}

.image-box img:hover {
    transform: scale(1.03);
}

/* --- Réservation --- */
.reservation-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
}
.price { font-size: 1.5rem; font-weight: bold; color: var(--accent-color); margin: 15px 0; }
.info-box { background-color: var(--bg-color); padding: 15px; border-left: 4px solid var(--accent-color); margin-bottom: 25px; }
.contact-info { margin-top: 20px; font-size: 0.9rem; }

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    text-align: left;
}

.booking-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row input {
    flex: 1;
}

.booking-form .btn-primary {
    width: 100%;
    cursor: pointer;
    background-color: #25D366;
    border: none;
    color: white;
    font-weight: bold;
}

/* --- BOUTIQUE : Grille et Cartes --- */
.promo-banner {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    align-items: stretch; /* Force l'alignement de la hauteur des cartes */
}

.product-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.product-img {
    width: 100%;
    height: 350px; /* Hauteur contrainte */
    background-color: #000; /* Fond noir pour éviter les bordures blanches sur les vidéos */
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img,
.product-img video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Le recadrage parfait */
    display: block;
}

.product-card h3 { 
    font-size: 1.1rem; 
    margin-bottom: 10px; 
    flex-grow: 1; /* Pousse le contenu inférieur vers le bas */
    line-height: 1.4;
}

.product-card p { 
    margin-bottom: 15px; 
    font-weight: bold; 
    font-size: 1.2rem;
    color: var(--accent-color);
}

.product-card button {
    width: 100%;
}

/* --- Modal Panier --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    right: 20px; top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--accent-color);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.qty-controls button {
    padding: 5px 10px;
    margin: 0 5px;
}

.cart-footer {
    margin-top: 25px;
    text-align: center;
}

.total-price {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- Media Queries (Responsive) --- */
@media (max-width: 850px) {
    .video-flex-wrapper, .style-flex-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .style-flex-wrapper {
        flex-direction: column-reverse; 
    }

    .text-column {
        text-align: center;
    }
    
    .text-column h2 {
        font-size: 1.8rem;
    }

    .features-list li {
        text-align: left;
        justify-content: center; 
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
    }

    .cta-buttons { 
        justify-content: center; 
        flex-direction: column; 
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
    }
}
/* --- Histoire / Mot de la Fondatrice --- */
.founder-story-container {
    padding: 60px 20px;
    background-color: var(--white);
    margin: 60px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(155, 130, 114, 0.08);
    max-width: 850px;
    text-align: center;
    position: relative;
}

.story-wrapper {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

.founder-story-container h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.founder-story-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.story-lead {
    font-weight: bold;
    color: var(--accent-color) !important;
    font-size: 1.25rem !important;
}

.story-signature {
    margin-top: 30px !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem !important;
    color: var(--text-color) !important;
    font-style: italic;
    border-top: 1px solid rgba(155, 130, 114, 0.2);
    padding-top: 20px;
}