/* ===== CSS Variables & Root ===== */
:root {
    --primary-dark: #0f0f0f;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #2a2a2a;
    --gold: #d4a574;
    --copper: #b87333;
    --light-text: #e8e8e8;
    --pale-text: #b0b0b0;
    --border-color: #3a3a3a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ===== Language Switcher ===== */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--copper);
    color: var(--copper);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--copper);
    color: var(--primary-dark);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7), rgba(212, 165, 116, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--light-text);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.5);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Intro Section ===== */
.intro {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    text-align: center;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out;
}

.intro-container h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.intro-container p {
    font-size: 1.1rem;
    color: var(--pale-text);
    line-height: 1.8;
}

/* ===== Featured Section ===== */
.featured {
    padding: 4rem 2rem;
    background: var(--primary-dark);
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-container h2 {
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.featured-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.featured-card:hover img {
    transform: scale(1.1);
}

.featured-info {
    padding: 1.5rem;
}

.featured-info h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.featured-info p {
    color: var(--pale-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.featured-price {
    color: var(--copper);
    font-size: 1.3rem;
    font-weight: bold;
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 6rem 2rem 4rem;
    min-height: calc(100vh - 60px);
    background: var(--primary-dark);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-section h1 {
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

/* ===== Filter Buttons ===== */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--glass-bg);
    border: 2px solid var(--copper);
    color: var(--copper);
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: var(--copper);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--copper));
    border-color: var(--gold);
    color: var(--primary-dark);
}

/* ===== Menu Grid ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.menu-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    animation: slideUp 0.6s ease-out;
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.2);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover img {
    transform: scale(1.08);
}

.menu-item-info {
    padding: 1.5rem;
}

.menu-item-name {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-item-desc {
    color: var(--pale-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-item-price {
    color: var(--copper);
    font-size: 1.4rem;
    font-weight: bold;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.modal-close:hover {
    background: var(--copper);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.modal-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-price {
    color: var(--copper);
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.modal-description {
    color: var(--pale-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--pale-text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--copper);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    color: var(--pale-text);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .language-switcher {
        gap: 0.3rem;
        padding-left: 0.5rem;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .filter-buttons {
        gap: 0.3rem;
    }

    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
