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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #e0f0e0 100%);
    overflow-x: hidden;
}

.menu-hero {
    position: relative;
    min-height: 80vh;
    height: 80vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.menu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://res.cloudinary.com/dzdinuw5d/image/upload/v1754036192/front-2_ggpeur.png') no-repeat center center/cover;
    z-index: -2;
}

.menu-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    width: 85%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    z-index: 1;
    color: #333;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #2f7b3e;
    display: block;
    margin-top: 0.3em;
}

.hero-content p {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
}

.menu-section {
    margin: 4rem 0;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #e9f4e9 0%, #d1e8d4 50%, #f5faf5 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: url('https://res.cloudinary.com/dzdinuw5d/image/upload/v1754038926/WhatsApp_Image_2025-07-31_at_6.28.54_PM_1_tiivhu.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: -1;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.menu-section h2 {
    font-size: 2.3rem;
    color: #1e3a2e;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #2f7b3e, #4a9c5c);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { width: 40px; }
    100% { width: 60px; }
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.menu-row {
    display: contents;
}

.menu-row.long-menu .menu-category {
    min-height: 550px;
}

.menu-row.short-menu .menu-category {
    min-height: 250px;
}

.menu-category {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, #2f7b3e, #4a9c5c) 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 123, 62, 0.15);
}

.menu-category h3 {
    font-size: 1.7rem;
    color: #2f7b3e;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    padding: 0.5rem 0.8rem;
    background: linear-gradient(90deg, rgba(47, 123, 62, 0.1), rgba(47, 123, 62, 0.05));
    border-radius: 8px;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
} 

.menu-item-list {
    list-style: none;
    padding: 0 0.8rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(209, 232, 212, 0.8);
    transition: transform 0.3s ease, background 0.3s ease;
}

.menu-item:hover {
    transform: translateX(5px);
    background: rgba(47, 123, 62, 0.05);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item span {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-item:hover span {
    color: #1e3a2e;
}

.menu-item .price {
    font-weight: 600;
    color: #1e3a2e;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.menu-item:hover .price {
    color: #2f7b3e;
}

.cta-section {
    margin: 4rem auto;
    padding: 3rem 2rem;
    max-width: 900px;
    background: linear-gradient(135deg, #2f7b3e, #1e3a2e);
    text-align: center;
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-family: 'Great Vibes', cursive;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.cta-button {
    padding: 15px 35px;
    background: white;
    color: #2f7b3e;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@media (min-width: 1200px) {
    .menu-hero {
        min-height: 85vh;
        height: 85vh;
    }

    .hero-content {
        padding: 2.5rem;
    }

    .hero-content h1 {
        font-size: 4.2rem;
    }

    .hero-content h1 span {
        font-size: 4.8rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .menu-section {
        padding: 3rem 2rem;
    }

    .menu-section h2 {
        font-size: 2.5rem;
    }

    .menu-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .menu-row.long-menu .menu-category {
        min-height: 500px;
    }

    .menu-row.short-menu .menu-category {
        min-height: 220px;
    }

    .menu-category {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .menu-category h3 {
        font-size: 1.65rem;
        margin-bottom: 0.8rem;
        padding: 0.4rem 0.7rem;
    }

    .menu-item span, .menu-item .price {
        font-size: 0.95rem;
    }

    .menu-item {
        padding: 0.6rem 0;
    }

    .menu-item-list {
        padding: 0 0.6rem;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .menu-hero {
        min-height: 80vh;
        height: auto;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h1 span {
        font-size: 3.3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .menu-section h2 {
        font-size: 2.2rem;
    }

    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .menu-row.long-menu .menu-category,
    .menu-row.short-menu .menu-category {
        min-height: auto;
    }

    .menu-category h3 {
        font-size: 1.8rem;
    }

    .menu-item span, .menu-item .price {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .menu-hero {
        min-height: 70vh;
        height: auto;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content h1 span {
        font-size: 2.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .menu-section {
        padding: 2.5rem 1.5rem;
    }

    .menu-section h2 {
        font-size: 2rem;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .menu-row.long-menu .menu-category,
    .menu-row.short-menu .menu-category {
        min-height: auto;
    }

    .menu-category h3 {
        font-size: 1.6rem;
    }

    .menu-item {
        flex-direction: column;
        text-align: left;
    }

    .menu-item .price {
        margin-top: 0.5rem;
    }

    .menu-item span, .menu-item .price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        min-height: 95vh;
        height: auto;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h1 span {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .menu-section {
        margin: 3rem 0;
        padding: 2rem 1rem;
    }

    .menu-section h2 {
        font-size: 1.8rem;
    }

    .menu-category h3 {
        font-size: 1.5rem;
    }

    .menu-item span, .menu-item .price {
        font-size: 0.95rem;
    }
}