/* ==========================================
   MATTYLAK - CHARTE GRAPHIQUE
   ========================================== */

/* Import des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@300;400;900&family=Roboto:wght@300;400;500;700&display=swap');

/* ==========================================
   VARIABLES CSS
   ========================================== */
:root {
    /* Couleurs principales */
    --bleu-mattylak: #263782;
    --rouge-mattylak: #DF1019;
    --blanc: #FFFFFF;
    --gris-clair: #F5F5F5;
    --gris-moyen: #666666;
    --gris-fonce: #333333;
    
    /* Polices */
    --font-titres: 'Londrina Solid', sans-serif;
    --font-textes: 'Roboto', sans-serif;
    
    /* Espacements */
    --padding-section: 80px 20px;
    --padding-mobile: 40px 15px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-textes);
    color: var(--gris-fonce);
    line-height: 1.6;
    background-color: var(--blanc);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titres);
    font-weight: 400;
    color: var(--bleu-mattylak);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ==========================================
   BANDE ROUGE DECORATIVE (top)
   ========================================== */
.bande-rouge-top {
    height: 8px;
    background-color: var(--rouge-mattylak);
    width: 100%;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
    background-color: var(--bleu-mattylak);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1002;
}

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

.logo-header {
    height: 60px;
    max-width: 120px;
    object-fit: contain;
    transition: var(--transition);
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--blanc);
    font-family: var(--font-titres);
    font-size: 1.4rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--rouge-mattylak);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 80%;
}

nav a:hover {
    color: var(--rouge-mattylak);
}

/* Menu burger pour mobile */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
    padding: 10px;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--blanc);
    transition: var(--transition);
    display: block;
}

/* ==========================================
   HERO SECTION (Page d'accueil)
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--bleu-mattylak) 0%, #1a2860 100%);
    color: var(--blanc);
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--blanc);
    margin-bottom: 20px;
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--rouge-mattylak);
    color: var(--blanc);
    padding: 15px 40px;
    font-family: var(--font-titres);
    font-size: 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(223, 16, 25, 0.4);
    transition: var(--transition);
    margin-bottom: 40px;
}

.cta-button:hover {
    background-color: #b00d15;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(223, 16, 25, 0.6);
}

/* ==========================================
   CARROUSEL DE PHOTOS
   ========================================== */

/* ==========================================
   SECTION PRÃƒÆ’Ã¢â‚¬Â°SENTATION
   ========================================== */
.presentation {
    padding: var(--padding-section);
    max-width: 1200px;
    margin: 0 auto;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.presentation-text h2 {
    margin-bottom: 25px;
}

.presentation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gris-moyen);
    margin-bottom: 20px;
}

.presentation-text .highlight {
    color: var(--rouge-mattylak);
    font-weight: 500;
}

.presentation-image {
    position: relative;
}

.presentation-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.presentation-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

/* ==========================================
   SECTION SPÃƒÆ’Ã¢â‚¬Â°CIALITÃƒÆ’Ã¢â‚¬Â°S (3 colonnes)
   ========================================== */
.specialites {
    padding: var(--padding-section);
    background-color: var(--gris-clair);
}

.specialites h2 {
    text-align: center;
    margin-bottom: 60px;
}

.specialites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.specialite-card {
    background: var(--blanc);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.specialite-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.specialite-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.specialite-card p {
    color: var(--gris-moyen);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */
.bande-rouge-bottom {
    height: 8px;
    background-color: var(--rouge-mattylak);
    width: 100%;
}

footer {
    background-color: var(--bleu-mattylak);
    color: var(--blanc);
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--blanc);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: var(--rouge-mattylak);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

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

.social-links a:hover {
    background-color: var(--rouge-mattylak);
    transform: translateY(-5px);
}

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

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@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);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablettes */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    nav ul {
        gap: 25px;
    }
    
    nav a {
        font-size: 1.2rem;
    }
    
    .presentation-grid,
    .specialites-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .logo-header {
        height: 50px;
    }
    
    /* Menu burger mobile */
    .burger-menu {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background-color: var(--bleu-mattylak);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: 5px 0 20px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav a {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .carousel-slide img {
        height: 400px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .presentation,
    .specialites,
    .carousel-section {
        padding: var(--padding-mobile);
    }
    
    .specialites-grid {
        gap: 30px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1.3rem;
    }
}

/* TrÃƒÆ’Ã‚Â¨s petits ÃƒÆ’Ã‚Â©crans */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ==========================================
   PAGE LOCALISATION - Google Calendar & Maps
   ========================================== */

/* Section ÃƒÆ’Ã‚Â©vÃƒÆ’Ã‚Â©nements + carte cÃƒÆ’Ã‚Â´te ÃƒÆ’Ã‚Â  cÃƒÆ’Ã‚Â´te */
.events-map-section {
    padding: var(--padding-section);
    background-color: var(--blanc);
}

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

.section-title {
    text-align: center;
    color: var(--bleu-mattylak);
    margin-bottom: 40px;
}

.events-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Colonne ÃƒÆ’Ã‚Â©vÃƒÆ’Ã‚Â©nements */
.events-column {
    background: var(--gris-clair);
    padding: 30px;
    border-radius: 15px;
    max-height: 800px;
    overflow-y: auto;
}

/* Colonne carte */
.map-column {
    position: sticky;
    top: 100px;
}

.map-title {
    color: var(--bleu-mattylak);
    font-family: var(--font-titres);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.map-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--gris-moyen);
    margin-bottom: 20px;
}

.loading-message,
.no-events-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--gris-moyen);
}

