/* Menu Page Specific Styles */

.menu-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.menu-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Imperial Script', cursive;
}

.menu-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.menu-navigation {
    display: none; 
}


.full-menu {
    padding: 2rem 0;
    background: white;
}

.menu-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.menu-aside {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 2rem 0;

}

.aside-title {
    font-family: 'Imperial Script', cursive;
    font-size: 1.8rem;
    color: var(--dark-brown, #333);
    margin-bottom: 1.5rem;
    text-align: left;
}

.menu-nav-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-nav-tab {
    background: none;
    border: none;
    color: var(--dark-brown, #333);
    padding: 0.75rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    position: relative;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.menu-nav-tab:hover {
    color: var(--gold, #E4A622);
    border-left-color: var(--gold, #E4A622);
    padding-left: 1.5rem;
}

.menu-nav-tab.active {
    color: var(--gold, #E4A622);
    border-left-color: var(--gold, #E4A622);
    font-weight: 600;
    padding-left: 1.5rem;
}


.menu-content {
    flex: 1;
    min-width: 0;
}

.menu-section {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Imperial Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 0;
}

.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin-top: 0.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.menu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.menu-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card .price {
    color: var(--secondary-color, #E4A622);
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
}


.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.menu-card-header h3 {
    font-size: 1.3rem;
    color: var(--dark-brown, #333);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
}

.menu-card-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}


.menu-cta {
    background: var(--cream);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Imperial Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.menu-section.hidden {
    display: none;
}

body {
    margin: 0;
    padding-top: 90px;
}

@media (max-width: 992px) {
    .menu-container {
        flex-direction: column;
    }
    
    .menu-aside {
        width: 100%;
        position: static;
        order: -1;
        padding: 1.5rem 0;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 2rem;
    }
    
    .aside-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .menu-nav-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .menu-nav-tab {
        flex: none;
        min-width: 120px;
        text-align: center;
        padding: 0.5rem 0;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding-left: 0;
    }
    
    .menu-nav-tab:hover,
    .menu-nav-tab.active {
        border-left: none;
        border-bottom-color: var(--gold, #E4A622);
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-nav-tab {
        min-width: 100px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .menu-nav-tabs {
        gap: 0.5rem;
    }
    
    .menu-nav-tab {
        min-width: 80px;
        font-size: 0.8rem;
    }
}