/* Reset et variables */
:root {
    --primary-red: #415890;
    --dark-red: #3f4d5b;
    --light-red: #729aff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #212529;
    --text-gray: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    padding-top: 140px; /* Compensation pour header + navigation */
}

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

.section-padding {
    padding: 80px 0;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 70px; /* Hauteur fixe pour le header */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

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

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.5rem;
}

/* Navigation des catégories du menu */
.menu-navigation {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    position: fixed; /* Changé de sticky à fixed */
    top: 70px; /* Positionné juste en dessous du header */
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-categories {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: #007bff transparent;
    -webkit-overflow-scrolling: touch;
}

.menu-categories::-webkit-scrollbar {
    height: 4px;
}

.menu-categories::-webkit-scrollbar-track {
    background: transparent;
}

.menu-categories::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 2px;
}

.menu-category-btn {
    padding: 8px 16px;
    background: rgba(248, 249, 250, 0.8);
    border: 1.5px solid #e9ecef;
    border-radius: 20px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.85rem;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.menu-category-btn:hover {
    background: #e9ecef;
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-1px);
}

.menu-category-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    font-weight: 600;
}

/* Hero Section - Sans image */
.hero {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0; /* Supprimé car body a déjà le padding */
    color: var(--white);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-delivery {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-red);
    font-weight: 500;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-uber {
    background: #000000;
    color: var(--white);
}

.btn-uber:hover {
    background: #333333;
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    background: var(--light-gray);
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

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

.feature-card p {
    color: var(--text-gray);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    position: relative;
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--dark-gray), #2c3e50);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-description {
    margin: 1rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hours p, .contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary-red);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray);
}

/* Menu Hero Section */
.menu-hero {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    text-align: center;
    padding: 60px 0; /* Réduit car body a déjà le padding */
    margin-top: 0; /* Supprimé car body a déjà le padding */
}

.menu-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Style pour les sections de menu */
.menu-section {
    padding: 40px 0;
}

.menu-category {
    margin-bottom: 50px;
    scroll-margin-top: 140px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.menu-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-category-title {
    color: var(--dark-gray);
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    text-align: center;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    border-radius: 2px;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.menu-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.menu-item-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-item-header h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-right: 1rem;
}

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

.menu-item-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    align-self: flex-start;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--dark-gray), #2c3e50);
    color: var(--white);
    text-align: center;
    padding: 60px 0; /* Réduit car body a déjà le padding */
    margin-top: 0; /* Supprimé car body a déjà le padding */
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.quote {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-red);
    margin: 2rem 0;
    position: relative;
}

