/* GEM LA GALETTE - Style principal optimisé - v20251004_35 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Variables CSS pour une meilleure maintenabilité */
:root {
    --color-primary: #00BFFF;
    --color-secondary: #ff6b35;
    --color-accent: #ff4444;
    --color-dark: #1a1a1a;
    --color-light: #ffffff;
    --color-text: #333333;
    --color-text-light: #555555;
    --color-background: #ffffff;
    --color-background-light: #f0f8ff;
    
    --font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
    --border-radius: 15px;
    --border-radius-small: 8px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    
    --breakpoint-mobile: 768px;
    --breakpoint-tablet: 1024px;
    --breakpoint-desktop: 1265px;
}

body {
    font-family: var(--font-family);
    margin: 0;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-background-light) 100%);
    color: var(--color-text);
    line-height: 1.6;
}
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
.sticky-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    box-shadow: none;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.sticky-header.scrolled {
    position: fixed;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sticky-header.scrolled .nav-menu li a {
    color: #000000;
}

.sticky-header .nav-menu li a {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.sticky-header .nav-menu li a:hover {
    color: #00BFFF;
}
.logo {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    max-width: 120px;
    width: 100%;
}

.logo img { 
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    max-height: 40px;
    max-width: 120px;
    width: 100%;
}

#logo-transparent {
    height: 40px;
    opacity: 1;
}

#logo-sticky {
    height: 40px;
    opacity: 0;
}

.sticky-header.scrolled #logo-transparent {
    opacity: 0;
}

.sticky-header.scrolled #logo-sticky {
    opacity: 1;
}
.nav-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-menu li a:hover {
    color: #00BFFF;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Styles pour le menu hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #00BFFF 0%, #0080FF 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animation hamburger */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop - Afficher le menu normal */
@media (min-width: 1266px) {
    .nav-menu {
        display: flex !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

/* Tablette et mobile - Afficher hamburger */
@media (max-width: 1265px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        position: absolute;
        right: 0;
        top: 35px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        width: 200px;
        border-radius: 8px;
        z-index: 999;
        padding: 8px 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .nav-menu li {
        margin: 2px 0;
    }
    
    .nav-menu li a {
        padding: 8px 14px;
        display: block;
        color: #000 !important;
        font-weight: 500;
        border-radius: 4px;
        transition: all 0.3s ease;
        font-size: 0.95em;
    }
    
    .nav-menu li a:hover {
        background: rgba(0, 191, 255, 0.1);
        color: #00BFFF !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .logo img {
        max-width: 100px;
    }
}

.footer {
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #000000 100%);
    color: #ffffff;
    padding: 60px 0 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00BFFF 0%, #ffffff 50%, #00BFFF 100%);
}
.footer-info img { margin-bottom: 12px; }

/* Footer Navigation avec Menu Déroulant */
.footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    position: relative;
}

/* Overlay sombre quand le menu est ouvert */
.footer-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(2px);
}

.footer-menu-dropdown.active .footer-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.footer-menu-dropdown {
    position: relative;
}

.footer-menu-toggle {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-small);
    padding: 12px 20px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.footer-menu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.footer-menu-toggle:hover::before {
    width: 100%;
    height: 100%;
}

.footer-menu-toggle:not(.active) {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 5px 15px rgba(0,0,0,0.1), 0 0 0 0 rgba(0,191,255,0.4);
    }
    50% { 
        box-shadow: 0 5px 15px rgba(0,0,0,0.1), 0 0 0 10px rgba(0,191,255,0);
    }
}

.footer-menu-toggle:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.footer-menu-toggle svg {
    transition: transform 0.3s ease;
}

.footer-menu-dropdown.active .footer-menu-toggle svg {
    transform: rotate(180deg);
}

.footer-menu-dropdown.active .footer-menu-toggle {
    background: var(--color-secondary);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.footer-menu-items {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), 0 5px 15px rgba(0,191,255,0.1);
    border: 2px solid rgba(0,191,255,0.1);
    min-width: 320px;
    max-height: 500px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    margin-bottom: 0;
    list-style: none;
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

.footer-menu-dropdown.active .footer-menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.footer-menu-items::-webkit-scrollbar {
    width: 6px;
}

.footer-menu-items::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
}

.footer-menu-items::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

.footer-menu-items::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

