/* Reset et variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette Huemint - Couleurs principales */
    --primary-color: #d29a05;      /* Or doré principal */
    --secondary-color: #7c2a00;    /* Rouge bordeaux */
    --accent-color: #33351f;        /* Vert olive */
    --dark-color: #030303;         /* Noir profond */
    --light-color: #f8f9fa;        /* Blanc cassé */
    --text-color: #030303;         /* Texte principal */
    --white: #ffffff;              /* Blanc pur */
    
    /* Couleurs supplémentaires */
    --gold-light: #f4d03f;         /* Or clair */
    --bordeaux-light: #a0522d;     /* Bordeaux clair */
    --olive-light: #556b2f;        /* Olive clair */
    --gray-light: #e9ecef;         /* Gris clair */
    --gray-medium: #6c757d;        /* Gris moyen */
    
    /* Ombres avec nouvelle palette */
    --shadow: 0 4px 6px -1px rgba(3, 3, 3, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(3, 3, 3, 0.1);
    --shadow-gold: 0 4px 20px rgba(210, 154, 5, 0.3);
    --shadow-bordeaux: 0 4px 20px rgba(124, 42, 0, 0.3);
    --shadow-olive: 0 4px 20px rgba(51, 53, 31, 0.3);
    
    /* Dégradés avec nouvelle palette */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-gold: linear-gradient(135deg, #d29a05, #f4d03f);
    --gradient-bordeaux: linear-gradient(135deg, #7c2a00, #a0522d);
    --gradient-olive: linear-gradient(135deg, #33351f, #556b2f);
    --gradient-dark: linear-gradient(135deg, var(--dark-color), #1a1a1a);
    
    /* Bordures et transitions */
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f0f0f0;
}

/* Logo et navigation avec nouvelle palette */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.logo-img {
    height: auto;
    max-height: 47.5px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(3, 3, 3, 0.1);
}


/* Badges avec nouvelle palette */
.new-badge {
    background: var(--gradient-bordeaux);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-bordeaux);
    margin-left: 8px;
}

.specialty-badge {
    background: var(--gradient-olive);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-olive);
    margin-left: 8px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
    gap: 0.5rem;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}


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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 300;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

/* Menu déroulant */
.nav-item {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    z-index: 101;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(210, 154, 5, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Actions de navigation */
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-outline {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(210, 154, 5, 0.2);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 154, 5, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Logo Section */
.logo-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.main-logo {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

/* ========================= SECTION SPÉCIALITÉS ========================= */
.specialties {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.05), rgba(210, 154, 5, 0.02));
    z-index: 1;
}

/* ========================= SECTION HERO - EN-TÊTE RESTAURANT PROFESSIONNEL ========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 1rem;
    z-index: 10001;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video.playing {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    transform: translateY(0px);
}

.hero-logo-container {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out;
    transform: translateY(0px);
    will-change: transform;
}

.hero-logo {
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(255, 255, 255, 0.4)) drop-shadow(0 10px 25px rgba(255, 255, 255, 0.3)) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.25));
    transition: transform 0.3s ease;
    will-change: transform;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-text {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    transform: translateY(-10px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}


.hero-actions {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--white) !important;
    font-size: 2.5rem !important;
    opacity: 0.9;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-arrow i {
    color: var(--white) !important;
    font-size: 2.5rem !important;
}

.scroll-arrow:hover {
    opacity: 1;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(210, 154, 5, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(210, 154, 5, 0.3);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(210, 154, 5, 0.3);
}

.offer-icon i {
    font-size: 2rem;
    color: white;
}

.offer-content {
    margin-bottom: 2rem;
    flex: 1;
}

.offer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.offer-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.offer-hours {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.offer-item .btn {
    width: 100%;
    max-width: 250px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.offer-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210, 154, 5, 0.4);
}

.offer-item .btn i {
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-color);
    box-shadow: var(--shadow-gold);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-bordeaux);
    transform: translateY(-3px);
    box-shadow: var(--shadow-bordeaux);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: none;
    border-radius: 25px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.1), rgba(124, 42, 0, 0.1));
    border-radius: var(--border-radius);
    position: relative;
}

/* Specialties Hero Section (pour la page d'accueil) */
.specialties-hero {
    height: 40vh;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.3), rgba(124, 42, 0, 0.3));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.specialties-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/plats/platadobestock.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.specialties-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.7), rgba(124, 42, 0, 0.6));
    z-index: 1;
}

.specialties-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
    text-align: center;
}

.specialties-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

.specialties-hero .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(124, 42, 0, 0.3);
    color: var(--white);
}
/* Section header styles */
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header h6 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Specialties Hero Section (pour la page d'accueil) */
.specialties-hero {
    height: 40vh;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.3), rgba(124, 42, 0, 0.3)), 
                url('/assets/images/plats/platadobestock.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.specialties-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
    text-align: center;
}

.specialties-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

.specialties-hero .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

/* Espacement pour éviter le chevauchement avec la navigation fixe */
.about,
.gallery,
.environment-section,
.google-reviews {
    scroll-margin-top: 12rem;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: #f0f0f0;
    margin-top: 8rem;
    position: relative;
    z-index: 10;
}

.about .container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.about-subtitle {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Amélioration de la lisibilité lors du scroll */
@media (max-width: 768px) {
    .about {
        padding: 2rem 0 3rem 0;
        margin-top: 6rem;
    }
    
    .about .container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-color);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Menu Section */
.menu {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(51, 53, 31, 0.03), rgba(210, 154, 5, 0.03));
    position: relative;
}

