:root {
    --bg-dark: #0a0c10;
    --bg-accent: #16181d;
    --gold: #c5a059;
    --gold-dim: #a68545;
    --text-white: #f8f9fa;
    --text-gray: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

.menu-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1544025162-d76694265947?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 12, 16, 0.8) 100%);
    z-index: 1;
}

.menu-hero .container {
    position: relative;
    z-index: 10;
}

.menu-container {
    padding: 12rem 0;
    background: var(--bg-dark);
}

.menu-tabs {
    margin-right: 200px;
    margin-left: 200px;
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 8rem;
    position: sticky;
    top: 100px;
    z-index: 50;
    padding: 20px;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
}

@media (max-width: 1200px) {
    .menu-tabs {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (max-width: 768px) {
    .menu-tabs {
        margin-left: 10px;
        margin-right: 10px;
        gap: 2rem;
    }
}

.tab {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    font-family: 'Outfit', sans-serif;
}

.tab.active {
    color: var(--gold);
    transform: scale(1.1);
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab.active::after {
    width: 100%;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.05), transparent);
    transition: 0.8s;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.03), transparent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.item-info {
    max-width: 75%;
}

.item-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.item-info p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.item-price {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-top: 0.5rem;
}

/* Tasting Section */
.tasting-section {
    padding: 15rem 0;
    background: var(--bg-accent);
}

.tasting-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-dark);
    padding: 8rem;
    border: 1px solid var(--gold);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tasting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.tasting-card h2 {
    font-size: 5rem;
    margin-bottom: 3rem;
}

.tasting-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 6rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tasting-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.t-highlight {
    display: flex;
    flex-direction: column;
}

.h-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.h-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

.tasting-highlights .divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

.tasting-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.t-price {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
}

.t-price span {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* Drinks Section */
.drinks-section {
    padding: 15rem 0;
    background: var(--bg-dark);
}

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

.drink-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.drink-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.drink-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.drink-price {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 15rem 0;
    background: var(--bg-accent);
}

.phil-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10rem;
    align-items: center;
}

.phil-content h2 {
    font-size: 5rem;
    margin-bottom: 3rem;
}

.phil-stats {
    display: flex;
    gap: 5rem;
    margin-top: 6rem;
}

.p-stat {
    display: flex;
    flex-direction: column;
}

.p-num {
    font-size: 3.5rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.p-lab {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-gray);
}

.phil-img-container {
    height: 700px;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    background: var(--glass);
}

.phil-img {
    height: 100%;
    width: 100%;
}

@media (max-width: 1024px) {
    .menu-hero {
        height: 100vh;
    }

    .menu-hero h1 {
        font-size: 3rem;
    }

    .menu-tabs {
        margin: 4rem auto;
        gap: 1.5rem;
        padding: 15px;
        position: static;
        flex-wrap: wrap;
        border-radius: 20px;
        max-width: 90%;
    }

    .tab {
        font-size: 10px;
        /* Keep user size */
        letter-spacing: 2px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 3rem;
    }

    .tasting-card {
        padding: 4rem 2rem;
    }

    .tasting-card h2 {
        font-size: 2.5rem;
    }

    .tasting-highlights {
        flex-direction: column;
        gap: 2rem;
    }

    .tasting-highlights .divider {
        width: 100%;
        height: 1px;
    }

    .drinks-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .phil-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .phil-content h2 {
        font-size: 3rem;
    }

    .phil-stats {
        justify-content: center;
    }

    .phil-img-container {
        height: 400px;
    }
}