.footer-menu-items li {
    margin: 2px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

/* Animation staggerée pour l'apparition des éléments */
.footer-menu-dropdown.active .footer-menu-items li:nth-child(1) { animation: slideInLeft 0.3s ease 0.1s forwards; }
.footer-menu-dropdown.active .footer-menu-items li:nth-child(2) { animation: slideInLeft 0.3s ease 0.15s forwards; }
.footer-menu-dropdown.active .footer-menu-items li:nth-child(3) { animation: slideInLeft 0.3s ease 0.2s forwards; }
.footer-menu-dropdown.active .footer-menu-items li:nth-child(4) { animation: slideInLeft 0.3s ease 0.25s forwards; }
.footer-menu-dropdown.active .footer-menu-items li:nth-child(5) { animation: slideInLeft 0.3s ease 0.3s forwards; }
.footer-menu-dropdown.active .footer-menu-items li:nth-child(6) { animation: slideInLeft 0.3s ease 0.35s forwards; }
.footer-menu-dropdown.active .footer-menu-items li:nth-child(7) { animation: slideInLeft 0.3s ease 0.4s forwards; }
.footer-menu-dropdown.active .footer-menu-items li:nth-child(8) { animation: slideInLeft 0.3s ease 0.45s forwards; }
.footer-menu-dropdown.active .footer-menu-items li:nth-child(9) { animation: slideInLeft 0.3s ease 0.5s forwards; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-menu-items > li > a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    border-radius: 0 12px 12px 0;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.footer-menu-items > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
    z-index: -1;
}

.footer-menu-items > li > a:hover {
    color: white;
    border-left-color: var(--color-secondary);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0,191,255,0.3);
}

.footer-menu-items > li > a:hover::before {
    width: 100%;
}

.footer-menu-items > li > a:active {
    transform: translateX(8px) scale(0.98);
}

.footer-submenu-container {
    margin: 2px 0;
    position: relative;
}

.footer-submenu-title {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1em;
    border-left: 4px solid var(--color-primary);
    background: linear-gradient(135deg, rgba(0,191,255,0.1) 0%, rgba(0,191,255,0.05) 100%);
    margin: 0 10px;
    border-radius: 0 12px 12px 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
}

.footer-submenu-title::after {
    content: '▼';
    margin-left: auto;
    font-size: 0.8em;
    opacity: 0.7;
}

.footer-submenu {
    list-style: none;
    padding: 0;
    margin: 0 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    /* Le sous-menu est toujours visible quand le menu principal est ouvert */
}

.footer-submenu li {
    position: relative;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Animation immédiate pour le sous-menu */
.footer-menu-dropdown.active .footer-submenu li:nth-child(1) { animation: slideInUp 0.3s ease 0.6s forwards; }
.footer-menu-dropdown.active .footer-submenu li:nth-child(2) { animation: slideInUp 0.3s ease 0.7s forwards; }
.footer-menu-dropdown.active .footer-submenu li:nth-child(3) { animation: slideInUp 0.3s ease 0.8s forwards; }
.footer-menu-dropdown.active .footer-submenu li:nth-child(4) { animation: slideInUp 0.3s ease 0.9s forwards; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-submenu li::before {
    content: '›';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.footer-submenu li:hover::before {
    left: 20px;
    color: var(--color-secondary);
}

.footer-submenu li a {
    display: block;
    padding: 14px 20px 14px 45px;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    margin: 3px 8px;
    position: relative;
    overflow: hidden;
    min-height: 20px;
    line-height: 1.4;
}

.footer-submenu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
    z-index: -1;
}

.footer-submenu li a:hover {
    color: white;
    transform: translateX(10px) scale(1.05);
    box-shadow: 0 3px 10px rgba(0,191,255,0.4);
}

.footer-submenu li a:hover::before {
    width: 100%;
}

.footer-sitemap-link {
    margin-top: 15px;
}

.footer-sitemap-link a {
    color: white;
    text-decoration: none;
    font-size: 0.95em;
    padding: 8px 15px;
    border-radius: var(--border-radius-small);
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.footer-sitemap-link a:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-menu-items {
        min-width: 300px;
        left: 50%;
        bottom: 140px;
        transform: translateX(-50%);
        margin-left: 0;
        margin-right: 0;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .footer-menu-items {
        min-width: 280px;
        left: 50%;
        bottom: 160px;
        transform: translateX(-50%);
        margin-left: 0;
        margin-right: 0;
        max-height: 350px;
    }
    
    .footer-menu-dropdown.active .footer-menu-items {
        transform: translateX(-50%) translateY(0);
    }
}

.footer-social a img { width: 28px; margin: 0 8px; }
/* --- Foodo Theme Fidelity --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1em;
    box-shadow: 0 8px 25px rgba(0,191,255,0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    transform: translateY(-3px);
    border-color: #00BFFF;
}

.btn-small {
    padding: 8px 16px !important;
    font-size: 0.8em !important;
    min-width: 140px !important;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn:hover::before {
    left: 100%;
}
/* Slider Full Screen pour Crêpes Bretonnes */
.home-slider {
    position: relative;
    margin: 0;
    width: 100vw;
    height: 100vh;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.swiper-container {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
}
.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #00BFFF 0%, #000000 100%);
    overflow: hidden;
}
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,191,255,0.2) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.slide-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 60px 40px;
    max-width: 800px;
    z-index: 2;
    animation: slideInUp 1s ease-out;
}
.slide-caption h2 {
    font-size: 4.5em;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.1;
}
.slide-caption p {
    font-size: 1.6em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    opacity: 0.95;
    line-height: 1.4;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(255,255,255,0.5), 3px 3px 6px rgba(0,0,0,0.7);
    }
    to {
        text-shadow: 0 0 40px rgba(255,255,255,0.8), 0 0 50px rgba(0,191,255,0.8), 3px 3px 6px rgba(0,0,0,0.7);
    }
}

