/* --- Base System --- */
:root {
    /* Luxury Color Palette */
    --primary-color: #0c1a25; /* Deep Navy */
    --secondary-color: #d4af37; /* Elegant Gold */
    --accent-color: #0e3020;  /* Emerald Hint */
    --text-light: #fefefe;
    --text-dark: #222;
    --bg-light: #f9f9f9;
    --bg-dark: #111;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --section-gap: 5rem;
    --nav-height: 80px;
    --radius: 12px;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Components --- */

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px; /* Slightly sharp for a premium feel */
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 24px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1.5rem 0;
}

.divider.center {
    margin: 1.5rem auto;
}

/* Sections Base */
section {
    padding: var(--section-gap) 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(12, 26, 37, 0.95); /* Deep Navy Glass */
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); /* Upscale Bar/Dining Image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-top: var(--nav-height);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(12, 26, 37, 0.6), rgba(12, 26, 37, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease forwards;
}

.hero .subtitle {
    display: block;
    font-family: var(--font-body);
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* --- About Section --- */
.about {
    background-color: var(--text-light);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image .img-placeholder {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Menu Grid --- */
.menu-highlight {
    background-color: var(--bg-light);
}

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

.menu-card {
    background: var(--text-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.menu-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.menu-info {
    padding: 2rem;
    text-align: center;
}

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

.menu-info p {
    color: #666;
    font-size: 0.95rem;
}

.mt-4 {
    margin-top: 4rem;
}
.text-center {
    text-align: center;
}

/* --- Facilities --- */
.facilities {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.facilities .section-header h2 {
    color: var(--secondary-color);
}

.facilities .section-header p {
    color: #ccc;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.facility-item {
    background: rgba(255,255,255,0.03);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.facility-item:hover {
    background: rgba(255,255,255,0.08);
}

.facility-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.facility-item h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.facility-item p {
    color: #aaa;
    font-size: 0.95rem;
}

/* --- Reviews --- */
.reviews {
    background-color: var(--bg-light);
    text-align: center;
}

.review-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--text-light);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.review-card .stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.review-card .author {
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
    background-color: #081119; /* Darker Navy */
    color: #aaa;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-contact h4, .footer-hours h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-contact p, .footer-hours p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* --- Animations & Utilities --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide on mobile for demo purposes, or implement hamburger */
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}
