:root {
    --bg-color: #0c0c0c;
    --bg-light: #161616;
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --white: #ffffff;
    --black: #000000;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-serif);
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.6rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--gold);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(12, 12, 12, 0.95);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    height: 60px;
    width: auto;
    border-radius: 4px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.company-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.company-logo-small {
    height: 45px;
    width: auto;
    border-radius: 2px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
}

/* Demo Ribbon */
.demo-ribbon {
    position: fixed;
    top: 20px;
    right: -50px;
    background-color: var(--gold);
    color: var(--black);
    padding: 0.5rem 4rem;
    font-weight: 700;
    font-size: 0.8rem;
    transform: rotate(45deg);
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('img/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content p {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-content .btn {
    margin-right: 1.5rem;
}

/* Base Sections */
section {
    padding: clamp(4rem, 10vh, 8rem) 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.shadow {
    box-shadow: var(--shadow);
}

/* Menu Section */
.menu-section {
    background-color: var(--bg-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-serif);
    font-size: clamp(1rem, 3.5vw, 1.8rem);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem 0.75rem;
}

.menu-tab.active,
.menu-tab:hover {
    color: var(--gold);
}

.menu-tab.active {
    border-bottom: 2px solid var(--gold);
}

.menu-content {
    position: relative;
    min-height: 500px;
}

.menu-category {
    display: none;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    animation: fadeIn 0.5s ease;
}

.menu-category.active {
    display: grid;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dotted rgba(212, 175, 55, 0.3);
}

.menu-item-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.menu-item-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.menu-item-price {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.info-text p {
    margin-bottom: 0;
}

.map-placeholder {
    margin-top: 3rem;
    height: 250px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #333;
}

.map-box {
    color: var(--gold);
    letter-spacing: 5px;
    font-weight: 700;
}

.form-box {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    border-top: 4px solid var(--gold);
}

.form-box h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: #0c0c0c;
    border: 1px solid #333;
    color: var(--text-primary);
    border-radius: 4px;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-feedback {
    margin-top: 1.5rem;
    text-align: center;
    min-height: 24px;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #222;
    background-color: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .menu-category {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 0 1.5rem;
    }

    .nav-links,
    header .btn {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(12, 12, 12, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        gap: 2rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
        margin-left: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-content .btn {
        margin: 0.5rem;
    }

    /* Prevent horizontal overflow */
    body,
    section,
    .container {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Menu tabs: prevent overflow on very small screens */
    .menu-tabs {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
}

/* Promo Section */
.promo-section {
    background-color: var(--gold);
    color: var(--black);
    padding: 6rem 0;
}

.promo-section .section-title {
    color: var(--black);
    margin-bottom: 2rem;
}

.promo-section .section-title::after {
    background-color: var(--black);
}

.promo-section p {
    color: var(--black);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
}

.promo-logo img {
    width: 100%;
    border-radius: 12px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.promo-logo img:hover {
    transform: translateY(-5px) scale(1.02);
}

.promo-section .btn-gold {
    background-color: var(--black);
    color: var(--gold);
    margin-top: 1rem;
}

.promo-section .btn-gold:hover {
    background-color: #222;
    color: var(--gold);
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-logo {
        order: -1;
        max-width: 200px;
        margin: 0 auto;
    }

    .promo-section {
        padding: 4rem 0;
    }
}