/* Variables CSS pour les couleurs de la marque */
:root {
    --color-gold: #D4AF37; /* Or moutarde */
    --color-burgundy: #800020; /* Bordeaux */
    --color-white: #FFFFFF;
    --color-cream: #FFF8DC;
    --color-dark: #2C1810;
    --color-light-gray: #F5F5F5;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
}

/* Responsive Images */
img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.row, .grid, .flex-container {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* iPhone Responsive Design */
/* iPhone SE, 5s (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .navbar {
        padding: 0 10px;
    }
    
    .nav-logo {
        width: 30px;
        height: 30px;
    }
    
    .nav-brand h1 {
        font-size: 0.9rem;
    }
    
    .tagline {
        font-size: 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .service-card, .service-preview-card {
         padding: 1rem;
         margin: 0.5rem 0;
         width: 100%;
         box-sizing: border-box;
     }
     
     /* Ultra small screen fixes */
     .hero-content {
         padding: 1rem 0.5rem;
         width: 100%;
         box-sizing: border-box;
     }
     
     .btn {
         padding: 0.5rem 1rem;
         font-size: 0.8rem;
         width: auto;
         max-width: 100%;
     }
     
     /* Fix any potential overflow elements */
     .navbar, .header {
         width: 100%;
         overflow-x: hidden;
         box-sizing: border-box;
     }
 }

/* iPhone 6/7/8 (375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .nav-logo {
        width: 30px;
        height: 30px;
    }
    
    .nav-brand h1 {
        font-size: 0.9rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
}

/* iPhone 6/7/8 Plus (414px) */
@media (max-width: 414px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .navbar {
        padding: 0 15px;
    }
}

/* iPhone 12/13/14 (390px) et iPhone 12/13/14 Pro Max (428px) */
@media (max-width: 428px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .navbar {
        padding: 0 20px;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu li {
        margin: 0.25rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-content, .service-card, .service-preview-card {
         width: 100%;
         box-sizing: border-box;
     }
     
     /* Prevent all sections from overflowing */
     .hero, .services, .about, .contact, .footer {
         width: 100%;
         overflow-x: hidden;
         box-sizing: border-box;
     }
     
     /* Fix grid layouts */
     .services-grid, .values-grid, .team-grid {
         width: 100%;
         box-sizing: border-box;
         overflow-x: hidden;
     }
     
     /* Fix buttons and forms */
     .btn, .form-control, input, textarea, select {
         max-width: 100%;
         box-sizing: border-box;
     }
     
     /* Fix text content */
     h1, h2, h3, h4, h5, h6, p, div {
         word-wrap: break-word;
         overflow-wrap: break-word;
         max-width: 100%;
     }
 }

/* Header */
.header {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold));
    color: var(--color-white);
    padding: 1rem 0;
    position: relative;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold));
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    order: 1;
}

.nav-menu {
    order: 2;
}

.nav-toggle {
    order: 3;
    margin-left: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.nav-logo {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

/* Bouton hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 99999999;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Couleur dorée du hamburger uniquement sur la page À propos */
.about-page .hamburger-line {
    background-color: var(--color-gold);
}

/* Animation du bouton hamburger */
.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Styles responsive pour la navbar */
@media (max-width: 768px) {
    .navbar {
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-brand {
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-logo {
        width: 35px;
        height: 35px;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
    }
    
    .nav-menu {
        position: fixed;
        right: -300px;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold));
        width: 300px;
        text-align: left;
        z-index: 9999999;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0.2rem 0;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
        padding: 1rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu a:hover {
        background-color: rgba(212, 175, 55, 0.1);
        color: var(--color-gold);
    }
    
    .nav-brand h1 {
         font-size: 1.1rem;
     }
     
     .tagline {
         font-size: 0.6rem;
     }
     
     .nav-logo {
         width: 35px;
         height: 35px;
     }
     
     .header {
         padding: 0.2rem 0;
     }
     
     .navbar {
         padding: 0 10px;
     }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(218, 165, 32, 0.8) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-content h1,
.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: var(--color-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 0;
    background-color: var(--color-white);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.services-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-burgundy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-preview-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-preview-content {
    padding: 1.5rem;
}

.service-preview-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
}

.service-preview-content p {
    color: var(--color-dark);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
    background: var(--color-light-gray);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-preview-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-burgundy);
    margin-bottom: 1.5rem;
}

.about-preview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.learn-more-btn {
    display: inline-block;
    background: var(--color-burgundy);
    color: var(--color-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

.about-preview-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.about-img-1, .about-img-2 {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-img-1 {
    transform: translateY(-20px);
}

.about-img-2 {
    transform: translateY(20px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--color-white);
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-burgundy);
    margin-bottom: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.values {
    margin-top: 3rem;
}

.values h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-burgundy);
    margin-bottom: 1.5rem;
}

.value-item {
    background: var(--color-cream);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
}

.value-item strong {
    color: var(--color-burgundy);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-cream), var(--color-light-gray));
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-burgundy);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.contact-details {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
    visibility: visible;
}

.contact-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-light-gray);
    display: block;
    visibility: visible;
    color: var(--color-dark);
    font-size: 1rem;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: var(--color-burgundy);
}