.menu-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.menu-category {
    padding: 0.4rem 1.2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 120px;
    max-width: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-category:hover {
    background: rgba(210, 154, 5, 0.1);
    border-color: var(--primary-color);
}

.menu-category.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: none;
    box-shadow: 0 2px 8px rgba(210, 154, 5, 0.3);
}

.menu-category.active:hover {
    background: var(--primary-color);
    opacity: 0.9;
}

/* Message d'information du menu */
.menu-info-message {
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
}

.menu-info-message p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.6;
}

.menu-info-message i {
    display: none;
}

@media (max-width: 768px) {
    .menu-info-message {
        padding: 1rem 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .menu-info-message p {
        font-size: 1rem;
    }
}

.menu-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.8rem 1rem;
    transition: background-color 0.2s ease;
    margin-bottom: 0.3rem;
    gap: 2rem;
    border-radius: 8px;
}

.menu-item:hover {
    background: rgba(210, 154, 5, 0.02);
    transition: background-color 0.2s ease;
}

.menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-info h3,
.menu-item-info h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-item-info h5 {
    min-height: 24px; /* Pour garder l'alignement */
}

.menu-item-name {
    flex: 1;
}

/* Icône de plat (disponible/non disponible) */
.menu-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    flex-shrink: 0;
}

.menu-item-icon.available {
    background: #10b981;
    color: white;
}

.menu-item-icon.unavailable {
    background: #ef4444;
    color: white;
}

/* Conteneur pour badges (NOUVEAU, à emporter, etc.) */
.menu-item-badges {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

.menu-item-info p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    font-family: 'Inter', sans-serif;
}

/* Click & Collect Section */
.click-collect {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--white);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #f0f0f0;
}

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

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

.about-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.click-collect .section-header h2,
.click-collect .section-header h4 {
    color: var(--white);
}

.click-collect .section-header h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.click-collect-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.click-collect-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.click-collect-image {
    text-align: center;
}

.click-collect-image img {
    max-width: 200px;
    height: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--light-color);
}

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

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.testimonial h6 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: 3rem 0;
    background: #f0f0f0;
}

