:root {
    --primary-bg: #0f0f0f;
    --secondary-bg: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-gold-dim: #b39025;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-gold);
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: 0.3s;
}

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

.btn-reservation {
    padding: 0.8rem 2rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-reservation:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    line-height: 1.1;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-gold);
    color: var(--primary-bg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.btn-hero:hover {
    background: var(--white);
}

.btn-hero-outline {
    background: transparent !important;
    border: 1px solid var(--accent-gold);
    color: var(--white) !important;
}

.btn-hero-outline:hover {
    background: var(--accent-gold) !important;
    color: var(--primary-bg) !important;
}

/* --- Sections --- */
.section-padding {
    padding: 8rem 10%;
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--accent-gold);
}

.section-header p {
    color: var(--text-muted);
    margin-top: 1rem;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.about-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 0 var(--secondary-bg);
}

/* --- Menu --- */
.menu-section {
    background: var(--secondary-bg);
}

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

.menu-item {
    background: var(--primary-bg);
    padding: 1rem;
    transition: 0.3s;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-img {
    height: 250px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.menu-item:hover .menu-img img {
    transform: scale(1.1);
}

.menu-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.menu-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.menu-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Chef Section --- */
.chef-section {
    position: relative;
    background: url('../images/chef.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.chef-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.chef-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.chef-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.chef-content p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 2;
}

/* --- Contact / Reservation --- */
.reservation-grid, .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3, .contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.info-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-bg);
    border: 1px solid #333;
    color: var(--white);
    font-family: var(--font-body);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Fix select options visibility */
.form-group select option {
    background-color: var(--secondary-bg);
    color: var(--white);
}

/* --- Footer --- */
footer {
    background: #050505;
    padding: 4rem 10% 2rem;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    color: #444;
    font-size: 0.8rem;
}

/* --- Mobile Toggle --- */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .hero-title { font-size: 3.5rem; }
    .section-padding { padding: 6rem 5%; }
    .about-grid, .reservation-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .about-img { order: -1; margin-bottom: 2rem; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    
    .nav-links { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid var(--accent-gold);
        text-align: center;
    }
    
    .nav-links.active { display: flex; }
    
    /* Hide the reservation button in header on mobile to save space, or move it */
    header .btn-reservation { display: none; }
    
    .hero-title { font-size: 2.5rem; }
}
