:root {
    --primary-color: #d4af37; /* Gold */
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-light: #f4f4f4;
    --text-muted: #aaaaaa;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-light);
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.btn-reserve {
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    color: var(--primary-color);
}

.btn-reserve:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: url('assets/images/premium_grill_flames.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h5 {
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

/* About Section */
.about-section {
    padding: 100px 50px;
    background: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.col-text, .col-image {
    flex: 1;
    min-width: 300px;
}

.col-text h6 {
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.col-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.col-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.floating-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

/* Menu Section */
.menu-highlight {
    padding: 120px 50px;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
}

.menu-highlight h6, .menu-highlight h2 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.menu-highlight h6 { color: var(--primary-color); letter-spacing: 2px; text-transform: uppercase; }
.menu-highlight h2 { margin-bottom: 60px; font-size: 3rem; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
}

.menu-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.menu-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

.menu-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    display: inline-block;
    font-size: 1.4rem;
}

.card-content .price {
    float: right;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.card-content p {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Happy Hour */
.happy-hour {
    padding: 100px 20px;
    background: url('assets/images/premium_bbq_hero_dark.png') center/cover no-repeat fixed;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.happy-hour .content-box {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 50px 80px;
    border: 1px solid var(--primary-color);
}

.happy-hour h2 { font-size: 3rem; margin-bottom: 10px; }
.happy-hour p { font-size: 1.5rem; margin-bottom: 30px; color: var(--text-muted); }

/* Footer */
footer {
    padding: 50px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h3 { color: var(--primary-color); }
.contact-info { text-align: right; color: var(--text-muted); }

/* Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    #navbar { padding: 20px; }
    nav ul { display: none; } /* Simplified mobile handling */
}