.gallery .container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.03), rgba(124, 42, 0, 0.03));
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-right {
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.contact-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* SVG Social Icons */
.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.facebook-icon {
    color: #1877F2;
}

.instagram-icon {
    color: #E4405F;
}

.tiktok-icon {
    color: #000000;
}

/* Social Icons Container */
.social-icons-container {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.social-link:focus {
    outline: none;
    background-color: transparent !important;
}

.social-link:active {
    outline: none;
    background-color: transparent !important;
}

.social-link .social-icon {
    width: 24px;
    height: 24px;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    width: 100%;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(210, 154, 5, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
    flex: 1;
}

/* Layout spécial pour les cases à cocher */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: #e5e7eb;
    background: #f1f5f9;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-item label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
    flex: 1;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-color);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-section p a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section p a:hover {
    color: #d1d5db;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: transparent;
    color: var(--white);
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    transition: var(--transition);
    padding: 0;
}

.social-links a:hover {
    background: transparent;
    transform: none;
}

.social-links .social-icon {
    width: 48px;
    height: 48px;
}

.social-links a:focus {
    outline: none;
    background-color: transparent !important;
}

.social-links a:active {
    outline: none;
    background-color: transparent !important;
}

/* Suppression complète des effets de sélection sur tous les liens sociaux */
.social-links a,
.social-link,
.social-card {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.social-links a:focus,
.social-links a:active,
.social-link:focus,
.social-link:active,
.social-card:focus,
.social-card:active {
    outline: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* =========================
   RESPONSIVE DESIGN - MOBILE FIRST
========================= */

/* Mobile Styles - Base */
@media (max-width: 768px) {
    /* Variables mobiles */
    :root {
        --container-padding: 1rem;
        --section-padding: 2rem 1rem;
        --font-size-small: 0.9rem;
        --font-size-base: 1rem;
        --font-size-large: 1.2rem;
        --font-size-xl: 1.5rem;
        --font-size-2xl: 2rem;
        --font-size-3xl: 2.5rem;
    }

    /* Navigation Mobile */
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-container {
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .main-logo {
        max-height: 120px;
    }
    
    .hamburger {
        display: flex;
        z-index: 101;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        z-index: 100;
        padding: 2rem 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        opacity: 0;
        animation: fadeInUp 0.3s ease forwards;
    }
    
    .nav-menu.active li {
        animation-delay: calc(var(--i) * 0.1s);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 12px;
        margin: 0 1rem;
        transition: all 0.3s ease;
        color: var(--white) !important;
    }
    
    .nav-link:hover {
        background: rgba(255, 215, 0, 0.2);
        color: var(--primary-color) !important;
        transform: translateX(5px);
    }
    
    .nav-actions {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-left: 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white) !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 215, 0, 0.2);
        color: var(--primary-color) !important;
        border-left: none;
        border-bottom-color: var(--primary-color);
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 120px 1rem 60px;
    }
    
    .hero-video {
        /* Sur mobile, on peut désactiver la vidéo pour économiser la bande passante */
        display: none;
    }
    
    .hero-background {
        /* Fallback avec l'image de fond sur mobile */
        background: linear-gradient(135deg, rgba(210, 154, 5, 0.1), rgba(0, 0, 0, 0.3)), url('/assets/docs/fondintro.jpg') center/cover no-repeat;
        background-attachment: fixed;
    }
    
    .hero-logo {
        max-width: 380px;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        font-size: 2rem !important;
        color: var(--white) !important;
    }
    
    .scroll-arrow i {
        font-size: 2rem !important;
        color: var(--white) !important;
    }
    
    .offer-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .offer-icon i {
        font-size: 1.5rem;
    }
    
    .offer-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .offer-content p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 2.5rem 1rem;
        min-height: 35vh;
    }
    
    .page-hero .hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .page-hero .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .page-hero .hero-content p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    /* Parallax Hero Mobile */
    .parallax-hero {
        height: 70vh;
    }
    
    .parallax-content .hero-title {
        font-size: 2.5rem;
    }
    
    .parallax-content .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .parallax-content .hero-description {
        font-size: 1rem;
    }

    /* Sections Mobile */
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    /* Menu Mobile */
    .menu-categories {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .menu-category {
        font-size: 0.9rem;
        padding: 0.5rem 0.9rem;
        border-radius: 20px;
        min-width: 120px;
        text-align: center;
    }
    
    .menu-item {
        padding: 1rem 1.5rem;
        margin-bottom: 1rem;
        border-radius: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .menu-item-info h3,
    .menu-item-info h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-item-price {
        font-size: 1.2rem;
        align-self: flex-end;
    }

    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
    }

    /* Values Grid Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 15px;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
    }
    
    .value-icon i {
        font-size: 2rem;
    }

    /* Team Mobile */
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .team-text {
        order: 2;
        padding: 0;
        margin: 0;
        text-align: left;
        width: 100%;
    }
    
    .team-text h3 {
        text-align: left;
        margin: 0 0 1.5rem 0;
        padding: 0;
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .team-text p {
        text-align: left;
        margin: 0 0 1rem 0;
        padding: 0;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .team-image {
        order: 1;
        margin: 0;
        padding: 0;
    }
    
    .team-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
        border-radius: 20px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    /* Commitment Mobile */
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-form form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .map-container {
        height: 250px;
        margin: 2rem 0;
    }

    /* Hours Section Mobile */
    .hours-section {
        padding: 2rem 1rem;
    }
    
    .hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hours-info,
    .takeaway-info {
        text-align: center;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
        border-radius: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        text-align: center;
    }

    /* Legal Section Mobile */
    .legal-section {
        padding: 2rem 0;
    }
    
    .legal-content {
        gap: 2rem;
    }
    
    .legal-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .legal-item h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .legal-item h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem;
    }
    
    .legal-item h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem;
    }

    /* Click & Collect Mobile */
    .click-collect {
        padding: 3rem 1rem;
    }
    
    .click-collect-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .click-collect-text {
        order: 2;
        text-align: center;
    }
    
    .click-collect-image {
        order: 1;
    }

    /* Reservation Mobile */
    .reservation-form-section {
        padding: 2rem 1rem;
    }
    
    .reservation-form {
        padding: 2rem 1.5rem;
    }

    /* Touch Interactions */
    .btn:active,
    .nav-link:active {
        transform: scale(0.98);
    }
    
    /* Scroll Behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Focus States for Touch */
    .btn:focus,
    .nav-link:focus,
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: 3px solid rgba(255, 215, 0, 0.5);
        outline-offset: 2px;
    }
    
    /* Styles pour les erreurs de formulaire */
    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
        border-color: #e74c3c;
        box-shadow: 0 0 8px 2px rgba(231, 76, 60, 0.2);
    }
    
    /* Message d'erreur */
    .error-message {
        color: #e74c3c;
        font-size: 0.9rem;
        margin-top: 0.5rem;
        display: block;
    }
    
    /* Lazy loading */
    .lazy {
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .lazy.loaded {
        opacity: 1;
    }
    
    /* Amélioration des performances sur mobile */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Optimisation des transitions sur mobile */
    .btn,
    .nav-link,
    .menu-item,
    .testimonial,
    .gallery-item {
        will-change: transform;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-logo {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    
    .hero-actions .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .offer-item {
        padding: 1rem;
    }
    
    .offer-icon {
        width: 50px;
        height: 50px;
    }
    
    .offer-icon i {
        font-size: 1.2rem;
    }
    
    .offer-content h3 {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Team Small Mobile */
    .team-text {
        padding: 0;
        margin: 0;
    }
    
    .team-text h3 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin: 0 0 1.2rem 0;
    }
    
    .team-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0 0 0.9rem 0;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-container {
        max-width: 250px;
        padding: 1rem;
    }
    
    .main-logo {
        max-height: 100px;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-category {
        width: 100%;
        max-width: 250px;
        min-width: 200px;
        text-align: center;
        justify-content: center;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 750px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
    will-change: transform, opacity;
}

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

/* Page Hero (pour les pages internes) */
.page-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.3), rgba(124, 42, 0, 0.3));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/plats/platadobestock.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.7), rgba(124, 42, 0, 0.6));
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
    text-align: center;
}

.page-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

.page-hero .hero-subtitle {
    font-size: 1.55rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(124, 42, 0, 0.3);
    color: var(--white);
    opacity: 0.9;
    line-height: 1.4;
}

.page-hero .hero-content p {
    font-size: 1.45rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

/* ========================= ANIMATION DE DÉFILEMENT POUR TITRES DE SECTION ========================= */
.page-hero {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-hero .hero-content {
    transition: transform 0.1s ease-out, opacity 0.3s ease-out;
    will-change: transform, opacity;
    transform: translateY(0px);
}

/* Styles responsives pour l'animation de défilement */
@media (max-width: 768px) {
    .page-hero .hero-content {
        transition: transform 0.05s ease-out, opacity 0.2s ease-out;
    }
}

@media (max-width: 480px) {
    .page-hero .hero-content {
        transition: transform 0.03s ease-out, opacity 0.15s ease-out;
    }
    
    .page-hero {
        padding: 2rem 0.75rem;
        min-height: 30vh;
    }
    
    .page-hero .hero-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        line-height: 1.15;
    }
    
    .page-hero .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
        line-height: 1.25;
    }
    
    .page-hero .hero-content p {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 0.4rem;
    }
}

/* ========================= SECTION AVIS GOOGLE ========================= */
.google-reviews {
    padding: 4rem 0;
    background: #f0f0f0;
}

.google-reviews .container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Résumé de la note Google */
.google-rating-summary {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-stars .star,
.rating-stars .half-star {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    flex-shrink: 0;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, #d29a05, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-count {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 600;
}

@media (max-width: 768px) {
    .rating-stars {
        font-size: 1.5rem;
        color: #fbbf24 !important;
    }
    
    .rating-value {
        font-size: 1.2rem;
    }
    
    .rating-count {
        font-size: 1rem;
    }
}

/* Grille d'avis responsive */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    flex: 1;
    max-width: 100%;
}

.reviews-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reviews-slider {
    flex: 1;
    overflow: hidden;
    display: flex;
    width: 100%;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.reviews-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reviews-nav-btn {
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-nav-btn:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.reviews-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.reviews-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.review-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(210, 154, 5, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.review-indicator:hover {
    background: var(--secondary-color);
}

.reviews-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.google-review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    width: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.google-logo {
    margin-right: 1rem;
}

.review-info h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.review-date {
    color: #9ca3af;
    font-size: 0.9rem;
}


.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #4285f4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-review:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-review:last-child {
    background: #fbbf24;
    color: #1f2937;
}

.btn-review:last-child:hover {
    background: #f59e0b;
}

/* Statistiques des avis */
.reviews-stats {
    margin: 2rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.15), rgba(210, 154, 5, 0.08));
    border-radius: 20px;
    border: 3px solid rgba(210, 154, 5, 0.3);
    text-align: center;
}

.stats-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
}

