:root {
    --bg-color: #0c0c0c;
    --acc-gold: #d4af37;
    --acc-gold-dim: #a68a2d;
    --text-primary: #f8f8f8;
    --text-secondary: #a0a0a0;
    --card-bg: #161616;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--acc-gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--acc-gold);
}

.cta-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--acc-gold);
    color: var(--acc-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--acc-gold);
    color: var(--bg-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1633945274405-b6c8069047b0?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 8rem 0;
}

.section-tag {
    color: var(--acc-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

/* Featured Dishes */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dish-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.dish-img {
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dish-card:hover .dish-img img {
    transform: scale(1.1);
}

.dish-info {
    padding: 2rem;
    text-align: center;
}

.dish-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--acc-gold);
}

.dish-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dish-price {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--acc-gold);
}

/* About Section */
.about {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid var(--acc-gold);
    padding: 1rem;
}

/* Footer */
footer {
    padding: 5rem 0;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--acc-gold);
    margin-bottom: 2rem;
    display: inline-block;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    margin: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.socials {
    margin-bottom: 2.5rem;
}

.socials a {
    margin: 0 1rem;
    font-size: 1.2rem;
    color: var(--acc-gold);
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1.2s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .cta-btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}
