﻿:root {
    --primary-color: #cfb53b; /* Gold */
    --primary-dark: #b39b2b;
    --secondary-color: #4a0e17; /* Dark Burgundy */
    --accent-color: #1a0508; /* Very Dark Burgundy */
    --text-dark: #ffffff;
    --text-light: #d0d0d0;
    --bg-light: #111111;
    --bg-dark: #050505;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.text-gold { color: var(--primary-color) !important; }
.bg-burgundy { background-color: var(--secondary-color) !important; }

.btn-gold {
    background-color: var(--primary-color);
    color: #000;
    border: 1px solid var(--primary-color);
    transition: all 0.5s ease;
    border-radius: 0;
    padding: 12px 35px;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.btn-outline-gold {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.5s ease;
    border-radius: 0;
    padding: 12px 35px;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.btn-outline-gold:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Navbar */
.navbar-custom {
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(207, 181, 59, 0.15);
    padding: 25px 0;
    transition: all 0.4s ease;
}

.navbar-custom.scrolled {
    padding: 15px 0;
    background-color: rgba(5, 5, 5, 0.98);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-family: var(--font-heading);
    font-size: 14px;
    margin: 0 15px;
    position: relative;
    padding: 5px 0 !important;
    letter-spacing: 2px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    filter: brightness(0.4);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(5,5,5,0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeIn 2s ease;
}

.hero-title {
    font-size: 6.5rem;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* Menu Section */
.menu-item {
    border-bottom: 1px solid rgba(207, 181, 59, 0.2);
    padding: 25px 0;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateX(10px);
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.menu-desc {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* Feature Dishes */
.dish-card {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dish-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(74, 14, 23, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dish-card:hover .dish-img {
    transform: scale(1.1);
}

.dish-card:hover .dish-overlay {
    opacity: 1;
}

/* Reservation Form */
.reservation-section {
    background-color: var(--accent-color);
    border-top: 1px solid rgba(207, 181, 59, 0.3);
    border-bottom: 1px solid rgba(207, 181, 59, 0.3);
    position: relative;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('/demos/restaurant/images/stardust.png');
    opacity: 0.1;
    pointer-events: none;
}

.form-control, .form-select {
    border-radius: 0;
    padding: 18px 20px;
    border: 1px solid rgba(207, 181, 59, 0.3);
    background-color: rgba(0,0,0,0.5);
    color: var(--text-dark);
    font-family: var(--font-body);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    background-color: rgba(0,0,0,0.8);
    color: var(--primary-color);
    box-shadow: none;
}

::placeholder {
    color: rgba(255,255,255,0.4) !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