.stats-rating,
.stats-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stats-stars {
    font-size: 3rem;
    color: #fbbf24;
    letter-spacing: 3px;
}

.stats-average {
    font-size: 2rem;
    font-weight: 700;
    color: #d29a05;
    background: linear-gradient(135deg, #d29a05, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(210, 154, 5, 0.3);
}

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d29a05, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    font-size: 1.2rem;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .reviews-stats {
        padding: 1.5rem;
    }
}

/* Responsive pour les modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal .btn {
        width: 100%;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .reviews-container {
        gap: 0.5rem;
    }
    
    .reviews-nav-btn {
        font-size: 1.5rem;
        min-width: 40px;
        height: 40px;
    }
    
    .google-review-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .google-reviews {
        padding: 3rem 0;
    }
    
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reviews-container {
        gap: 0.5rem;
        flex-direction: column;
    }
    
    .reviews-nav-btn {
        align-self: center;
    }
    
    .google-review-card {
        padding: 1.5rem;
    }
    
    .reviews-nav-btn {
        font-size: 1.2rem;
        min-width: 35px;
        height: 35px;
    }
    
    .reviews-actions {
        flex-direction: column;
    }
    
    .btn-review {
        justify-content: center;
    }
    
    /* Galerie mobile - optimisée pour mobile */
    .gallery {
        padding: 2rem 0;
    }
    
    .gallery .container {
        padding: 1.5rem;
    }
    
    .dishes-gallery {
        width: 100%;
        max-width: 100%;
        margin: 1.5rem 0;
        padding: 0;
        position: relative;
    }
    
    .gallery-container {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        gap: 0;
        padding: 0;
        justify-content: center;
    }
    
    .gallery-viewport {
        flex: 1;
        overflow: hidden;
        width: 100%;
        margin: 0;
        border-radius: 15px;
        position: relative;
    }
    
    .dish-item {
        flex: 0 0 100%;
        height: 280px;
        width: 100%;
        position: relative;
    }
    
    .dish-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-container .gallery-nav {
        position: absolute;
        background: rgba(210, 154, 5, 0.9);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        font-size: 1.1rem;
        z-index: 20;
        font-weight: bold;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .gallery-container .gallery-nav.prev-btn {
        left: 10px;
    }
    
    .gallery-container .gallery-nav.next-btn {
        right: 10px;
    }
    
    .gallery-container .gallery-nav:hover {
        background: rgba(210, 154, 5, 1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        transform: translateY(-50%) scale(1.1);
    }
    
    .gallery-container .gallery-nav:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .gallery-menu-button {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-menu-button .btn-wrapper {
        align-items: center;
        width: 100%;
    }
    
    .gallery-menu-button p {
        text-align: center;
        margin-top: 1rem;
    }
}

/* ========================= SECTION MENU MIDI ========================= */
.menumidi {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-top: 1px solid rgba(210, 154, 5, 0.1);
    border-bottom: 1px solid rgba(210, 154, 5, 0.1);
}

.menumidi .container {
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.menu-midi-gallery {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.menu-midi-slides {
    position: relative;
    width: 100%;
}

.menu-midi-slide {
    position: relative;
    width: 100%;
    display: none;
}

.menu-midi-slide.active {
    display: block;
}

.menu-midi-content {
    width: 100%;
    margin: 0;
}

.menu-midi-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.3s ease;
}

.menu-midi-image:hover {
    opacity: 0.95;
}

/* Marges sur les côtés en desktop uniquement */
@media (min-width: 769px) {
    .menumidi .container {
        padding: 0 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .menu-midi-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .menu-midi-image {
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile : pas de marges latérales mais padding vertical */
@media (max-width: 768px) {
    .menumidi {
        padding: 3rem 0;
    }
    
    .menumidi .container {
        padding: 0;
        max-width: 100%;
    }
    
    .menu-midi-image {
        border-radius: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

/* Navigation chevrons pour menu offre */
.menu-midi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
    outline: none;
    z-index: 100;
}

.menu-midi-nav.menu-midi-prev {
    left: 1rem;
}

.menu-midi-nav.menu-midi-next {
    right: 1rem;
}

.menu-midi-nav i {
    font-size: 1.75rem;
    color: #000000;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 1), 0 1px 4px rgba(255, 255, 255, 0.9), 0 0 2px rgba(255, 255, 255, 0.8);
}

.menu-midi-nav:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.menu-midi-nav:active i {
    opacity: 0.7;
    transform: scale(0.95);
}

/* Style pour les indicateurs */
.menu-midi-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.5rem;
    padding: 0.75rem;
    z-index: 50;
}

.menu-midi-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(210, 154, 5, 0.3);
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 1px 3px rgba(210, 154, 5, 0.2);
}

.menu-midi-indicator.active {
    background: #d29a05;
    border-color: #d29a05;
    transform: scale(1.3);
    box-shadow: 0 2px 6px rgba(210, 154, 5, 0.4);
}

.menu-midi-indicator:hover {
    background: rgba(210, 154, 5, 0.6);
    border-color: rgba(210, 154, 5, 0.7);
    transform: scale(1.15);
}

/* Mobile : chevrons plus petits et à droite */
@media (max-width: 768px) {
    .menu-midi-nav {
        padding: 0.75rem 0.5rem;
    }
    
    .menu-midi-nav.menu-midi-prev {
        left: 0.5rem;
    }
    
    .menu-midi-nav.menu-midi-next {
        right: 0.5rem;
    }
    
    .menu-midi-nav i {
        font-size: 1.5rem;
        opacity: 0.95;
    }
    
    .menu-midi-indicators {
        margin-top: 1rem;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .menu-midi-indicator {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }
    
    .menu-midi-indicator.active {
        transform: scale(1.25);
    }
}

/* Menu Page Styles */
.menu-page {
    padding: 3rem 0;
}

/* Marges latérales du conteneur de la page menu */
.menu-page .container {
    padding-left: 4rem;
    padding-right: 4rem;
}

@media (max-width: 768px) {
    .menu-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.menu-image {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.menu-image img {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

/* Mobile : image pleine largeur */
@media (max-width: 768px) {
    .menu-image {
        padding: 0;
    }
    
    .menu-image img {
        width: 100vw;
        border-radius: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

.menu-category-title {
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(210, 154, 5, 0.12));
    border-radius: 20px;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 25px rgba(210, 154, 5, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.menu-category-title:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(210, 154, 5, 0.25);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Menu category styles */
.menu-category-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(210, 154, 5, 0.1);
    letter-spacing: 1px;
}

.menu-category-title p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-category-title hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem auto;
    width: 100px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(210, 154, 5, 0.2);
}

.menu-item h5 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-item.unavailable {
    opacity: 0.5;
}

.menu-item.unavailable .menu-item-info h5,
.menu-item.unavailable .menu-item-info p {
    color: #999;
}

.menu-item.unavailable .menu-item-price {
    color: #e74c3c;
    font-weight: 600;
}

/* Badge NOUVEAU */
.new-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Badge à emporter */
.takeaway-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 8px;
    cursor: help;
    transition: all 0.3s ease;
}

.takeaway-badge:hover {
    background: #059669;
    transform: scale(1.1);
}

.takeaway-badge svg {
    width: 12px;
    height: 12px;
}

/* Notes du menu */
.menu-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
}

.menu-note p {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Sous-titres dans les sections de boissons */
.menu-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

/* About Page Styles */
.about-story {
    padding: 6rem 0;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(210, 154, 5, 0.2);
}


.team-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}


.team-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.commitment-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.commitment-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Page Styles - Nouvelle structure en grille */
.contact-page {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.05), rgba(124, 42, 0, 0.05));
}

/* Grille principale en 2 colonnes (1/3 + 2/3) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Styles pour tous les blocs */
.contact-block {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 154, 5, 0.1);
}

.contact-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* En-tête des blocs */
.block-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.block-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.block-header i {
    font-size: 1.2rem;
}

/* Contenu des blocs */
.block-content {
    padding: 2rem;
}

/* Bloc Informations & Réseaux fusionné */
.info-social-block {
    display: flex;
    flex-direction: column;
}

.info-section,
.social-section {
    margin-bottom: 2rem;
}

.info-section:last-child,
.social-section:last-child {
    margin-bottom: 0;
}

.info-section h4,
.social-section h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(210, 154, 5, 0.2);
    padding-bottom: 0.5rem;
}

.info-section h4 i,
.social-section h4 i {
    font-size: 1rem;
}

.info-social-block .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(210, 154, 5, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-social-block .contact-item:hover {
    background: rgba(210, 154, 5, 0.1);
    transform: translateX(3px);
}

.info-social-block .contact-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 1.2rem;
    text-align: center;
    margin-top: 0.1rem;
}

.info-social-block .contact-item h5 {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.info-social-block .contact-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
}

/* Bloc Réseaux sociaux */
.info-social-block .social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.facebook-card {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(24, 119, 242, 0.05));
    border-color: rgba(24, 119, 242, 0.2);
}

.facebook-card:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(24, 119, 242, 0.1));
    border-color: rgba(24, 119, 242, 0.4);
}

.instagram-card {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(228, 64, 95, 0.05));
    border-color: rgba(228, 64, 95, 0.2);
}