/* Styles esthétiques pour les contrôles du slider - Charte Cyan */
.swiper-button-next,
.swiper-button-prev {
    width: 70px !important;
    height: 70px !important;
    margin-top: -35px !important;
    background: linear-gradient(135deg, rgba(0,191,255,0.9) 0%, rgba(0,139,255,0.9) 100%) !important;
    border-radius: 50% !important;
    border: 3px solid rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 32px rgba(0,191,255,0.4), 0 4px 16px rgba(0,0,0,0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
}

.swiper-button-next::before,
.swiper-button-prev::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
    transform: translateX(100%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, #00BFFF 0%, #000000 100%) !important;
    transform: scale(1.15) rotate(5deg) !important;
    border-color: #00BFFF !important;
    box-shadow: 0 12px 40px rgba(0,191,255,0.6), 0 6px 20px rgba(0,0,0,0.3) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

.swiper-pagination {
    bottom: 50px !important;
    z-index: 10 !important;
    text-align: center !important;
    padding: 10px 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: absolute !important;
    margin: 0 auto !important;
}

.swiper-pagination-bullet {
    width: 16px !important;
    height: 16px !important;
    background: rgba(255,255,255,0.8) !important;
    border: 2px solid rgba(0,191,255,0.8) !important;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%) !important;
    border-color: #ffffff !important;
    transform: scale(1.3) !important;
    box-shadow: 0 4px 15px rgba(0,191,255,0.6) !important;
}

/* Responsive pour les puces de pagination */
@media (max-width: 768px) {
    .swiper-pagination {
        bottom: 30px !important;
        padding: 8px 0 !important;
    }
    
    .swiper-pagination-bullet {
        width: 14px !important;
        height: 14px !important;
        margin: 0 5px !important;
    }
}

@media (max-width: 480px) {
    .swiper-pagination {
        bottom: 20px !important;
        padding: 6px 0 !important;
    }
    
    .swiper-pagination-bullet {
        width: 12px !important;
        height: 12px !important;
        margin: 0 4px !important;
    }
}
/* Specials grid - Design moderne avec cartes élégantes - Charte Cyan */
.specials {
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.specials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00BFFF 0%, #ffffff 50%, #00BFFF 100%);
    z-index: 1;
}

.specials::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0,191,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}
.specials h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

/* Filtres de catégorie pour les spécialités */
.specialty-filters {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.specialty-filter-btn {
    background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
    color: #00BFFF;
    border: 2px solid #00BFFF;
    border-radius: 30px;
    padding: 15px 30px;
    margin: 0 10px 10px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,191,255,0.2);
    position: relative;
    overflow: hidden;
    font-size: 0.9em;
    display: inline-block;
    text-decoration: none;
    font-family: inherit;
}

.specialty-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00BFFF 0%, #000000 100%);
    transition: left 0.3s;
    z-index: -1;
}

.specialty-filter-btn.active::before,
.specialty-filter-btn:hover::before {
    left: 0;
}

.specialty-filter-btn.active,
.specialty-filter-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,191,255,0.4);
}

/* Menu déroulant mobile pour les spécialités */
.specialty-filter-select {
    display: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px auto;
    padding: 15px 20px;
    border: 2px solid #00BFFF;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
    color: #00BFFF;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,191,255,0.2);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%2300BFFF' viewBox='0 0 16 16'%3e%3cpath d='M8 13.1l4.7-4.7-1.4-1.4L8 10.3 4.7 7l-1.4 1.4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 50px;
    z-index: 100;
    position: relative;
    pointer-events: auto;
}

.mobile-only {
    display: none;
}

/* Animation pour masquer/afficher les éléments filtrés */
.special-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: scale(1);
    display: block;
}

.special-item.hidden {
    display: none;
}

/* Style spécifique aux catégories - Charte Cyan */
.special-item[data-category="galette"] {
    border-left: 4px solid #00BFFF;
}

.special-item[data-category="pate-kode"] {
    border-left: 4px solid #ff4444;
    background: linear-gradient(145deg, #fff8f8 0%, #fffafa 100%);
}

.special-item[data-category="crepe"] {
    border-left: 4px solid #000000;
}

.special-item[data-category="boisson"] {
    border-left: 4px solid #00BFFF;
}

/* Animation fluide pour la grille */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px 32px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    align-items: start;
    transition: all 0.3s ease;
}
.special-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.07);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,107,107,0.1);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.special-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,107,0.1), transparent);
    transition: left 0.6s;
}
.special-item:hover::before {
    left: 100%;
}
.special-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255,107,107,0.2), 0 10px 30px rgba(0,0,0,0.15);
    border-color: rgba(255,107,107,0.3);
}
.special-item img {
    width: 100%;
    max-width: 180px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}
