/* ===== Neobeat Bunny Shack Menu Page ===== */

/* Menu Hero */
.menu-hero {
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.92), rgba(26, 26, 46, 0.88)),
                url('images/section-4.jpg') center/cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}

.menu-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #fff;
}

.menu-hero-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #e00231;
    margin: 15px auto 0;
}

.menu-hero-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Menu Section */
.menu-section {
    background: #0d0d1a;
    padding-bottom: 80px;
}

.menu-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #e00231;
    margin-top: 8px;
}

.category-desc {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Menu Item Card */
.menu-item {
    background: #1a1a2e;
    border: 1px solid #2a2a3e;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    border-color: #e00231;
    box-shadow: 0 8px 25px rgba(224, 2, 49, 0.15);
}

.menu-item-info {
    flex: 1;
}

.menu-item-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
}

.menu-item-info p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e00231;
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-hero-content h1 {
        font-size: 2rem;
    }

    .menu-item {
        padding: 16px 18px;
    }

    .category-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        padding: 80px 0 40px;
    }

    .menu-hero-content h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .menu-item {
        flex-direction: column;
        gap: 8px;
    }

    .menu-item-price {
        align-self: flex-end;
    }
}
