@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #c9a050;
    /* Gold */
    --secondary-color: #1a1a1a;
    /* Dark background */
    --text-color: #f5f5f5;
    --accent-color: #e63946;
    /* Red for sparks */
    --bg-dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass);
}

.brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    animation: none;
    opacity: 1;
    transform: none;
    font-size: 0.7rem;
    white-space: nowrap;
    display: block;
    flex-shrink: 0;
}

.lang-switcher-mobile {
    display: none;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: #666;
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.lang-btn:hover:not(.active) {
    color: var(--text-color);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    flex-shrink: 0;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

/* Sections */
section {
    padding: 8rem 10%;
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header .subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #888;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.menu-item {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.menu-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.menu-item .price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.menu-item p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Info Section */
.info-section {
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-dark);
}

.info-content {
    flex: 1;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    border-radius: 5px;
}

/* Footer */
footer {
    padding: 4rem 10%;
    background-color: #050505;
    border-top: 1px solid var(--glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info p {
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 860px) {
    nav {
        padding: 1rem 5%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        gap: 3rem;
    }

    .nav-links a {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .nav-links.active {
        right: 0;
    }

    .lang-switcher-mobile {
        display: flex !important;
        gap: 1rem;
        margin-bottom: 3rem;
        background: rgba(255, 255, 255, 0.05);
        padding: 0.8rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .lang-switcher-mobile .lang-btn {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        color: #fff;
    }

    .lang-switcher-mobile .lang-btn.active {
        background: var(--primary-color);
        color: var(--bg-dark);
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-actions {
        gap: 0.6rem;
        flex-shrink: 0;
        justify-content: flex-end;
        align-items: center;
    }

    .lang-switcher {
        display: none !important;
        /* Force hide header switcher on mobile */
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 1.2rem;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .nav-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .mobile-nav-toggle {
        width: 20px;
        height: 14px;
        margin-left: 0.2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 5%;
    }

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