.special-item:hover img {
    transform: scale(1.1) rotate(2deg);
}
.special-item h3 {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
}
.special-item p {
    font-size: 1em;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 400;
}
.special-item .price {
    display: inline-block;
    font-size: 1.4em;
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 50%, #0080FF 100%);
    color: #FFFFFF;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}
/* Menu page grid - Style moderne et attractif */
.menu-page {
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
}
.menu-filters {
    text-align: center;
    margin-bottom: 60px;
}
.filter-btn {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    border-radius: 30px;
    padding: 15px 30px;
    margin: 0 10px 10px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,107,107,0.2);
    position: relative;
    overflow: hidden;
}
.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    transition: left 0.3s;
    z-index: -1;
}
.filter-btn.active::before, .filter-btn:hover::before {
    left: 0;
}
.filter-btn.active, .filter-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.menu-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.07);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,107,107,0.1);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}
.menu-item:hover::after {
    opacity: 1;
}
.menu-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255,107,107,0.2), 0 10px 30px rgba(0,0,0,0.15);
    border-color: rgba(255,107,107,0.3);
}
.menu-item img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}
.menu-item:hover img {
    transform: scale(1.1) rotate(2deg);
}
.menu-item h3 {
    font-size: 1.6em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}
.menu-item p {
    font-size: 1em;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 400;
}
.menu-item .price {
    display: inline-block;
    font-size: 1.5em;
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 50%, #0080FF 100%);
    color: #FFFFFF;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive compact pour les blocs produits en mode mobile */
@media (max-width: 900px) {
  .special-item, .menu-item {
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: unset !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.25) !important;
    color: #fff !important;
    text-align: center !important;
  }
  .special-item:last-child, .menu-item:last-child {
    border-bottom: none !important;
  }
  .special-item h3, .menu-item h3 {
    display: inline-block;
    font-size: 1em !important;
    font-weight: 600 !important;
    margin: 0 !important;
    vertical-align: middle;
    color: #fff !important;
    text-align: center !important;
  }
  .special-item .price, .menu-item .price {
    display: inline-block;
    font-size: 1em !important;
    font-weight: 600 !important;
    margin-left: 12px !important;
    background: none !important;
    color: #00BFFF !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    vertical-align: middle;
    text-align: center !important;
  }
  .special-item p, .menu-item p {
    font-size: 0.9em !important;
    color: #fff !important;
    margin: 4px 0 0 0 !important;
    font-weight: 400 !important;
    text-align: center !important;
  }
  .special-item img, .menu-item img {
    display: none !important;
  }
}

/* Testimonials */
.testimonials {
    background: #fff;
    padding: 64px 0 32px 0;
}
.testimonials h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.testimonials-swiper {
    max-width: 700px;
    margin: 0 auto;
}
.testimonial-item {
    background: #f8f8f8;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 32px 24px;
    text-align: center;
}
.testimonial-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
}
blockquote {
    font-size: 1.1em;
    color: #222;
    margin-bottom: 12px;
    font-style: italic;
}
cite {
    font-size: 1em;
    color: #ff3c3c;
    font-weight: 600;
}
/* Contact page */
.contact-page {
    padding: 64px 0 32px 0;
    background: #f8f8f8;
}

/* Section Nos Formules - Design harmonisé */
.formules-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.formules-section .section-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}
.formules-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.formule-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.07);
    padding: 32px 28px 24px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,191,255,0.1);
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.formule-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,191,255,0.2), 0 10px 30px rgba(0,0,0,0.15);
    border-color: rgba(0,191,255,0.3);
}
.formule-card-content {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 18px;
    font-weight: 500;
    line-height: 1.5;
}
.formule-price {
    display: inline-block;
    font-size: 1.4em;
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 50%, #0080FF 100%);
    color: #FFFFFF;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.contact-whatsapp-simple {
    text-align: center;
    margin-top: 30px;
}

.contact-whatsapp-simple .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.contact-whatsapp-simple .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
}

.contact-whatsapp-simple .whatsapp-btn svg {
    width: 24px;
    height: 24px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1em;
    font-family: inherit;
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form button.btn {
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9em;
    box-shadow: 0 8px 25px rgba(0,191,255,0.4);
    transition: all 0.3s ease;
    margin: 0;
    align-self: flex-start;
}

/* Optimisation de l'espacement du formulaire de contact */
.contact-form form {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form button.btn:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}
.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
}
.map-section {
    margin-top: 32px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
/* About page */
.about-page {
    padding: 64px 0 32px 0;
    background: #fff;
}
.about-block {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    justify-content: center;
}
.about-img {
    width: 340px;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.about-text {
    max-width: 540px;
}
.about-text h2 {
    color: #ff3c3c;
    font-size: 1.3em;
    margin-top: 0;
}
.about-text ul {
    padding-left: 20px;
    margin-bottom: 18px;
}
.about-text li {
    margin-bottom: 8px;
    font-size: 1em;
}
/* Éléments décoratifs modernes inspirés de l'image */
.decorative-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(255,167,38,0.1) 100%);
    border-radius: 50%;
    animation: floatBubble 8s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -3s;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

/* Améliorations du container principal */
.container {
    position: relative;
}

/* Styles pour les titres de section */
.section-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
    border-radius: 2px;
}

