:root {
    --primary: #c5a880;
    --bg-dark: #0a0a0a;
    --bg-alt: #121212;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
        url('images/image2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 15px 45px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.4s;
    cursor: pointer;
    margin-top: 20px;
}

.btn:hover {
    background: var(--primary);
    color: #000;
}

section {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
}

.line {
    width: 80px;
    height: 2px;
    background: var(--primary);
    margin: 15px auto;
}

#about {
    background: var(--bg-alt);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.about-img img {
    width: 100%;
    border-radius: 6px;
    border: 2px solid var(--primary);
    filter: brightness(1);
    transition: 0.4s;
}

.about-img img:hover {
    filter: brightness(1);
    transform: scale(1.02);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: var(--bg-alt);
    padding: 40px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.offer-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.offer-card p {
    color: var(--text-muted);
    margin: 6px 0;
    font-size: 0.95rem;
}

.menu-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.menu-category {
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    margin-bottom: 5px;
}

.category-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
}

.category-trigger:hover {
    background: rgba(197, 168, 128, 0.05);
}

.trigger-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trigger-left i {
    color: var(--primary);
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
}

.trigger-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 0;
}

.fa-chevron-down {
    transition: transform 0.3s;
    color: var(--primary);
}

.menu-category.active .fa-chevron-down {
    transform: rotate(180deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
}

.category-inner {
    padding: 20px 40px 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-category.active .category-content {
    max-height: 2000px;
}

.menu-category.active .category-inner {
    opacity: 1;
}

.menu-item {
    margin-bottom: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 600;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #444;
    margin: 0 10px;
}

.item-price {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: brightness(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.gallery-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-title.spaced {
    margin-top: 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: 4px;
    border-left: 4px solid var(--primary);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #333;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox img {
    max-width: 80%;
    max-height: 70%;
    border: 2px solid var(--primary);
    animation: zoomIn 0.3s;
}

.lightbox div {
    margin-top: 20px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.nav-btn {
    position: absolute;
    color: var(--primary);
    font-size: 50px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: 0.3s;
}

.nav-btn:hover {
    color: #fff;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.close {
    top: 20px;
    right: 30px;
    font-size: 40px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

footer {
    text-align: center;
    padding: 50px;
    background: #050505;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .contact-container,
    .about-container {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.96);
        padding: 0 50px;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
    }

    nav ul li {
        margin-left: 0;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 10px 0;
    }

    body.nav-open nav ul {
        max-height: 340px;
        opacity: 1;
        visibility: visible;
    }

    body.nav-open {
        overflow: hidden;
    }

    nav {
        padding: 20px;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 600px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

.item-weight {
    font-weight: 100 !important;
}
