/* Reset & Base */
:root {
    --bg-color: #0a0a0a;
    --text-color: #e5e5e5;
    --accent-color: #D4AF37; /* Gold */
    --accent-glow: rgba(212, 175, 55, 0.3);
    --secondary-bg: #111111;
    --border-color: #333;
    --font-main: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-filled {
    background: var(--accent-color);
    color: #000;
}

.btn-filled:hover {
    background: #fff;
    border-color: #fff;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(10,10,10,1));
    z-index: -1;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero h1 span {
    font-style: italic;
    color: var(--accent-color);
}

.hero p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #ccc;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-color);
}

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

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #999;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    filter: brightness(0.8);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    z-index: -1;
}

/* Menu Preview */
.menu-preview {
    padding: 100px 0;
    background: var(--secondary-bg);
}

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

.menu-card {
    background: var(--bg-color);
    padding: 20px;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.menu-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.menu-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.menu-card .price {
    color: var(--accent-color);
    font-family: var(--font-main);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.menu-card p {
    font-size: 0.9rem;
    color: #888;
}

/* Reservations */
.reservations {
    padding: 100px 0;
    background: url('./assets/images/craft_cocktail_with_smoke.png') no-repeat center center/cover;
    position: relative;
}

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

.reservation-form {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.9);
    padding: 50px;
    border: 1px solid #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #aaa;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-main);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #050505;
    border-top: 1px solid #222;
    text-align: left;
    color: #666;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.info-item h5 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.info-item p {
    line-height: 1.8;
    color: #888;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #111;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-color);
    border-top: 1px solid #222;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--secondary-bg);
    padding: 30px;
    border: 1px solid #222;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.testimonial-header h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.stars {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.testimonial-card p {
    color: #999;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 40px;
    }
}
