/* Menu Page Specific Styles */

.menu-main {
    padding-top: 100px;
}

/* Hero Section */
.menu-hero {
    padding: 100px 0 60px;
    background: linear-gradient(to bottom, rgba(16, 12, 8, 0), var(--bg-deep));
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Category Layout */
.menu-grid-container {
    padding-bottom: 120px;
}

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

.category-header {
    margin-bottom: 50px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cat-label {
    font-family: 'Sora', sans-serif;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 15px;
}

.category-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Menu Items (Premium Showcase) */
.menu-item-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: border-color 0.4s ease;
}

@media (min-width: 768px) {
    .menu-item-premium {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
}

.menu-item-premium:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.item-img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .item-img-box {
        width: 350px;
        height: 250px;
        flex-shrink: 0;
    }
}

.item-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item-premium:hover .item-img-box img {
    transform: scale(1.05);
}

.item-details {
    flex-grow: 1;
    padding-top: 10px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.item-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.item-price {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.item-details p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Scroll Indicators or Background Elements */
.menu-category::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    margin: 80px auto 0;
    opacity: 0.3;
}