/* Style pour la mention d'ingrédient supplémentaire */
.supplement-info {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin: 15px 0 30px 0;
    font-style: italic;
    font-weight: 500;
}

/* Override pour la section novelty */
.novelty-section .section-title {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.novelty-section .section-title::after {
    background: #ffffff;
}

/* Override pour la section location */
.location-section .section-title {
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-section .section-title::after {
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
}

.location-section .section-subtitle {
    color: #333333;
}

.location-section .schedule-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,191,255,0.75) 100%);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.location-section .schedule-card h3 {
    color: #ffffff;
}

.location-section .schedule-item .day {
    color: #ffffff;
    font-weight: 700;
}

.location-section .schedule-item .location {
    color: #ffffff;
}

.location-section .schedule-item .time {
    color: #ffffff;
    font-weight: 700;
}

/* Override pour la section specials (fond sombre) */
.specials .section-title {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.specials .section-title::after {
    background: #ffffff;
}

/* Override pour la section presentation - même style que specials */
.presentation .section-title {
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.presentation .section-title::after {
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
}

/* Override pour la section testimonials - même style que specials */
.testimonials-section .section-title {
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-section .section-title::after {
    background: linear-gradient(135deg, #000000 0%, #00BFFF 100%);
}

/* Override pour la section contact - même style que location */
.contact-section .section-title {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

.contact-section .section-title::after {
    background: #ffffff;
}

/* Effets de scroll fluides */
html {
    scroll-behavior: smooth;
}

/* Section Présentation */
.presentation {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    position: relative;
}

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

.presentation-visual-centered {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.presentation-visual-centered .image-stack {
    width: 400px;
}

.presentation-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.presentation-text h3 {
    color: #00BFFF;
    font-size: 1.6em;
    margin-bottom: 25px;
    font-weight: 600;
}

.presentation-text p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #333333;
}

.quality-info {
    background: linear-gradient(135deg, #f8fdff 0%, #e8f7ff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid #00BFFF;
}

.quality-info h4 {
    color: #00BFFF;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-align: center;
}

.quality-info > p {
    margin-bottom: 15px;
    font-size: 1.1em;
    text-align: center;
}

.ingredients-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.ingredient-category h5 {
    color: #000000;
    font-size: 1.1em;
    margin-bottom: 10px;
    border-bottom: 2px solid #00BFFF;
    padding-bottom: 5px;
}

.ingredient-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredient-category li {
    padding: 5px 0;
    color: #333333;
    font-size: 1em;
}

.button-center {
    text-align: center;
    margin-top: 30px;
}

.features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.features-column-left,
.features-column-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
}

.features-column-left .feature-item,
.features-column-right .feature-item {
    flex: 1;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,191,255,0.1);
    border-left: 4px solid #00BFFF;
    transition: transform 0.3s ease;
    min-height: 220px;
    height: 100%;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.feature-item h4 {
    margin: 0 0 15px 0;
    color: #00BFFF;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.3;
}

.feature-item p {
    margin: 0;
    color: #666666;
    font-size: 0.95em;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.presentation-visual {
    position: relative;
}

.image-stack {
    position: relative;
    height: 400px;
}

.stack-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 2;
}

.stack-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,191,255,0.3);
    z-index: 1;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00BFFF 0%, #000000 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 8px 25px rgba(0,191,255,0.4);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}



/* Section Où nous retrouver */
.location-section {
    height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #ffffff 100%);
    color: #000000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/galette-img8.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: grayscale(100%);
    pointer-events: none;
    z-index: 0;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00BFFF 0%, #ffffff 50%, #00BFFF 100%);
    z-index: 2;
}

.location-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.location-content {
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    z-index: 1;
}

.schedule-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0,191,255,0.3);
    max-width: 600px;
    width: 100%;
}

.schedule-card h3 {
    color: #00BFFF;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 120px 140px 1fr;
    gap: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    align-items: center;
    border-left: 3px solid #00BFFF;
    margin-bottom: 10px;
}

.schedule-item.weekend {
    border-left-color: #ffffff;
    background: rgba(0,191,255,0.1);
}

.schedule-item .day {
    font-weight: 700;
    color: #00BFFF;
    font-size: 1.1em;
    min-width: 100px;
}

.schedule-item .time {
    font-size: 1em;
    color: #ffffff;
    font-weight: 600;
    min-width: 120px;
}

.schedule-item .location {
    color: #cccccc;
    font-size: 0.95em;
}

.location-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.foodtruck-illustration {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,191,255,0.3);
}

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

.location-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,191,255,0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.info-icon {
    font-size: 1.5em;
}

.info-item strong {
    color: #00BFFF;
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: #cccccc;
    font-size: 0.9em;
}

/* Section Nouveauté */
.novelty-section {
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.novelty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/kode-bckg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform-origin: center center;
    z-index: -2;
}

.novelty-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.novelty-section .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    margin-top: -20px;
}