.instagram-card:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.15), rgba(228, 64, 95, 0.1));
    border-color: rgba(228, 64, 95, 0.4);
}

.tripadvisor-card {
    background: linear-gradient(135deg, rgba(0, 175, 135, 0.1), rgba(0, 175, 135, 0.05));
    border-color: rgba(0, 175, 135, 0.2);
}

.tripadvisor-card:hover {
    background: linear-gradient(135deg, rgba(0, 175, 135, 0.15), rgba(0, 175, 135, 0.1));
    border-color: rgba(0, 175, 135, 0.4);
}

.tiktok-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    border-color: rgba(0, 0, 0, 0.2);
}

.tiktok-card:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1));
    border-color: rgba(0, 0, 0, 0.4);
}

.social-card .social-icon {
    width: 24px;
    height: 24px;
}

.facebook-card .social-icon {
    color: #1877F2;
}

.instagram-card .social-icon {
    color: #E4405F;
}

.tripadvisor-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-card span {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.85rem;
}

/* Bloc Formulaire */
.form-block {
    position: relative;
}

.form-block::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('/assets/images/logos/logo_elephant.png') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    transform: rotate(15deg);
    z-index: 0;
}

.form-block .block-content {
    position: relative;
    z-index: 1;
}

.form-block .form-group {
    margin-bottom: 1.2rem;
}