.loading-message i,
.no-events-message i {
    font-size: 3rem;
    color: var(--bleu-mattylak);
    margin-bottom: 20px;
    display: block;
}

.no-events-message p {
    font-size: 1.1rem;
    margin: 10px 0;
}

/* Liste d'ÃƒÆ’Ã‚Â©vÃƒÆ’Ã‚Â©nements (en colonne) */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Carte d'ÃƒÆ’Ã‚Â©vÃƒÆ’Ã‚Â©nement */
.event-card {
    background: var(--blanc);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(38, 55, 130, 0.2);
    border-color: var(--bleu-mattylak);
}

/* Statut de l'ÃƒÆ’Ã‚Â©vÃƒÆ’Ã‚Â©nement */
.event-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-today {
    background-color: var(--rouge-mattylak);
    color: var(--blanc);
}

.status-tomorrow {
    background-color: #FF8C00;
    color: var(--blanc);
}

.status-soon {
    background-color: var(--bleu-mattylak);
    color: var(--blanc);
}

/* IcÃƒÆ’Ã‚Â´ne ÃƒÆ’Ã‚Â©vÃƒÆ’Ã‚Â©nement */
.event-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bleu-mattylak), #1a2860);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.event-icon i {
    font-size: 1.8rem;
    color: var(--blanc);
}

/* Titre ÃƒÆ’Ã‚Â©vÃƒÆ’Ã‚Â©nement */
.event-title {
    font-family: var(--font-titres);
    color: var(--bleu-mattylak);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* DÃƒÆ’Ã‚Â©tails ÃƒÆ’Ã‚Â©vÃƒÆ’Ã‚Â©nement */
.event-details {
    margin-bottom: 20px;
}

.event-details p {
    margin: 10px 0;
    color: var(--gris-moyen);
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-details i {
    color: var(--rouge-mattylak);
    width: 20px;
}

.event-date {
    font-weight: bold;
    color: var(--bleu-mattylak);
}

.event-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Bouton ÃƒÆ’Ã‚Â©vÃƒÆ’Ã‚Â©nement */
.event-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: var(--rouge-mattylak);
    color: var(--blanc);
    border: none;
    border-radius: 25px;
    font-family: var(--font-titres);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.event-btn:hover {
    background-color: #b00d15;
    transform: scale(1.05);
}

/* Section carte Google Maps */
.map-section {
    padding: var(--padding-section);
    background-color: var(--gris-clair);
}

.map-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gris-moyen);
    margin-bottom: 30px;
}

/* Google Map */
.google-map {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

/* LÃƒÆ’Ã‚Â©gende de la carte */
.map-legend {
    background: var(--blanc);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.map-legend p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gris-moyen);
}

.map-legend i {
    font-size: 1.2rem;
}

/* Section contact rapide */
.quick-contact {
    padding: var(--padding-section);
    background: linear-gradient(135deg, var(--bleu-mattylak) 0%, #1a2860 100%);
    color: var(--blanc);
}

.quick-contact h2 {
    color: var(--blanc);
    text-align: center;
    margin-bottom: 50px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--blanc);
    color: var(--bleu-mattylak);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(223, 16, 25, 0.3);
    color: var(--rouge-mattylak);
}

