/* ===== VARIABLES CSS ===== */
:root {
    --primary-color: #e74c3c;
    --primary-dark: #c0392b;
    --secondary-color: #f39c12;
    --accent-color: #27ae60;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --gradient-primary: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    --gradient-secondary: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white); /* Changé en blanc pour l'arrière-plan noir */
    background-color: transparent;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--white);
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.95); /* var(--dark-color) avec un peu de transparence */
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

.navbar.scrolled .logo-img {
    height: 70px; /* Augmenté de 50px à 70px */
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-link {
    color: var(--white);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 120px; /* Augmenté de 70px à 120px */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)); /* Lueur blanche plus intense */
    transition: var(--transition);
}

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

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s ease infinite;
}

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

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem; /* Augmenté de 1.8rem à 2.2rem */
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Ajout d'une ombre pour la profondeur */
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 5px;
}

.nav-link {
    color: var(--white);
    padding: 10px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-toggle::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: 0.5s;
}

.nav-toggle:hover::before {
    left: 100%;
}

.nav-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
    position: relative;
}

.nav-toggle span:nth-child(2) {
    width: 18px;
    margin-left: auto;
}

.navbar.scrolled .nav-toggle {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-toggle span {
    background: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background Slideshow Global */
.hero-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    filter: blur(5px) brightness(0.95);
}

.hero-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Overlay noir transparent */
    z-index: 5;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.1);
    z-index: 1;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
    animation: slideZoom 10s linear forwards;
}

@keyframes slideZoom {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.slideshow-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slideshow-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slideshow-indicators .indicator.active {
    background: var(--white);
    transform: scale(1.2);
    border-color: var(--primary-color);
}

.slideshow-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.6) 0%, rgba(243, 156, 18, 0.4) 100%);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    animation: fadeInDown 1s ease;
}

.title-main {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.9s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.feature i {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature:hover i {
    background: var(--primary-color);
    transform: scale(1.1);
}

.feature span {
    font-weight: 500;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    animation: fadeInUp 1s ease 1.2s both;
    box-shadow: var(--shadow-lg);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: var(--primary-color);
    color: var(--white);
}

.hero-btn i {
    animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 1.5s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

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

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

/* ===== MENU SECTIONS ===== */
.menu-section {
    padding: 100px 20px;
    max-width: 1600px;
    margin: 0 auto;
    background: transparent;
}

.menu-section.alt-bg {
    background: transparent;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.menu-section.alt-bg > * {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s ease infinite;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white); /* Changé en blanc */
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* ===== CATEGORY CONTAINER ===== */
.category-container {
    margin-bottom: 60px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.category-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ===== MENU GRID ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* ===== MENU CARD ===== */
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.menu-card.premium {
    border: 2px solid var(--secondary-color);
}

.menu-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image.no-image::after {
    content: '📷';
    font-size: 3rem;
    opacity: 0.3;
}

.card-image.no-image::before {
    content: 'Image à venir';
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.menu-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.card-badge.sweet {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.card-badge.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.card-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.price small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.order-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

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

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: rgba(44, 62, 80, 0.85); /* Semi-transparent */
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-info {
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 35px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-details {
    text-align: left;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(44, 62, 80, 0.9); /* var(--dark-color) avec transparence */
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== ANIMATIONS ===== */
[data-aos="fade-up"] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animation state - applied when scrolling */
[data-aos="fade-up"].aos-init {
    opacity: 0;
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .title-main {
        font-size: 3.5rem;
    }
    
    .hero-features {
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6); /* Noir transparent */
        backdrop-filter: blur(15px); /* Effet de flou sur le fond */
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 100px 25px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu::before {
        content: '🍽️ Menu';
        position: absolute;
        top: 30px;
        left: 25px;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--white);
        font-family: 'Dancing Script', cursive;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 5px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--white) !important;
        padding: 16px 20px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        border-radius: var(--radius-md);
        margin-bottom: 5px;
        transition: var(--transition);
        background: transparent;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: var(--gradient-primary);
        color: var(--white) !important;
        border-bottom-color: transparent;
        transform: translateX(5px);
    }
    
    .nav-menu .nav-link i {
        margin-right: 12px;
        width: 20px;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active {
        background: var(--dark-color);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        width: 24px;
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        width: 24px;
    }
    
    .title-main {
        font-size: 2.8rem;
    }
    
    .title-line {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature {
        flex-direction: row;
        gap: 15px;
    }
    
    .feature i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .menu-section {
        padding: 50px 12px;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-icon {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: 12px;
    }
    
    .category-container {
        margin-bottom: 40px;
    }
    
    .category-title {
        font-size: 1.3rem;
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .category-title i {
        font-size: 1.2rem;
    }
    
    /* Grille mobile optimisée - 2 colonnes */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Cartes compactes pour mobile */
    .menu-card {
        border-radius: var(--radius-md);
    }
    
    .menu-card:hover {
        transform: translateY(-5px);
    }
    
    .card-image {
        height: 130px;
    }
    
    .card-badge {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .card-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
        line-height: 1.3;
        /* Limiter à 2 lignes */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .card-description {
        display: none; /* Masquer description sur mobile pour gagner de l'espace */
    }
    
    .card-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
    }
    
    .price {
        font-size: 1rem;
        text-align: center;
    }
    
    .price small {
        font-size: 0.7rem;
    }
    
    .order-btn {
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.8rem;
        border-radius: var(--radius-md);
    }
    
    .order-btn i {
        font-size: 1rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 65px; /* Augmenté de 50px à 65px */
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .menu-section {
        padding: 40px 10px;
    }
    
    .section-icon {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    /* Grille mobile - toujours 2 colonnes mais plus compact */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .card-image {
        height: 110px;
    }
    
    .card-badge {
        top: 6px;
        left: 6px;
        padding: 3px 6px;
        font-size: 0.6rem;
    }
    
    .card-content {
        padding: 10px;
    }
    
    .card-title {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .price {
        font-size: 0.9rem;
    }
    
    .order-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        gap: 5px;
    }
    
    .order-btn i {
        font-size: 0.9rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Contact section mobile */
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
    }
}

/* ===== TRÈS PETITS ÉCRANS (320px) ===== */
@media (max-width: 360px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .card-image {
        height: 95px;
    }
    
    .card-content {
        padding: 8px;
    }
    
    .card-title {
        font-size: 0.75rem;
    }
    
    .price {
        font-size: 0.8rem;
    }
    
    .order-btn {
        padding: 7px 10px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== FIX VISIBILITY (AOS Fallback) ===== */
/* Si AOS ne se charge pas ou que les images sont blanches */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* On laisse quand même une petite transition fluide au défilement */
.aos-animate {
    animation: fadeIn 0.8s ease-out forwards;
}

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