/* 
  Luxury Restaurant Theme 
  Colors: Dark (#1a1a1a), Gold (#d4af37), White (#ffffff)
*/

:root {
    --color-primary: #d4af37; /* Gold */
    --color-primary-hover: #b8932b;
    --color-bg-dark: #121212;
    --color-bg-darker: #0a0a0a;
    --color-text: #e0e0e0;
    --color-heading: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-weight: 600;
}

.title-lux {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.subtitle-gold {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.text-gold {
    color: var(--color-primary);
}

.lead-text {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-tag {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.align-center { align-items: center; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }

.section {
    padding: 5rem 0;
}

.bg-darker {
    background-color: var(--color-bg-darker);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    border-radius: 2px;
}

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

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

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

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

.btn-text {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0;
}

.btn-text:hover {
    color: var(--color-heading);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px; /* offset header */
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Inner Pages Hero */
.page-hero {
    padding: 10rem 0 5rem;
    background-color: var(--color-bg-darker);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Image Frames */
.image-frame-gold {
    position: relative;
    padding: 1rem;
}

.image-frame-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    z-index: 1;
    transform: translate(1rem, 1rem);
    transition: var(--transition);
}

.image-frame-gold img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
}

/* Features */
.feature-list-lux {
    list-style: none;
    margin: 2rem 0;
}

.feature-list-lux li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list-lux i {
    color: var(--color-primary);
}

.feature-card {
    padding: 2rem;
    background: var(--color-bg-darker);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

/* Menu */
.menu-card {
    background: var(--color-bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 1.5rem;
}

.menu-item-card {
    display: flex;
    gap: 1.5rem;
    background: var(--color-bg-darker);
    border: 1px solid rgba(255,255,255,0.05);
}

.menu-item-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.menu-item-card .menu-content {
    padding: 1rem 1rem 1rem 0;
}

.menu-item-list {
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.menu-category-title {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Testimonials */
.testimonials-section {
    background: url('https://images.unsplash.com/photo-1544025162-811114215570?auto=format&fit=crop&q=80') center/cover fixed;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10,10,10,0.85);
}

.testimonial-lux {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-lux blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    margin: 2rem 0;
}

.testimonial-lux .stars {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.testimonial-lux cite {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Footer */
.main-footer {
    background-color: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-col p {
    margin-bottom: 1rem;
}

.footer-col i {
    width: 25px;
    color: var(--color-primary);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--color-bg-darker);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .menu-toggle { display: block; }
    .hero-actions { flex-direction: column; }
    .title-lux { font-size: 2.5rem; }
    
    .menu-item-card { flex-direction: column; }
    .menu-item-card img { width: 100%; height: 200px; }
    .menu-item-card .menu-content { padding: 1.5rem; }
}