.form-block .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-block label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-block input,
.form-block select,
.form-block textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.form-block input:focus,
.form-block select:focus,
.form-block textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(210, 154, 5, 0.1);
    background: rgba(255, 255, 255, 1);
}

.form-block textarea {
    resize: vertical;
    min-height: 100px;
}

.form-block .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-block .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210, 154, 5, 0.3);
}


/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
}

@media (max-width: 768px) {
    .contact-page {
        padding: 4rem 0;
    }
    
    .block-content {
        padding: 1.5rem;
    }
    
    .form-block .form-row {
        grid-template-columns: 1fr;
    }
    
}

.contact-items {
    margin-bottom: 3rem;
}

.social-section {
    margin-top: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Reservation Page Styles */
.reservation-form-section {
    padding: 6rem 0;
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.reservation-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Décalage spécifique pour le bouton "Commander en ligne" */
.hero-actions .btn:first-child {
    margin-left: -5mm;
}

.reservation-info-section {
    padding: 6rem 0;
    background: var(--light-color);
}

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

.info-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.reservation-cta {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.reservation-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.reservation-cta p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

/* Menu CTA */
.menu-cta {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.menu-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.menu-cta p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

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

/* Navigation active state */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Logo link */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}



.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

/* Contact Page Additional Styles */
.contact-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-note {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.hours-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.hours-info,
.takeaway-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.hours-info h3,
.takeaway-info h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.hours-info h5,
.takeaway-info h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.takeaway-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.takeaway-info p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Legal Page Styles */
.legal-section {
    padding: 6rem 0;
    background: var(--light-color);
}

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

.legal-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-item h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.legal-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ======= SECTIONS - REPÈRES CSS ======= */

/* === HERO - Accueil === */
/* repère: section d'accroche principal */

/* === Séparateur doré sous chaque titre de section === */
.section-header hr {
    border: none;
    border-top: 4px solid var(--primary-color);
    opacity: 0.7;
    width: 70px;
    margin: 2rem auto 2rem auto;
    border-radius: 3px;
}

/* === Boutons principaux dorés - Hover / active === */
.btn, .btn-primary, .btn-secondary {
    /* repère: styles génériques boutons principaux */
    /* ... autres styles ... */
    border-radius: 25px; /* bien arrondi ! */
}
.btn-primary:hover, .btn-secondary:hover, .btn:hover {
    background: var(--gradient-bordeaux);
    color: var(--white);
    box-shadow: var(--shadow-bordeaux);
    transform: translateY(-4px) scale(1.04);
}

/* === Inputs/formulaires stylisés === */
.form-group input, .form-group select, .form-group textarea {
    border-radius: 14px;
    border: none;
    box-shadow: var(--shadow-gold);
    /* repère: Formulaires arrondis dorés */
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-bordeaux);
}

/* === Cards / blocs arrondis === */
.menu-item, .testimonial, .gallery-item, .about-image img {
    border-radius: 20px !important;
    box-shadow: var(--shadow-gold);
}

/* === Messages de statut pour formulaire === */
.status-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.status-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 2px solid #c3e6cb;
}

.status-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 2px solid #f5c6cb;
}

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



.menu-item:hover, .testimonial:hover, .gallery-item:hover {
    box-shadow: var(--shadow-bordeaux);
    background: rgba(210, 154, 5, 0.04);
    transform: translateY(-2px);
}

/* === Footer - liseré doré top === */
.footer {
    border-top: 3px solid var(--primary-color);
    /* ... autres styles ... */
}
/* === FIN Theme repéré === */


/* ========================= GALERIE DES PLATS AVEC NAVIGATION ========================= */

.dishes-gallery {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.05), rgba(210, 154, 5, 0.02));
    border-radius: 20px;
    padding: 2rem;
}

.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
}

.dish-item {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(210, 154, 5, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.dish-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(210, 154, 5, 0.3);
}

.dish-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dish-item:hover img {
    transform: scale(1.1);
}

.gallery-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 154, 5, 0.3);
    font-size: 1.2rem;
}

.gallery-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(210, 154, 5, 0.4);
}

.gallery-nav:active {
    transform: scale(0.95);
}

.gallery-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(210, 154, 5, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.gallery-indicator:hover {
    background: var(--secondary-color);
}

.gallery-menu-button {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(210, 154, 5, 0.1);
}

.gallery-menu-button p {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-color);
    font-size: 0.95rem;
    opacity: 0.8;
    text-align: right;
}