.contact-card i {
    font-size: 3rem;
    color: var(--rouge-mattylak);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-family: var(--font-titres);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .google-map {
        height: 350px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Google Map Sidebar (cÃƒÆ’Ã‚Â´te ÃƒÆ’Ã‚Â  cÃƒÆ’Ã‚Â´te) */
.google-map-sidebar {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    background-color: #e5e3df;
}

/* Responsive cÃƒÆ’Ã‚Â´te ÃƒÆ’Ã‚Â  cÃƒÆ’Ã‚Â´te */
@media (max-width: 1024px) {
    .events-map-grid {
        grid-template-columns: 1fr;
    }
    
    .map-column {
        position: relative;
        top: 0;
    }
    
    .google-map-sidebar {
        height: 400px;
    }
}
/* ==========================================
   MENU DE LA SEMAINE - STYLE.CSS
   Ãƒâ‚¬ ajouter au fichier style.css
   ========================================== */

/* Section Menu de la Semaine */
.menu-semaine-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-header h2 {
    font-size: 2.5em;
    color: #263782;
    margin-bottom: 15px;
    font-family: 'Londrina Solid', cursive;
}

.menu-dates {
    font-size: 1.2rem;
    color: #DF1019;
    font-weight: bold;
    margin: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Grille des plats du menu (mÃƒÂªme style que la carte) */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
}

/* Carte plat (style identique ÃƒÂ  la page carte) */
.menu-plat-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.menu-plat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Image du plat */
.menu-plat-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Nom du plat */
.menu-plat-nom {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.menu-plat-nom h3 {
    font-size: 1.3rem;
    color: #263782;
    margin: 0;
    font-weight: bold;
    font-family: 'Londrina Solid', cursive;
}

/* Badge Best-seller / Signature */
.menu-badge-best-seller,
.menu-badge-signature {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #DF1019;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.menu-badge-signature {
    background: #263782;
}

.menu-badge-nouveau {
    background: #4CAF50;
}

/* Overlay au survol (comme la carte) */
.menu-plat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 55, 130, 0.95);
    color: white;
    padding: 20px;
    padding-top: 70px; /* Augmenté pour laisser place aux badges */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changé pour éviter le chevauchement */
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.menu-plat-card:hover .menu-plat-overlay {
    opacity: 1;
}

/* Badges viandes */
.menu-plat-viandes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 15px; /* Espace supplémentaire en haut */
}

.menu-badge-viande {
    background: white;
    color: #263782;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* IngrÃƒÂ©dients */
.menu-plat-ingredients {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
    color: white;
}

/* Infos (piquant, allergÃƒÂ¨nes) */
.menu-plat-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.menu-badge-piquant,
.menu-badge-allergene {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Message "Pas de menu" */
.menu-vide {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.menu-vide i {
    font-size: 4rem;
    color: #263782;
    opacity: 0.3;
    margin-bottom: 20px;
}

.menu-vide h3 {
    font-size: 1.8rem;
    color: #263782;
    margin-bottom: 15px;
}

.menu-vide p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Loading */
.menu-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.menu-loading i {
    font-size: 3rem;
    color: #263782;
    margin-bottom: 20px;
}

.menu-loading p {
    font-size: 1.2rem;
}

/* CTA */
.menu-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #263782;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border: 3px solid #263782;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button-secondary:hover {
    background: #263782;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(38, 55, 130, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .menu-plat-card {
        height: 350px;
    }
    
    .menu-plat-card img {
        height: 230px;
    }
    
    .menu-header h2 {
        font-size: 2rem;
    }
    
    .menu-dates {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-plat-card {
        height: 380px;
    }
}

/* ==========================================
   CARROUSEL INFINI HORIZONTAL
   ========================================== */
.carousel-infinite-section {
    padding: 0;
    background: transparent;
    margin: 40px 0;
    overflow: hidden;
}

.carousel-infinite-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to bottom, rgba(38, 55, 130, 0.03), rgba(38, 55, 130, 0.01));
}

.carousel-infinite-track {
    display: flex;
    gap: 0;
    animation: scroll-infinite 30s linear infinite;
    will-change: transform;
}

.carousel-infinite-track:hover {
    animation-play-state: paused;
}

.carousel-infinite-item {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

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

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

/* Animation de dÃ©filement infini */
@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-infinite-item {
        width: 300px;
        height: 250px;
    }
    
    .carousel-infinite-track {
        animation: scroll-infinite 40s linear infinite;
    }
}

@media (max-width: 480px) {
    .carousel-infinite-item {
        width: 250px;
        height: 200px;
    }
}

