:root {
    --color-bg: #1a1a1a;
    --color-text: #f5f5f5;
    --color-text-muted: #a3a3a3;
    --color-gold: #d4af37;
    --color-gold-hover: #f0c345;
    --color-overlay: rgba(0, 0, 0, 0.6);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.4s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-gold);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

.btn-dark {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-dark:hover {
    background-color: var(--color-gold);
    color: #000;
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.sub-heading {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 10px;
    display: block;
}

.heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
}

.separator {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 20px auto 0;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    text-align: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.loading-line {
    width: 0;
    height: 2px;
    background-color: #fff;
    margin: 0 auto;
    animation: lineGrow 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes lineGrow {
    to { width: 100px; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a dark gradient + functionality for image */
    background: linear-gradient(var(--color-overlay), var(--color-overlay)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    z-index: -1;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ddd;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Menu Section */
.menu {
    background-color: #121212;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.menu-category h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.menu-item {
    margin-bottom: 40px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.item-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 20px;
}

.item-price {
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.item-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-placeholder {
    width: 100%;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--color-gold); /* Stylistic shadow */
}

.about-text p {
    margin-bottom: 25px;
    color: var(--color-text-muted);
}

/* Gallery - Masonry-ish Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(0.98);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Random images */
.item1 { grid-column: 1 / 3; background-image: url('https://images.unsplash.com/photo-1550966871-3ed3c47e2ce2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); }
.item2 { grid-column: 3 / 4; background-image: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); }
.item3 { grid-column: 4 / 5; background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); }
.item4 { grid-column: 3 / 5; background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); }
.item5 { grid-column: 1 / 3; display: none; } /* Just for layout variety, only 4 images for now or hide one */

/* Reservations */
.reservations {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1552566626-52f8b828add9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover fixed;
}

.reservations-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.reservation-box {
    position: relative;
    background-color: #121212;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--color-gold);
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.reservation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background-color: #000;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.full-width {
    grid-column: 1 / -1;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--color-gold);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 80px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col p {
    color: #888;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.newsletter-form input {
    padding: 10px;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--color-gold);
    border: none;
    color: #000;
    cursor: pointer;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

/* Animations */
.reveal-text, .fade-up, .fade-left, .fade-right {
    opacity: 0;
    transition: all 1s ease;
}

.reveal-text { transform: translateY(30px); }
.fade-up { transform: translateY(50px); }
.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }

.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .hero-title { font-size: 3.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .item1 { grid-column: 1/3; } .item2 { grid-column: 1/2; } .item3 { grid-column: 2/3; } .item4 { grid-column: 1/3; }
}

@media (max-width: 768px) {
    .nav-links, .cta-btn-container {
        display: none;
    }
    
    .hamburger {
        display: block;
    }

    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0d0d0d;
        padding: 40px;
        align-items: center;
        border-bottom: 1px solid #333;
    }

    .hero-title { font-size: 2.8rem; }
    
    .about-container, .contact-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image { order: -1; }
    
    .reservation-form { grid-template-columns: 1fr; }
}