.novelty-section .section-subtitle {
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.novelty-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.novelty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.novelty-text h3 {
    color: #FFFFFF;
    font-size: 1.6em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.novelty-highlight {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #00BFFF;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.novelty-highlight h4 {
    color: #000000;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.novelty-description {
    font-size: 1.1em;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 25px;
}

.ingredients-list h5 {
    color: #00BFFF;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.ingredients-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ingredients-list li {
    padding: 8px 0;
    color: #333333;
    font-size: 0.95em;
}

.price-novelty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    text-align: center;
}

.old-price {
    color: #999999;
    text-decoration: line-through;
    font-size: 1.2em;
}

.new-price {
    color: #00BFFF;
    font-size: 2em;
    font-weight: 800;
}

.offer-tag {
    background: linear-gradient(135deg, #ff4444 0%, #ff8888 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    box-shadow: 0 5px 15px rgba(255,68,68,0.4);
    display: inline-block;
}

/* Section Témoignages */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,191,255,0.1);
    border: 1px solid rgba(0,191,255,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,191,255,0.2);
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.05em;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,191,255,0.2);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: #000000;
    font-size: 1.1em;
}

.testimonial-author span {
    color: #00BFFF;
    font-size: 0.9em;
}

/* Section Qualité */
.quality-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fdff 0%, #e8f7ff 100%);
}

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

.quality-intro {
    text-align: center;
    margin-bottom: 50px;
}

.quality-intro p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333333;
}

