:root {
    --dark-bg: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --gold-primary: #D4A574;
    --gold-dark: #8B4513;
    --text-light: #f5f5f5;
    --text-muted: #d0d0d0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #1f1f1f 50%, #1a1a1a 100%);
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="200" height="200" fill="rgba(0,0,0,0.03)" filter="url(%23n)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 2;
}

/* Cursor glow effect */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="3" fill="%23D4A574"/><circle cx="16" cy="16" r="10" fill="none" stroke="%23D4A574" stroke-width="1" opacity="0.5"/></svg>') 16 16, auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    padding: 1rem 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: -0.05em;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.nav-menu a:not(.cta-button):hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gold-primary);
    color: var(--dark-bg) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: #E8B88A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.9) 100%),
                radial-gradient(circle at 60% 40%, rgba(212, 165, 116, 0.15) 0%, transparent 50%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold-primary);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.25);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta:hover {
    background: #E8B88A;
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0) 100%);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Menu Section */
.menu {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(42, 42, 42, 0.3) 100%);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.menu-category h3 {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
}

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

.menu-item {
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.4);
    border-left: 3px solid var(--gold-primary);
    border-radius: 4px;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(42, 42, 42, 0.6);
    transform: translateX(8px);
}

.menu-item-name {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.menu-item-price {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0) 100%);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 245, 245, 0.8);
    font-weight: 600;
    transition: var(--transition);
    filter: brightness(0.9);
}

.gallery-item:hover .gallery-placeholder {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Booking Section */
.booking {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.booking-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.booking-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.booking-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.booking-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gold-primary);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
    margin-bottom: 1.5rem;
}

.booking-button:hover {
    background: #E8B88A;
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.4);
}

.phone-icon {
    margin-right: 0.5rem;
}

.booking-note {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 2rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.contact-item:hover {
    background: rgba(42, 42, 42, 0.5);
    border-color: rgba(212, 165, 116, 0.3);
}

.contact-item h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-item a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-credit a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger span {
        transition: var(--transition);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        margin-top: 70px;
        padding: 2rem 1rem;
    }

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

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

    .about,
    .menu,
    .booking,
    .contact {
        padding: 3rem 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-logo {
        font-size: 1.4rem;
    }

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

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}
