/* Menu Page Styles */

/* Menu Pages */
.menu-hero,
.events-hero,
.reservations-hero {
    padding: 6rem 0 4rem 0;
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-hero::before,
.events-hero::before,
.reservations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 135, 26, 0.1) 0%, rgba(168, 135, 26, 0.05) 100%);
    z-index: 1;
}

.menu-title,
.events-title,
.reservations-title {
    font-family: 'Gilda Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--very-dark-green);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-subtitle,
.events-subtitle,
.reservations-subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Menu Navigation */
.menu-nav {
    background: var(--primary-green);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-logo h1 {
    color: var(--very-dark-green) !important;
    font-family: 'Gilda Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    border-radius: 25px;
}

.menu-tab.active,
.menu-tab:hover {
    background: #A8871A;
    color: var(--white);
    border-color: #A8871A;
}

/* Menu Content */
.menu-content {
    padding: 4rem 0;
    background: var(--primary-green);
    position: relative;
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
}

.section-title {
    font-family: 'Gilda Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--very-dark-green);
}

.section-subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(168, 135, 26, 0.1) 0%, rgba(168, 135, 26, 0.05) 100%);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(168, 135, 26, 0.2);
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 135, 26, 0.1), transparent);
    transition: left 0.6s ease;
}

.section-subtitle:hover::before {
    left: 100%;
}

.section-subtitle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 135, 26, 0.2);
    border-color: rgba(168, 135, 26, 0.4);
}

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

.menu-item {
    background: var(--primary-green);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
    transform: translateY(-3px);
}

.item-name {
    font-family: 'Gilda Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--very-dark-green);
}

.item-description {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
}

/* CTA Section */
.menu-cta {
    padding: 4rem 0;
    background: var(--very-dark-green);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Gilda Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #A8871A;
}

/* Responsive Design for Menu */
@media (max-width: 768px) {

    .menu-hero,
    .events-hero,
    .reservations-hero {
        background: var(--primary-green) !important;
        padding: 6rem 0 3rem 0;
        padding-top: 120px;
    }

    .menu-content {
        background: var(--primary-green) !important;
    }

    .menu-tabs,
    .filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-tab,
    .filter-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .menu-item {
        padding: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {

    .menu-hero,
    .events-hero,
    .reservations-hero {
        background: var(--primary-green) !important;
        padding: 4rem 0 2rem 0;
        padding-top: 100px;
    }

    .menu-content {
        background: var(--primary-green) !important;
    }

    .menu-title,
    .events-title,
    .reservations-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .menu-subtitle,
    .events-subtitle,
    .reservations-subtitle {
        font-size: 1rem;
    }

    .menu-item {
        padding: 1rem;
    }

    .item-name {
        font-size: 1.1rem;
    }

    .item-description {
        font-size: 0.9rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        margin-bottom: 1.5rem;
        border-radius: 18px;
        line-height: 1.4;
    }
}

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {

    .menu-hero,
    .events-hero,
    .reservations-hero {
        padding: 5rem 0 3rem 0;
    }

    .menu-title,
    .events-title,
    .reservations-title {
        font-size: 3rem;
    }

    .menu-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .menu-tab {
        flex: 1;
        min-width: 200px;
        max-width: 250px;
    }

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

/* Large Phones */
@media (max-width: 480px) {

    .menu-hero,
    .events-hero,
    .reservations-hero {
        padding: 3rem 0 1.5rem 0;
        padding-top: 80px;
    }

    .menu-title,
    .events-title,
    .reservations-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .menu-subtitle,
    .events-subtitle,
    .reservations-subtitle {
        font-size: 1rem;
        max-width: 400px;
        line-height: 1.5;
    }

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

    .menu-nav {
        padding: 1rem 0;
    }

    .menu-tabs,
    .filter-tabs {
        padding: 0 0.5rem;
        gap: 0.3rem;
    }

    .menu-tab,
    .filter-tab {
        max-width: 280px;
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }

    .menu-tab small {
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }

    .menu-items {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }

    .menu-item {
        padding: 1rem;
        margin-bottom: 0.3rem;
    }

    .menu-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .menu-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .menu-price {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 0.5rem;
    }
}

/* Small Phones */
@media (max-width: 360px) {

    .menu-hero,
    .events-hero,
    .reservations-hero {
        padding: 2.5rem 0 1rem 0;
        padding-top: 70px;
    }

    .menu-title,
    .events-title,
    .reservations-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .menu-subtitle,
    .events-subtitle,
    .reservations-subtitle {
        font-size: 0.95rem;
        max-width: 350px;
    }

    .menu-content {
        padding: 1rem 0.3rem;
    }

    .menu-nav {
        padding: 0.8rem 0;
    }

    .menu-tabs,
    .filter-tabs {
        padding: 0 0.3rem;
    }

    .menu-tab,
    .filter-tab {
        max-width: 260px;
        padding: 0.6rem 0.7rem;
        font-size: 0.9rem;
    }

    .menu-tab small {
        font-size: 0.75rem;
    }

    .menu-items {
        padding: 0 0.3rem;
        gap: 0.6rem;
    }

    .menu-item {
        padding: 0.8rem;
    }

    .menu-item h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .menu-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

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

    .container {
        padding: 0 0.3rem;
    }
}