.contact-form {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.submit-btn {
    background: var(--color-burgundy);
    color: var(--color-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--color-burgundy);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.footer-brand p {
    opacity: 0.9;
}

.footer-links h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .nav-brand {
        margin-right: auto;
        padding-left: 0;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero {
        height: 70vh;
        padding: 0 20px;
        background-attachment: scroll;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-top: -1rem;
    }
    
    .cta-button {
        margin-top: 5.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .services-preview {
        margin-top: -1rem;
        border-radius: 20px 20px 0 0;
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-preview-card img {
        height: 250px;
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-preview-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .about-img-1, .about-img-2 {
        transform: none;
        height: 280px;
        object-fit: cover;
        object-position: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Services Page Responsive */
    .services-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 0;
    }

    .services-hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .services-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-hero-content {
        text-align: center;
    }

    .services-hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail.reverse .service-detail-content {
        direction: ltr;
    }

    .service-detail-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .additional-services h2 {
        text-align: center;
    }
    
    .additional-service-card {
        max-width: 350px;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* About Page Responsive */
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-text h1 {
        font-size: 2.5rem;
    }

    .about-hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .audience-image {
        height: 200px;
    }
    
    .audience-image img {
        height: 100%;
        object-fit: cover;
    }

    .brand-content {
        grid-template-columns: 1fr;
    }

    .team-description {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-text {
        text-align: center;
        padding: 0 1rem;
    }

    .team-text h3 {
        text-align: center;
    }

    .team-text p {
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .team-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .team-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .team-value {
        padding: 1.5rem 1rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .team-value strong {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .team-value p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Media query spécifique pour écrans étroits */
@media (max-width: 500px) {
    .about-preview {
        padding: 3rem 0;
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .about-preview-images {
        grid-template-columns: 1fr 1fr;
        height: auto;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .about-img-1, .about-img-2 {
        height: 160px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        transform: none;
        border-radius: 10px;
    }
}

/* Styles pour la page de gestion des cookies */
.cookies-hero {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold));
    color: var(--color-white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.cookies-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cookies-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.cookie-management {
    padding: 5rem 0;
    background: var(--color-white);
}

.cookie-info {
    text-align: center;
    margin-bottom: 3rem;
}

.cookie-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.cookie-info p {
    font-size: 1.1rem;
    color: var(--color-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cookie-category {
    background: var(--color-light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--color-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookie-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.cookie-category p {
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-gold);
}

.cookie-toggle label {
    font-weight: 600;
    color: var(--color-burgundy);
    cursor: pointer;
}

.cookie-toggle input[disabled] + label {
    color: var(--color-dark);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--color-burgundy);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-burgundy);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-burgundy);
    border: 2px solid var(--color-burgundy);
}

.btn-outline:hover {
    background: var(--color-burgundy);
    color: var(--color-white);
    transform: translateY(-2px);
}

.cookie-policy {
    background: var(--color-cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.cookie-policy h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.cookie-policy p {
    color: var(--color-dark);
    line-height: 1.7;
}

.cookie-policy a {
    color: var(--color-burgundy);
    text-decoration: none;
    font-weight: 600;
}

.cookie-policy a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Responsive pour la page cookies */
@media (max-width: 768px) {
    .cookies-hero {
        padding: 4rem 0 3rem;
    }
    
    .cookies-hero h1 {
        font-size: 2.5rem;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Media query spécifique pour téléphones mobiles */
@media (max-width: 480px) {
    .team-description {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2rem;
    }

    .team-text {
        text-align: center !important;
        padding: 0 1.5rem !important;
    }

    .team-text h3 {
        text-align: center !important;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .team-text p {
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .team-values {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1.5rem !important;
        margin-top: 2rem;
    }

    .team-value {
        padding: 1.5rem !important;
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        background: var(--color-light-gray);
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .team-value strong {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
        display: block;
        color: var(--color-burgundy);
    }

    .team-value p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        color: var(--color-dark);
    }
}

/* ===== STYLES POUR LA PAGE POLITIQUE DES COOKIES ===== */

.policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.policy-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.policy-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.policy-section {
    background: white;
    margin-bottom: 3rem;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.policy-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.policy-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #666;
}

.cookie-type {
    background: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

.cookie-type h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.cookie-type p:first-of-type {
    font-weight: 600;
    color: var(--secondary-color);
}

.preference-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.preference-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.preference-option:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.preference-option h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.conservation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.conservation-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.conservation-item:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.conservation-item h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.right-item h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.right-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

#open-cookie-settings {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

/* Responsive pour la page politique des cookies */
@media (max-width: 768px) {
    .policy-header {
        padding: 6rem 0 3rem;
    }
    
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.8rem;
    }
    
    .preference-options {
        grid-template-columns: 1fr;
    }
    
    .conservation-info {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-header {
        padding: 5rem 0 2rem;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-section {
        padding: 1.5rem 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .cookie-type {
        padding: 1.5rem;
    }
    
    .preference-option {
        padding: 1.5rem;
    }
    
    .conservation-item {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: 0 !important;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-preview-card img {
        height: 200px;
    }
    
    .audience-image {
        height: 180px;
    }
    
    .nav-logo {
        width: 30px;
        height: 30px;
    }
    
    .nav-brand h1 {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 0.55rem;
    }
    
    .header {
        padding: 0.15rem 0;
    }
    
    .navbar {
        padding: 0 8px;
    }
    
    .nav-menu {
         width: 280px;
         right: -280px;
         padding: 1.5rem 0;
     }
     
     .nav-menu a {
         font-size: 0.9rem;
         padding: 0.8rem 1.5rem;
     }
    
    .nav-menu li {
        margin: 0.1rem 0;
    }
    
    .values-grid {
        gap: 1.5rem;
    }
    
    .value-card {
        margin: 0 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation active state */
.nav-menu a.active {
    color: var(--color-gold);
    font-weight: 600;
}

/* Services Page Styles */
.services-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold));
    color: var(--color-white);
}

.services-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.services-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-hero-image {
    background-color: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
}

.services-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-detailed {
    padding: 5rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail.reverse .service-detail-content {
    direction: rtl;
}

.service-detail.reverse .service-detail-text {
    direction: ltr;
}

.service-detail-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
}

.service-detail-text h3 {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-dark);
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-detail-image {
    background-color: var(--color-light-gray);
    border-radius: 20px;
    overflow: hidden;
}

.dessert-section .centered-text {
    text-align: center;
}

.dessert-section .service-features {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.additional-services {
    padding: 5rem 0;
    background: var(--color-light-gray);
}

.additional-services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-burgundy);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--color-gold);
}

.additional-service-card:hover {
    transform: translateY(-5px);
}

.additional-service-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.additional-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.gallery {
    padding: 5rem 0;
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-burgundy);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 3rem;
    opacity: 0.8;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--color-white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.services-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold));
    color: var(--color-white);
    text-align: center;
}

.services-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-hero {
    padding: 5rem 0;
    background: var(--color-light-gray);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-dark);
}

.about-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mission {
    padding: 5rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-burgundy);
    margin-bottom: 1.5rem;
}

.mission-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--color-cream);
    border-radius: 10px;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--color-dark);
    font-weight: 600;
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.values {
    padding: 5rem 0;
    background: var(--color-light-gray);
}

.values h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-burgundy);
}

.values-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--color-gold);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-burgundy), var(--color-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-light-gray), #f8f9fa);
    position: relative;
}

.icon-emoji {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.value-card:hover .icon-emoji {
    transform: scale(1.1) rotate(5deg);
}

.value-content {
    padding: 2rem 1.5rem;
}

.value-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-content p {
    color: var(--color-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.target-audience {
    padding: 5rem 0;
}

.target-audience h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-burgundy);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.audience-image {
    height: 150px;
    overflow: hidden;
}

.audience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--color-burgundy);
    margin: 1rem 0 0.5rem;
    padding: 0 1rem;
}

.audience-card p {
    color: var(--color-dark);
    padding: 0 1rem 1.5rem;
    line-height: 1.5;
}

.brand-language {
    padding: 5rem 0;
    background: var(--color-cream);
}

.brand-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.brand-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-burgundy);
    margin-bottom: 2rem;
}

.brand-attributes {
    margin-bottom: 2rem;
}

.brand-attribute {
    margin-bottom: 1.5rem;
}

.brand-attribute h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.brand-attribute p {
    color: var(--color-dark);
    line-height: 1.6;
}

.brand-examples h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.brand-examples blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-gold);
    margin: 0.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--color-gold);
}

.color-palette h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.color-swatches {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.color-swatch {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: var(--color-white);
    font-weight: 600;
}

.color-swatch.gold {
    background: var(--color-gold);
}

.color-swatch.burgundy {
    background: var(--color-burgundy);
}

.color-swatch.white {
    background: var(--color-white);
    color: var(--color-dark);
    border: 2px solid var(--color-light-gray);
}

.team {
    padding: 5rem 0;
}

.team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-burgundy);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.team-description {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.team-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.team-value {
    text-align: center;
    padding: 1rem;
    background: var(--color-light-gray);
    border-radius: 8px;
}

.team-value strong {
    display: block;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.team-value p {
    color: var(--color-dark);
    font-size: 0.9rem;
    margin: 0;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold));
    color: var(--color-white);
    text-align: center;
}

.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--color-white);
}

.cta-button.secondary:hover {
    background: var(--color-white);
    color: var(--color-burgundy);
}

/* Contact Info CTA */
.contact-info-cta {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.contact-info-cta p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: inherit;
}

.contact-info-cta strong {
    color: var(--color-gold);
}

/* ===== SYSTÈME DE GESTION DES COOKIES ===== */

/* Bandeau de consentement aux cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2c2c2c 100%);
    color: var(--color-white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border-top: 3px solid var(--color-gold);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--color-gold);
    color: var(--color-dark);
}

.cookie-accept:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: var(--color-white);
    border: 2px solid #666;
}

.cookie-reject:hover {
    background: #666;
    border-color: #888;
}

.cookie-customize {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.cookie-customize:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.cookie-policy {
    background: transparent;
    color: var(--color-white);
    border: 2px solid transparent;
    text-decoration: underline;
}

.cookie-policy:hover {
    color: var(--color-gold);
}

/* Modal de personnalisation des cookies */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-modal-content {
    background: var(--color-white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin: 0;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: #f5f5f5;
    color: var(--color-dark);
}

.cookie-modal-body {
    padding: 20px 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h3 {
    margin: 0;
    color: var(--color-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-category p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Switch pour les cookies */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--color-gold);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: var(--color-gold);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Widget de gestion des cookies */
.cookie-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.cookie-widget-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-gold);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive pour les cookies */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        gap: 8px;
    }
    
    .cookie-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .cookie-widget {
        bottom: 15px;
        left: 15px;
    }
    
    .cookie-widget-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
        padding: 12px;
    }


@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        gap: 8px;
    }
    
    .cookie-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .cookie-widget {
        bottom: 15px;
        left: 15px;
    }
    
    .cookie-widget-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}