.quality-intro p:last-child {
    font-size: 1.3em;
    color: #00BFFF;
    font-weight: 600;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ingredients-grid .ingredient-category {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #00BFFF;
}

.ingredients-grid .ingredient-category h3 {
    color: #00BFFF;
    font-size: 1.4em;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #00BFFF;
    padding-bottom: 10px;
}

.ingredients-grid .ingredient-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredients-grid .ingredient-category li {
    padding: 8px 0;
    color: #333333;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.ingredients-grid .ingredient-category li:last-child {
    border-bottom: none;
}

/* Section Événementiel */
.events-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/event-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.events-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.events-section .section-title {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.events-section .section-title::after {
    background: #ffffff;
}

.events-types {
    background: linear-gradient(135deg, #ff6b35, #ff9068);
    color: white;
    padding: 20px 30px;
    border-radius: 25px;
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.events-section .section-subtitle {
    color: #ffffff;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

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

.events-info {
    max-width: 900px;
    margin: 0 auto;
}

.event-requirement {
    background: rgba(0, 191, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.event-requirement p {
    margin: 10px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.formulas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.formula-card {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.formula-card h3 {
    color: #00BFFF;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-align: center;
}

.formula-price {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 10px;
    border-left: 4px solid #00BFFF;
}

.formula-price span {
    color: #00BFFF;
    font-weight: 800;
    font-size: 1.3em;
}

.choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.choice-section h4 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.1em;
    border-bottom: 2px solid #00BFFF;
    padding-bottom: 5px;
}

.choice-section ul {
    list-style: none;
    padding: 0;
}

.choice-section li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
    font-size: 0.95em;
}

.choice-section li:before {
    content: "🥞";
    margin-right: 10px;
}

.contact-cta {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.phone-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.phone-numbers a {
    color: #00BFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.phone-numbers a:hover {
    background: #00BFFF;
    color: #ffffff;
    transform: translateY(-2px);
}

.phone-numbers span {
    color: #ffffff;
    font-weight: 600;
}

/* Section Contact */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    text-align: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 40px;
    max-width: 600px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 350px;
    text-align: center;
    min-height: 120px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    width: 100%;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

/* En mode desktop, les boutons téléphone côte à côte */
@media (min-width: 768px) {
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        align-items: center;
    }
}

.contact-item h4 {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.contact-item p {
    margin: 0 0 12px 0;
    font-size: 0.95em;
    opacity: 1;
    color: #555;
}

.contact-item .btn-small {
    align-self: center;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-icon {
    font-size: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.contact-item p {
    margin: 0;
    color: #cccccc;
    line-height: 1.4;
}

/* Alignement centré pour la section Horaires */
.horaires-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.horaires-content h4 {
    margin: 0;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 40px 40px 10px 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,191,255,0.3);
    height: auto;
    overflow: hidden;
}

.form-group {
    margin-bottom: 15px;
}

.form-group:last-of-type {
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-start;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: #00BFFF;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0,191,255,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0,191,255,0.3);
}

.form-group select option {
    background: #333333;
    color: white;
}

/* Responsive amélioré */
@media (max-width: 1200px) {
    .slide-caption h2 {
        font-size: 3em;
    }
    .specials h2, .section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 900px) {
    .slide-caption h2 {
        font-size: 3.5em;
    }
    .slide-caption p {
        font-size: 1.4em;
        padding: 0 20px;
    }
    .slide-caption {
        padding: 40px 20px;
        max-width: 90%;
    }
    
    .slide-logo {
        height: 60px;
        margin-bottom: 20px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 60px !important;
        height: 60px !important;
        margin-top: -30px !important;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px !important;
    }
    
    .specialty-filters {
        display: none !important;
    }
    .specialty-filters-mobile {
        display: block !important;
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }
    .specialty-select {
        width: 80%;
        max-width: 320px;
        padding: 12px 18px;
        border-radius: 30px;
        border: 2px solid #00BFFF;
        background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
        color: #00BFFF;
        font-weight: 600;
        font-size: 1em;
        box-shadow: 0 4px 15px rgba(0,191,255,0.15);
        outline: none;
        margin: 0 auto;
        transition: border-color 0.3s;
    }
    .specialty-select:focus {
        border-color: #0080FF;
    }
    .specialty-filter-btn {
        min-width: 110px !important;
        font-size: 0.9em !important;
        padding: 8px 16px !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }
}

/* Adapte le background en desktop pour éviter les espaces vides */
@media (min-width: 701px) {
    .novelty-section::before {
        background-size: cover !important;
    }
}

@media (max-width: 700px) {
    /* Background mobile pour la section nouveauté */
    .novelty-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
               left: 0;
        right: 0;
    }
    
    .novelty-section::before {
        background-image: url('../images/kode-bckg-mobile.png');
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        background-size: cover;
    }
    
    .novelty-section .container {
        padding: 60px 15px;
        width: 100%;
        max-width: none;
    }
    
    .container { 
        padding: 0 15px; 
    }
    .about-block { 
        flex-direction: column; 
        gap: 30px; 
    }
    .about-img { 
        width: 100%; 
        height: 200px; 
    }
    .specials-grid, .menu-grid { 
        grid-template-columns: 1fr; 
        gap: 25px; 
    }
    .testimonials-swiper { 
        max-width: 100%; 
    }
    .slide-caption {
        padding: 30px 15px;
        max-width: 95%;
    }
    .slide-caption h2 {
        font-size: 2.5em;
        line-height: 1.2;
    }
    .slide-caption p {
        font-size: 1.1em;
        padding: 0 10px;
    }
    
    /* Centrer les boutons "Découvrir nos spécialités" en mode mobile */
    .slide-caption {
        text-align: center;
    }
    
    .presentation-visual-centered .image-stack {
        width: 300px;
    }
    
    .presentation-header {
        margin-bottom: 40px;
    }
    
    .presentation-text {
        text-align: center;
    }
    
    .features-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .features-column-left,
    .features-column-right {
        gap: 20px;
    }
    
    .specials h2, .section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .special-item, .menu-item {
        padding: 25px 20px;
    }
    
    /* Responsive nouvelles sections */
    .presentation-content,
    .location-content,
    .novelty-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-stack {
        height: 300px;
    }
    
    .stack-img-1 {
        width: 250px;
        height: 200px;
    }
    
    .stack-img-2 {
        width: 200px;
        height: 150px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns:  1fr;
        gap: 20px;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .ingredients-list ul {
        grid-template-columns: 1fr;
    }
    
    /* Section qualité responsive */
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .quality-section {
        padding: 60px 0;
       }
    
    .ingredients-grid .ingredient-category {
        padding: 20px;
    }
    
    .price-novelty {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    /* Centrer les informations de contact en mode mobile */
    .contact-items {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item .contact-icon {
        margin-bottom: 10px;
    }
    
    /* Formulaire de contact même largeur et centré en mode mobile */
    .contact-form {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 20px 15px;
        text-align: center;
        box-sizing: border-box;
    }
    
    .contact-form .form-group {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    
    .contact-form .form-group label {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Section événementiel responsive */
    .choices {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .phone-numbers {
        flex-direction: column;
        gap: 10px;
    }
    
    .formula-card {
        padding: 20px;
    }
}

/* ===== NOUVELLES FONCTIONNALITÉS ===== */

/* Barre de recherche et filtres */
.search-filter-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.search-bar {
    display: flex;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(0, 191, 255, 0.5);
    border-radius: 25px 0 0 25px;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    font-size: 1em;
    font-family: inherit;
    cursor: text;
    z-index: 10;
    position: relative;
}

.search-bar input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.search-bar input:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    background: rgba(255, 255, 255, 1);
}

.search-btn {
    padding: 15px 20px;
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    border: none;
    border-radius: 0 25px 25px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.price-filter {
    text-align: center;
    margin-top: 20px;
}

.price-filter label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.price-filter input[type="range"] {
    width: 200px;
    margin: 10px;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #00BFFF 0%, #00BFFF 100%, rgba(255,255,255,0.5) 100%);
    outline: none;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.price-filter input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #00BFFF;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.price-filter input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #00BFFF;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.results-counter {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

/* Actions header avec bouton d'appel */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.call-btn:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-color: #00BFFF;
    transform: translateY(-2px);
}

.call-text {
    display: none;
}

@media (min-width: 768px) {
    .call-text {
        display: inline;
    }
}

/* Navigation avec indicateurs actifs */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: #00BFFF !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00BFFF;
    border-radius: 1px;
}

/* Position en temps réel */
.live-location-card {
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

.live-location-card h3 {
    margin: 0 0 20px 0;
    font-size: 1.4em;
}

.current-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff3333;
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: #00ff41;
}

.status-info {
    text-align: left;
}

.current-location {
    display: block;
    font-weight: 700;
    font-size: 1.1em;
}

.next-move {
    display: block;
    opacity: 0.9;
    font-size: 0.9em;
}

.live-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call,
.btn-notify {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-call {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-notify {
    background: rgba(255, 255, 255, 0.9);
    color: #00BFFF;
}

.btn-call:hover,
.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.schedule-item.current {
    background: rgba(0, 191, 255, 0.2);
    border-left-color: #00ff41;
}

/* Histoire des recettes */
.recipes-history {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fdff 0%, #e8f7ff 100%);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.history-timeline {
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00BFFF;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-icon {
    font-size: 2em;
    background: white;
    padding: 10px;
    border-radius: 50%;
    border: 3px solid #00BFFF;
    z-index: 1;
}

.timeline-content h3 {
    color: #00BFFF;
    font-size: 1.2em;
    margin: 0 0 5px 0;
}

.timeline-content h4 {
    color: #000000;
    font-size: 1.1em;
    margin: 0 0 10px 0;
}

.timeline-content p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.recipe-secrets h3 {
    color: #00BFFF;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
}

.secrets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.secret-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #00BFFF;
}

.secret-item h4 {
    color: #00BFFF;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.secret-item p {
    color: #666666;
    margin: 0;
    font-size: 0.9em;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.faq-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-cat-btn {
    background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
    color: #00BFFF;
    border: 2px solid #00BFFF;
    border-radius: 25px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9em;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    color: white;
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f0f8ff;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #00BFFF;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    color: #666666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.btn-popup {
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-popup:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

/* Popup Allergènes */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #666666;
    line-height: 1;
}

.popup-close:hover {
    color: #ff3333;
}

.popup-content h3 {
    color: #00BFFF;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5em;
}

.allergens-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.allergen-item {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid;
}

.allergen-item.danger {
    background: #ffeaea;
    border-color: #ff4444;
}

.allergen-item.warning {
    background: #fff8e1;
    border-color: #ffa726;
}

.allergen-item.info {
    background: #e8f5e8;
    border-color: #66bb6a;
}

.allergen-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}

.allergen-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.allergen-item p {
    margin: 0;
    font-size: 0.9em;
    color: #666666;
}

.allergen-note {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #00BFFF;
}

.allergen-note h4 {
    color: #00BFFF;
    margin: 0 0 10px 0;
}

.allergen-note p {
    margin: 5px 0;
    color: #333333;
}

/* Responsive pour nouvelles fonctionnalités */
@media (max-width: 768px) {
    /* Menu déroulant spécialités visible sur mobile */
    .specialty-filter-select.mobile-only {
        display: block;
    }
    
    /* Masquer les boutons de filtres sur mobile */
    .specialty-filters {
        display: none;
    }

    .search-filter-container {
        padding: 20px 15px;
    }
    
    .search-bar {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    
    .search-bar input {
        border-radius: 25px;
    }
    
    .search-btn {
        border-radius: 25px;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-categories {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }
    
    .faq-cat-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .secrets-grid {
        grid-template-columns: 1fr;
    }
    
    .allergens-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        margin-bottom: 30px;
    }
    
    .history-timeline::before {
        left: 25px;
    }
    
    .header-actions {
        gap: 10px;
    }
}

/* ===== BOUTON RETOUR EN HAUT ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099cc 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #0099cc 0%, #007aa3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
}

.back-to-top:active {
    transform: translateY(0);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* OPTIMISATIONS FOOTER MOBILE */
@media (max-width: 768px) {
    footer {
        padding: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-content > div {
        margin: 0 auto;
    }
    
    .footer-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-content p, 
    .footer-content address {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-content address {
        font-style: normal;
    }

    /* Planning mobile responsive */
    .schedule-item {
        grid-template-columns: 100px 110px 1fr;
        gap: 8px;
        font-size: 0.9rem;
    }
    
    .schedule-item .day {
        font-size: 0.85rem;
    }
    
    .schedule-item .time {
        font-size: 0.85rem;
    }
    
    .schedule-item .location {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Planning card mobile */
    .schedule-card {
        margin: 15px 0;
        padding: 15px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .schedule-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .schedule-list {
        max-width: 100%;
        overflow: hidden;
    }

    /* Section "nous retrouver" mobile spacing */
    .location-section {
        margin-top: 40px;
        margin-bottom: 40px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
