/* Menu Page Styles */

.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 80px;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    background-image: 
        url('images/food-spread-1.jpg'),
        linear-gradient(135deg, rgba(26, 77, 46, 0.85) 0%, rgba(15, 40, 24, 0.95) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    max-width: 800px;
    padding: 4rem;
    margin-left: 2rem;
}

.header-subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.header-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.header-content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
}

.menu-nav-wrapper {
    position: sticky;
    top: 80px;
    background: var(--white);
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow);
    margin-top: 0;
}

.menu-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-nav::-webkit-scrollbar {
    display: none;
}

.menu-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-nav-link:hover,
.menu-nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.menu-section {
    padding: 5rem 0;
    background: var(--cream);
}

.menu-section.alt {
    background: var(--white);
}

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

.menu-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.menu-section.alt .menu-item {
    background: var(--cream);
}

.menu-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.menu-item.featured {
    border-color: var(--accent);
}

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

.item-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    flex: 1;
    margin: 0;
}

.price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.3rem;
    white-space: nowrap;
    background: var(--accent-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.description {
    color: var(--text-medium);
    line-height: 1.6;
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 1rem;
}

.badge.veg {
    background: var(--primary);
    color: var(--white);
}

/* Sunday Roast Section */
.roast-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.roast-section .section-label {
    color: var(--accent);
}

.roast-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.roast-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.roast-content p {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.roast-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.roast-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.roast-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.roast-item h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.roast-item p {
    color: var(--cream-dark);
    margin-bottom: 1rem;
}

.roast-item .price {
    font-size: 1.5rem;
    display: block;
}

.note {
    background: rgba(196, 154, 60, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    margin-top: 2rem;
}

/* Drinks Section */
.drinks-section {
    background: var(--cream);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.drink-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.drink-category h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.category-description {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.drink-list {
    list-style: none;
}

.drink-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.drink-list li:last-child {
    border-bottom: none;
}

.drink-name {
    color: var(--text-dark);
    font-weight: 500;
}

.drink-price {
    color: var(--accent);
    font-weight: 600;
}

.drinks-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-medium);
    font-style: italic;
}

/* Allergen Notice */
.allergen-notice {
    background: var(--primary);
    padding: 3rem 0;
}

.notice-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.notice-content h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.notice-content p {
    color: var(--cream);
}

/* Responsive */
@media (max-width: 968px) {
    .menu-grid,
    .roast-options,
    .drinks-grid {
        grid-template-columns: 1fr;
    }

    .menu-nav {
        gap: 1.5rem;
        padding: 1rem 2rem;
    }

    .menu-item {
        text-align: center;
    }

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

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

    .header-content {
        padding: 2rem;
        margin-left: 1rem;
        text-align: center;
    }

    .header-subtitle {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .page-header {
        height: 50vh;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }
}