.delivery-info {
    margin-top: 0.5rem !important;
    font-size: 1.1rem !important;
    color: var(--text-color) !important;
    font-weight: 600 !important;
}

.gallery-menu-button .btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    width: 100%;
}

/* ========================= SECTION ENVIRONNEMENT ========================= */

.environment-section {
    padding: 4rem 0;
    background: #f0f0f0;
}

.environment-section .container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.environment-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(210, 154, 5, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
}

.environment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(210, 154, 5, 0.25);
}

.environment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

.environment-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.environment-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Environment Section */
@media (max-width: 768px) {
    .environment-section {
        padding: 2rem 0;
    }
    
    .environment-section .container {
        padding: 1.5rem;
        margin: 0 1rem;
        width: calc(100% - 2rem);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .environment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .environment-item {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .environment-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }
}

/* ========================= SECTION ÉQUIPE ========================= */

.team-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.05), rgba(210, 154, 5, 0.02));
}

/* ========================= MODALS GENERAUX ========================= */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
}

.modal-close {
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Boutons spécifiques aux modals */
.modal .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal .btn-primary {
    background: #1f2937;
    color: var(--white);
}

.modal .btn-primary:hover {
    background: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.modal .btn-secondary {
    background: #6b7280;
    color: var(--white);
}

.modal .btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ========================= MODAL DE CONNEXION ADMIN ========================= */
.login-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.login-modal-content {
    background: linear-gradient(135deg, var(--white), var(--gray-light));
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

.login-modal-content h2 {
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.login-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.login-error {
    background: #fee;
    color: #c33;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: none;
    border-left: 4px solid #c33;
}

.login-success {
    display: none;
}

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

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .login-modal-content {
        width: 95%;
        padding: 2rem;
        margin: 10% auto;
    }

    .login-modal-content h2 {
        font-size: 1.5rem;
    }

    .login-modal-close {
        font-size: 1.5rem;
        right: 15px;
        top: 15px;
    }
}

/* ========================= POPUP SYSTEM ========================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay-show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: transparent;
    border-radius: 12px;
    box-shadow: none;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
}

.popup-show {
    transform: scale(1);
    opacity: 1;
}

.popup-hide {
    transform: scale(0.8);
    opacity: 0;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 10001;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 1);
    color: #e74c3c;
    transform: scale(1.1);
}

.popup-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.popup-image {
    text-align: center;
    width: 100%;
}

.popup-image img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.popup-text {
    text-align: center;
}

.popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.popup-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.popup-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.popup-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Tailles de popup */
.popup-small {
    width: 300px;
}

.popup-medium {
    width: 500px;
}

.popup-large {
    width: 700px;
}

.popup-fullscreen {
    width: 95vw;
    height: 95vh;
}

.popup-fullscreen .popup-content {
    height: 100%;
    justify-content: center;
}

/* Positions de popup */
.popup-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-top {
    align-self: flex-start;
    margin-top: 2rem;
}

.popup-bottom {
    align-self: flex-end;
    margin-bottom: 2rem;
}

.popup-left {
    align-self: center;
    margin-left: 2rem;
}

.popup-right {
    align-self: center;
    margin-right: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-container {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }
    
    .popup-small,
    .popup-medium,
    .popup-large {
        width: 100%;
    }
    
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-title {
        font-size: 1.25rem;
    }
    
    .popup-left,
    .popup-right {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ========================= IMAGE UPLOAD SYSTEM ========================= */
.image-upload-container {
    margin: 1rem 0;
}

.image-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.image-upload-label:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.upload-icon {
    font-size: 2rem;
    color: #6b7280;
}

.upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.upload-title {
    font-weight: 600;
    color: #374151;
}

.upload-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.image-preview {
    position: relative;
    margin-top: 1rem;
}

.preview-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.remove-image-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.remove-image-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.upload-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ========================= POPUP MANAGEMENT ========================= */
.popup-form-group {
    margin-bottom: 1.5rem;
}

.popup-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.popup-form-group input,
.popup-form-group select,
.popup-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.popup-form-group input:focus,
.popup-form-group select:focus,
.popup-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.popup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.popup-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.popup-form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.popup-size-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.popup-size-option {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.popup-size-option:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.popup-size-option.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.popup-page-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.popup-page-option {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.popup-page-option:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.popup-page-option.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* ========================= PAGE ADMIN ========================= */
.admin-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.9) 100%), 
                url('/assets/docs/fondadmin.webp') center/cover no-repeat;
    padding: 2rem 0;
    position: relative;
}

.admin-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/docs/fondadmin.webp') center/cover no-repeat;
    background: url('/assets/docs/fondadmin.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

/* ========================= ONGLETS ADMIN ========================= */
.admin-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-tab {
    padding: 3rem 2rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4b5563;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
}

.admin-tab:hover {
    color: #2563eb;
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.admin-tab.active {
    color: #2563eb;
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.admin-tab i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.admin-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-content.active {
    display: block;
}

/* Styles spécifiques pour le contenu des statistiques */
#stats-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.stats-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Forcer les tableaux et graphiques à rester dans les limites */
.stats-table-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
}

.stats-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    box-sizing: border-box;
}

.stats-charts {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.chart-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.chart-container canvas {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
}

/* ========================= GESTION DU MENU PAR CATÉGORIES ========================= */
.menu-management {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.category-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.category-card:hover {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 154, 5, 0.15);
}

.category-card.active {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.1);
    box-shadow: 0 4px 12px rgba(210, 154, 5, 0.25);
}

.category-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.category-card .category-count {
    font-size: 0.9rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.category-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.menu-content-area {
    position: relative;
}

.category-view {
    animation: fadeIn 0.3s ease;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.btn-back {
    background: #6b7280;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.category-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.all-categories-view {
    animation: fadeIn 0.3s ease;
}

/* Responsive pour les catégories */
@media (max-width: 768px) {
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .category-card {
        padding: 1rem;
        min-height: 100px;
    }
    
    .category-card h4 {
        font-size: 1rem;
    }
    
    .category-card i {
        font-size: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .btn-back {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive tabs */
@media (max-width: 768px) {
    .admin-tabs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-tab {
        padding: 2rem 1.5rem;
        min-height: 120px;
        font-size: 1.1rem;
    }
    
    .admin-tab i {
        font-size: 2rem;
    }
}

/* ========================= OPTIONS DE POPUP INTERACTIVES ========================= */
.popup-size-options,
.popup-page-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.popup-size-option,
.popup-page-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.popup-size-option:hover,
.popup-page-option:hover {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.05);
    transform: translateY(-2px);
}

.popup-size-option.selected,
.popup-page-option.selected {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.1);
    box-shadow: 0 4px 12px rgba(210, 154, 5, 0.2);
}

.popup-size-option i,
.popup-page-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.popup-size-option div,
.popup-page-option div {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.popup-form-group {
    margin-bottom: 1.5rem;
}

.popup-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.popup-form-checkbox:hover {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.05);
}

.popup-form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.3);
}

.popup-form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color);
    flex: 1;
}

/* ========================= STYLES POUR LES MESSAGES DE CONTACT ========================= */

.messages-filters {
    margin-bottom: 1.5rem;
}

.btn-filter {
    padding: 0.75rem 1.5rem;
    border: none;
    background: rgba(243, 244, 246, 0.8);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #6b7280;
}

.btn-filter:hover {
    background: rgba(229, 231, 235, 0.9);
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-filter.active {
    background: rgba(31, 41, 55, 0.95);
    color: white;
    box-shadow: 0 2px 4px rgba(31, 41, 55, 0.2);
}

.message-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.message-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message-card.unread {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

.message-card.read {
    border-left: 4px solid #10b981;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.message-meta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.message-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.message-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-reply,
.btn-mark-read,
.btn-mark-unread {
    padding: 0.5rem 1rem;
    border: none;
    background: rgba(243, 244, 246, 0.8);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
}

.btn-reply:hover {
    background: rgba(31, 41, 55, 0.95);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.btn-mark-read:hover,
.btn-mark-unread:hover {
    background: rgba(229, 231, 235, 0.9);
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-info {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
}

.message-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.message-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.message-info a:hover {
    text-decoration: underline;
}

.message-content {
    padding: 1rem;
}

.message-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.message-content p {
    line-height: 1.6;
    color: #374151;
    white-space: pre-wrap;
}

/* Responsive messages (mobile) */
@media (max-width: 768px) {
    .messages-filters {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    .messages-filters .btn-filter {
        width: 100%;
    }
    .messages-filters .subject-filter select,
    #subject-select {
        width: 100%;
        min-width: 0;
    }
    .message-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .message-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .message-actions .btn-reply,
    .message-actions .btn-mark-read,
    .message-actions .btn-mark-unread {
        width: 100%;
        justify-content: center;
    }
    .message-meta h3 {
        font-size: 1.05rem;
    }
    .message-content {
        padding: 0.75rem;
    }
}

/* ========================= ACTUALITÉS SECTION ========================= */
.actualites-section {
    padding: 4rem 0;
    background: var(--light-color);
}

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

.actualite-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.actualite-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.actualite-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.actualite-content {
    padding: 2rem;
}

.actualite-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.actualite-date {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 0.75rem;
    text-transform: capitalize;
}

.actualite-titre {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.actualite-titre a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.actualite-titre a:hover {
    color: var(--primary-color);
}

.actualite-resume {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-read-more:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

.actualite-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.actualite-medias {
    margin: 3rem 0;
}

.media-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.media-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.actualite-detail-article {
    max-width: 900px;
    margin: 0 auto;
}

.actualite-detail-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.actualite-detail-titre {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.actualite-date-simple {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-style: italic;
    text-transform: capitalize;
}

.actualite-detail-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.actualite-detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.actualite-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.actualite-detail-content h1,
.actualite-detail-content h2,
.actualite-detail-content h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.actualite-detail-content p {
    margin-bottom: 1.5rem;
}

.actualite-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.actualite-detail-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.actualite-detail-content a:hover {
    color: var(--secondary-color);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--gray-medium);
    margin: 0 0.5rem;
}

.no-actualites {
    text-align: center;
    padding: 3rem;
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #ef4444;
    background: #fee2e2;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

/* Admin Editor Styles */
#actualites-editor {
    min-height: 400px;
    background: white;
    border-radius: var(--border-radius);
}

.ql-container {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.ql-editor {
    min-height: 400px;
}

.actualites-admin-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.actualite-admin-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.actualite-admin-item:hover {
    border-color: var(--primary-color);
}

.actualite-admin-info {
    flex: 1;
}

.actualite-admin-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.actualite-admin-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.actualite-admin-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.actualite-admin-status.published {
    background: #d1fae5;
    color: #065f46;
}

.actualite-admin-status.draft {
    background: #fee2e2;
    color: #991b1b;
}

.actualite-admin-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit-actualite,
.btn-delete-actualite {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-edit-actualite:hover {
    background: var(--secondary-color);
}

.btn-delete-actualite {
    background: #ef4444;
    color: white;
}

.btn-delete-actualite:hover {
    background: #dc2626;
}

/* Responsive */
@media (max-width: 992px) {
    .actualites-grid {
        grid-template-columns: 1fr;
    }
    
    .actualite-admin-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .actualite-admin-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
