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

:root {
    --primary: #ff226b;
    --white: #ffffff;
    --dark: #1a1a1a;
    --light-gray: #f5f5f5;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== HEADER ===== */
.header {
    background: var(--dark);
    color: var(--white);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--white); /* Force la couleur blanche */
}

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

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1);
    transition: var(--transition);
}

.logo:hover .logo-img {
    filter: brightness(1.2);
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: var(--white); /* Force aussi ici */
}


.nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

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

.mobile-nav {
    display: none;
    background: var(--dark);
    border-bottom: 2px solid var(--primary);
    flex-direction: column;
    gap: 0;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    transition: var(--transition);
}

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

/* ===== MAIN ===== */
.main {
    min-height: 60vh;
    padding: 60px 20px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 400px; /* Augmenté de 300px à 400px pour plus d'espace */
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 40px;
    color: var(--white);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.hero-overlay h1 {
    font-size: 56px; /* Grand sur PC */
    margin-bottom: 15px;
    animation: slideInUp 0.8s ease-out 0.2s both;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    letter-spacing: -1px;
}

.hero-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.hero-overlay p {
    font-size: 18px;
    opacity: 0.95;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 250px;
    }
    
    .hero-overlay {
        padding: 30px;
    }
    
    .hero-overlay h1 {
        font-size: 28px;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .hero-logo {
        width: 40px;
        height: 40px;
    }
    
    .hero-overlay p {
        font-size: 14px;
    }
}


/* ===== CALENDRIER ===== */
.calendar {
    background: linear-gradient(135deg, var(--light-gray) 0%, #fafafa 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: fadeInScale 0.8s ease-out 0.3s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.calendar h2 {
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 28px;
}

.event {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: slideInLeft 0.6s ease-out backwards;
}

.event:nth-child(1) { animation-delay: 0.4s; }
.event:nth-child(2) { animation-delay: 0.5s; }
.event:nth-child(3) { animation-delay: 0.6s; }
.event:nth-child(4) { animation-delay: 0.7s; }
.event:nth-child(5) { animation-delay: 0.8s; }

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

.event:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 34, 107, 0.15);
}

.event-info h3 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 18px;
}

.event-info p {
    color: #666;
    font-size: 14px;
}

.event-link {
    background: linear-gradient(135deg, var(--primary) 0%, #e01a5a 100%);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 34, 107, 0.3);
    white-space: nowrap;
}

.event-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 34, 107, 0.4);
}

.event-link:active {
    transform: translateY(-1px);
}

/* ===== MENU ===== */
.menu-section {
    margin: 50px 0;
    animation: fadeInScale 0.8s ease-out backwards;
}

.menu-section:nth-of-type(1) { animation-delay: 0.2s; }
.menu-section:nth-of-type(2) { animation-delay: 0.3s; }
.menu-section:nth-of-type(3) { animation-delay: 0.4s; }

.menu-section h2 {
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
    font-size: 26px;
    position: relative;
}

.menu-section h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--dark);
    animation: expandWidth 0.8s ease-out forwards;
}

@keyframes expandWidth {
    to {
        width: 100%;
    }
}

.menu-item {
    background: var(--light-gray);
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-left: 4px solid transparent;
    animation: slideInRight 0.6s ease-out backwards;
}

.menu-item:nth-child(1) { animation-delay: 0.2s; }
.menu-item:nth-child(2) { animation-delay: 0.3s; }
.menu-item:nth-child(3) { animation-delay: 0.4s; }
.menu-item:nth-child(4) { animation-delay: 0.5s; }
.menu-item:nth-child(5) { animation-delay: 0.6s; }

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

.menu-item:hover {
    background: var(--white);
    border-left-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.menu-item-name {
    font-weight: 600;
    color: var(--dark);
}

.menu-item-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 20px 30px;
    margin-top: 80px;
}

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

.footer-content {
    animation: fadeInUp 0.8s ease-out backwards;
}

.footer-content:nth-child(1) { animation-delay: 0.2s; }
.footer-content:nth-child(2) { animation-delay: 0.3s; }

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

.footer-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 18px;
}

.footer-content p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-content a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

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

.footer-content a:hover {
    text-decoration: none;
