:root {
    --primary-green: #096A09;
    --gold: #926D27;
    --white: #ffffff;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background-color: #051a05;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.home-page {
    height: 100vh;
    overflow: hidden;
}

.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, rgba(5, 26, 5, 0.5) 100%);
    z-index: -1;
    pointer-events: none;
}

.left-panel {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brand-block h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.brand-block h1 span {
    color: var(--gold);
}

.subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-top: 8px;
    color: #eee;
    text-transform: uppercase;
    font-weight: 500;
}

.cta-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.cta-btn {
    display: inline-block;
    width: 180px;
    padding: 14px 0;
    text-align: center;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background: rgba(9, 106, 9, 0.2);
    backdrop-filter: blur(4px);
    cursor: pointer;
    font-weight: 500;
}

.cta-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.center-logo {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-symbol {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    border: 1px solid var(--gold);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    text-decoration: none;
    backdrop-filter: blur(2px);
}

.right-panel {
    position: fixed;
    top: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 60;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    margin: 6px 0;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.main-nav ul {
    list-style: none;
}

.main-nav li {
    margin-bottom: 20px;
}

.main-nav a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--gold);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    right: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.address-block {
    font-size: 0.75rem;
    line-height: 1.8;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    color: #e0e0e0;
}

.content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 20px 80px;
    text-align: center;
    min-height: 100vh;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 6px;
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(146, 109, 39, 0.4);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.menu-section {
    margin-bottom: 70px;
}

.menu-category {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
    border-bottom: 1px dotted rgba(146, 109, 39, 0.3);
    padding-bottom: 12px;
}

.dish-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-align: left;
    color: var(--gold);
    letter-spacing: 1px;
}

.dish-desc {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 6px;
    text-align: left;
    font-style: italic;
}

.dish-price {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--white);
    margin-left: 20px;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    margin-top: 50px;
    background: rgba(0,0,0,0.3);
    padding: 40px;
    border: 1px solid rgba(146, 109, 39, 0.2);
}

.contact-info h3, .contact-form h3 {
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 25px;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--font-body);
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    background: rgba(9, 106, 9, 0.1);
}

.submit-btn {
    width: 100%;
    font-size: 1rem;
    letter-spacing: 2px;
    background-color: var(--gold);
    color: #000;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: var(--white);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    height: 90vh;
    background: #fff;
    border: 1px solid var(--gold);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1001;
    background: #000;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-modal-btn:hover {
    transform: rotate(90deg);
    background: var(--gold);
    color: #000;
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    body.home-page {
        overflow: hidden;
    }
    
    body.internal-page {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .center-logo { display: none; }
    
    .left-panel {
        top: 25px;
        left: 20px;
        width: auto;
        z-index: 50;
    }

    .brand-block h1 {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    .subtitle {
        font-size: 0.55rem;
        opacity: 0.9;
        margin-bottom: 20px;
    }

    .cta-nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

    .cta-btn {
        width: 160px;
        padding: 12px 0;
        font-size: 0.7rem;
        background: rgba(9, 106, 9, 0.4);
    }

    .right-panel {
        position: fixed;
        top: 25px;
        right: 20px;
        bottom: auto;
        height: auto;
        z-index: 40;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .address-block { display: none; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #051a05;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 45;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 20px;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        text-align: center;
    }

    .main-nav li {
        margin: 30px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }
    
    .main-nav.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .main-nav.active li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active li:nth-child(2) { transition-delay: 0.2s; }
    .main-nav.active li:nth-child(3) { transition-delay: 0.3s; }
    .main-nav.active li:nth-child(4) { transition-delay: 0.4s; }
    .main-nav.active li:nth-child(5) { transition-delay: 0.5s; }

    .main-nav a {
        font-size: 1.8rem;
    }

    .content-wrapper {
        padding-top: 130px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .menu-category {
        font-size: 1.6rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .dish-price {
        margin-left: 0;
        color: var(--gold);
        font-size: 1rem;
        margin-top: 5px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 40px;
    }

    .modal-container {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border: none;
        border-radius: 0;
    }

    .close-modal-btn {
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.9);
        color: #000;
        border-color: #000;
        z-index: 2000;
    }
}