/* Color Palette & Variables */
:root {
    --bg-primary: #0f0e13;
    --bg-secondary: #1a1822;
    --bg-card: #22202e;
    --accent-gold: #d4a373;
    --accent-gold-hover: #bc8a5f;
    --text-primary: #f8f9fa;
    --text-muted: #a0a0ab;
    --border-color: #2e2b3d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Core Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

.section-padding {
    padding: 80px 0;
}

.grid {
    display: grid;
    gap: 40px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.sub-title {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.badge {
    background: rgba(212, 163, 115, 0.15);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 163, 115, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #121212;
}

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

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

.btn-secondary:hover {
    background: var(--bg-card);
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 14, 19, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px;
    background: radial-gradient(circle at center, #221f2d 0%, var(--bg-primary) 70%);
}

.hero-content {
    max-width: 650px;
    z-index: 1;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* About Section */
.about-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.stats-grid {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent-gold);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.card-highlight h4 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-highlight p {
    color: var(--text-muted);
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.menu-category h3 {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    margin-bottom: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 4px;
}

.item-price {
    color: var(--accent-gold);
}

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

/* Hours & Info */
.info-box {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-box h3 {
    margin-bottom: 20px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-primary);
}

.tag-list {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.tag-list span {
    background: var(--bg-secondary);
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 4px;
    color: var(--text-muted);
}

/* Reservation Form */
.form-container {
    max-width: 600px;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--accent-gold);
}

.form-success {
    margin-top: 20px;
    background: rgba(46, 125, 50, 0.2);
    border: 1px solid #2e7d32;
    color: #81c784;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

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

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-links a {
        margin: 0 10px;
    }
}