/* --- General Setup & Variables --- */
:root {
    --primary-color: #91a05d; /* Soft Gold */
    --secondary-color: #2C2C2C; /* Dark Grey */
    --background-color: #1a1a1a; /* Near Black */
    --text-color: #F5F5F5; /* Soft White */
    --text-muted: #a0a0a0;
    --accent-color: #b7d437; /* Brighter Gold for highlights */

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition-speed: 300ms;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-color);
}

/* --- Typography & Titles --- */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--background-color);
    transform: translateY(-3px);
}

/* --- Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: background-color var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.main-header.scrolled {
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.main-nav {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: transform var(--transition-speed) ease;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform var(--transition-speed) ease, top var(--transition-speed) ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-open .hamburger { background-color: transparent; }
.nav-open .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-open .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Mobile Navigation Styles */
.nav-open .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--background-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-open .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
}

.nav-open .nav-links a {
    font-size: 1.5rem;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
    /* Updated to a high-quality food image */
    background: url('https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=1965&auto=format&fit=crop') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}


/* --- General Section Styling --- */
.about-section, .gallery-section, .reservations-section, .contact-section {
    padding: 6rem 0;
}

.gallery-section, .reservations-section {
    background-color: var(--secondary-color);
}


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

.about-image img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.about-text p:first-of-type {
    color: var(--text-color);
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Reservations Section --- */
.reservation-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.reservation-info p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.reservation-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.reservation-contact .contact-item {
    font-size: 1.5rem;
    font-weight: 700;
}
.reservation-contact .contact-item i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.reservation-contact a {
    color: var(--text-color);
}
.reservation-contact a:hover {
    color: var(--primary-color);
}

/* --- Contact Section --- */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 5px;
    filter: grayscale(1) invert(0.9) contrast(0.8);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--secondary-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--background-color);
    padding-top: 2rem;
    color: var(--text-muted);
}

/* --- Media Queries for Responsiveness --- */

/* Tablets */
@media (min-width: 768px) {
    .nav-toggle { display: none; }
    .main-nav { display: block; }
    
    .hero-title { font-size: 5rem; }
    .hero-subtitle { font-size: 1.8rem; }
    
    .about-content { grid-template-columns: repeat(2, 1fr); }
    
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    .reservation-contact {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-content { grid-template-columns: 1fr 1.5fr; }

    .footer-content { 
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

/* Laptops and Desktops */
@media (min-width: 1024px) {
    .section-title h2 { font-size: 3.5rem; }
}