:root {
    --white: #ffffff;
    --off-white: #F5F5F0;
    --black: #1a1a1a;
    --seabird-coffee-brown: #6B4423;
    --overlay: rgba(0, 0, 0, 0.3);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.6;
    background: var(--off-white);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 4rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 160px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.6;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100vh;
    padding: 140px 40px 40px 40px;
    gap: 20px;
}

.hero-column {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 1;
}

.hero-column:nth-child(2) .hero-video {
    transform: translate(-50%, -50%) rotate(90deg);
    width: 100vh;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 1px;
}

.menu-section {
    padding: 8rem 2rem;
    background: var(--off-white);
}

.menu-section .container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.menu-main-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    text-transform: none;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 1.5rem;
}

.menu-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--seabird-coffee-brown);
}

.menu-category {
    margin-bottom: 3.5rem;
}

.menu-category-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    text-align: center;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.1) 90%, transparent);
    z-index: 1;
}

.menu-item-info {
    flex: 1;
    padding-right: 1rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.menu-item-info h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.menu-item-info p {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
}

.menu-item-prices {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    background: var(--white);
    padding-left: 0.5rem;
    position: relative;
    z-index: 2;
}

.menu-item-prices span {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
}

.menu-note {
    margin-top: 2rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: #999;
    font-style: normal;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-block h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.footer-block:nth-child(2) {
    text-align: center;
}

.footer-block:last-child {
    text-align: right;
}

.footer-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-block a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.footer-block a:hover {
    border-color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-column {
        height: 50vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .info-grid {
        gap: 2rem;
    }
}