.quote i.fa-quote-left {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

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

.quote cite {
    font-weight: 600;
    color: var(--primary-red);
    font-style: normal;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Story Stats */
.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Values Section */
.values {
    background: var(--light-gray);
}

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

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

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

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

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

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Daily Life Section */
.daily-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    background: var(--primary-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
}

.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.philosophy-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    text-align: center;
    padding: 60px 0; /* Réduit car body a déjà le padding */
    margin-top: 0; /* Supprimé car body a déjà le padding */
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.contact-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Contact Items */
.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.contact-text p {
    color: var(--text-gray);
    line-height: 1.5;
}

.contact-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

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

/* Social Section */
.social-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.social-section h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.social-section p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    color: var(--white);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-link.tiktok {
    background: #000000;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Map Container */
.map-container h3 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.map-wrapper {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-actions {
    text-align: center;
}

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

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

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

.command-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

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

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

/* FAQ Section */
.faq {
    background: var(--light-gray);
}

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

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

.faq-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 120px; /* Réduit pour mobile */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Menu responsive */
    .menu-hero {
        padding: 40px 0;
    }
    
    .menu-hero h1 {
        font-size: 2.5rem;
    }
    
    .menu-navigation {
        top: 60px; /* Ajusté pour mobile */
        padding: 12px 0;
    }
    
    .menu-category-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
    
    .menu-category-title {
        font-size: 1.7rem;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .menu-item-header h3 {
        margin-right: 0;
    }
    
    /* About responsive */
    .about-hero {
        padding: 40px 0;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step:hover {
        transform: translateY(-5px);
    }
    
    /* Contact responsive */
    .contact-hero {
        padding: 40px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-container {
        order: -1;
    }
    
    .social-links-large {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .command-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 110px; /* Encore plus réduit pour très petits écrans */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 80vh;
    }
    
    /* Menu responsive */
    .menu-hero h1 {
        font-size: 2rem;
    }
    
    .menu-category-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .menu-category-title {
        font-size: 1.5rem;
    }
    
    .menu-item-image {
        height: 160px;
    }
    
    /* About responsive */
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .story-stats {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content h2 {
        font-size: 2rem;
    }
    
    .philosophy-text p {
        font-size: 1.1rem;
    }
    
    /* Contact responsive */
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content .hero-title {
    animation-delay: 0.2s;
}

.hero-content .hero-subtitle {
    animation-delay: 0.4s;
}

.hero-content .hero-delivery {
    animation-delay: 0.6s;
}

.hero-content .hero-buttons {
    animation-delay: 0.8s;
}

/* Cacher la barre de défilement mais garder le scroll fonctionnel */
.menu-categories {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.menu-categories::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Assurer que le conteneur ne montre jamais la barre */
.menu-categories {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Optionnel : améliorer l'apparence lors du scroll */
.menu-categories {
    scroll-behavior: smooth;
    cursor: grab;
}

.menu-categories:active {
    cursor: grabbing;
}

/* Indicateur visuel qu'il y a plus de contenu */
.menu-categories-container {
    position: relative;
}

.menu-categories-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-categories.scrollable + .menu-categories-container::after {
    opacity: 1;
}

/* ============================================
   STYLES POUR LES DEUX TAILLES DE PIZZAS - OPTION TABLEAU
   ============================================ */

/* Conteneur des prix pour deux tailles */
.dual-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    text-align: right;
}

/* Style pour chaque ligne de prix */
.price-line {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}

/* Style pour la taille (26cm/33cm) */
.size-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    background: var(--light-gray);
    padding: 3px 10px;
    border-radius: 15px;
    border: 1px solid var(--medium-gray);
    white-space: nowrap;
    text-align: center;
}

/* Style pour le montant */
.price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    white-space: nowrap;
}

/* Version desktop */
@media (min-width: 769px) {
    .dual-prices {
        min-width: 160px;
    }
    
    .price-line {
        justify-content: flex-end;
        width: 100%;
    }
    
    .size-label {
        min-width: 55px;
    }
    
    .price-amount {
        min-width: 75px;
        text-align: right;
    }
}

/* Version mobile - OPTION TABLEAU */
@media (max-width: 768px) {
    .menu-item-header {
        flex-wrap: wrap;
    }
    
    .menu-item-header h3 {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .dual-prices {
        display: table;
        width: 100%;
        margin-top: 0;
        border-spacing: 0;
        border-collapse: collapse;
    }
    
    .price-line {
        display: table-row;
    }
    
    .size-label, .price-amount {
        display: table-cell;
        padding: 8px 0;
        vertical-align: middle;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .price-line:last-child .size-label,
    .price-line:last-child .price-amount {
        border-bottom: none;
    }
    
    .size-label {
        text-align: left;
        width: 40%;
        font-size: 0.85rem;
        padding-right: 15px;
        background: none;
        border: none;
        border-radius: 0;
        color: var(--dark-gray);
        font-weight: 600;
        padding-left: 0;
    }
    
    .price-amount {
        text-align: right;
        width: 60%;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-red);
        padding-right: 0;
    }
}

/* Ajustement pour les très petits écrans */
@media (max-width: 480px) {
    .size-label {
        font-size: 0.8rem;
        padding-right: 10px;
    }
    
    .price-amount {
        font-size: 1rem;
    }
    
    .size-label, .price-amount {
        padding: 6px 0;
    }
}

/* Section Information Livraison */
.delivery-info-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.delivery-info-card {
    text-align: center;
}

.delivery-info-text {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.flyer-link {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    margin-left: 5px;
    transition: var(--transition);
}

.flyer-link:hover {
    color: var(--dark-red);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .delivery-info-section {
        padding: 15px 0;
    }
    
    .delivery-info-text {
        font-size: 0.95rem;
    }
}