/* Dark Luxury Theme - Shared Styles */

:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --accent-gold: #D4AF37;
    --accent-gold-dim: #aa8c2c;
    --accent-maroon: #600000;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --gutter: 2rem;
}

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

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

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

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    color: var(--accent-gold);
}

.display-text {
    font-size: clamp(3rem, 10vw, 8rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
    text-align: center;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

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

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

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

/* Page Header (for subpages) */
.page-header {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
}

.page-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--accent-gold);
    line-height: 1;
    text-transform: uppercase;
    animation: fadeInDown 1s ease forwards;
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
    margin-top: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1s 0.2s ease forwards;
    opacity: 0;
}

/* Special Offer Banner */
.special-offer-banner {
    background: linear-gradient(90deg, #600000 0%, #0a0a0a 100%);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.special-offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../static/special-offer-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.special-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .special-offer-banner {
        flex-direction: column;
        text-align: center;
    }
}


/* --- Component Styles --- */

/* Component Styles */

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

/* Hero Section (Home) */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transform: scale(1.1);
    /* for parallax zoom out effect */
    transition: transform 10s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    color: var(--accent-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: fadeInDown 1.2s ease forwards;
    opacity: 0;
}

.hero-title {
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1;
    animation: fadeInUp 1.2s 0.2s ease forwards;
    opacity: 0;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s 0.4s ease forwards;
    opacity: 0;
}

/* Introduction Section */
.intro {
    padding: 8rem 0;
    background: var(--bg-color);
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.intro-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.intro-image-wrapper:hover img {
    transform: scale(1.03);
}

.intro-text-content {
    padding-left: 2rem;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.intro-text-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Popular / Menu Highlight Section / Dish Cards */
.menu-highlights {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.dishes-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 4rem;
}

.dish-card {
    background: #111;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    /* Ensure it behaves like a block for the anchor */
}

.dish-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold-dim);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dish-img-box {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.dish-info {
    padding: 2rem;
    text-align: center;
}

.dish-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

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

/* Contact / Info Block */
.contact-strips {
    display: flex;
    flex-wrap: wrap;
}

.contact-strip-item {
    flex: 1;
    min-width: 300px;
    padding: 4rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.contact-strip-item:last-child {
    border-right: none;
}

.contact-strip-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.icon-large {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: block;
}

/* Reviews */
.reviews {
    padding: 8rem 0;
    background: var(--bg-color);
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 3rem auto 5rem;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.review-card {
    background: #0f0f0f;
    padding: 2.5rem;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: var(--font-display);
    line-height: 1;
}

.review-text {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-display);
    position: relative;
    z-index: 2;
}

.review-author {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* Map CTA */
.map-cta {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://img.freepik.com/free-photo/dark-empty-room-with-concrete-floor_15853-487.jpg') center/cover;
    background-attachment: fixed;
    /* Parallax */
}

.map-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border: 1px solid var(--accent-gold);
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
    transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

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

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn:hover {
    color: #000;
}

.btn:hover::before {
    transform: translateX(0);
}

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

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

/* Footer */
footer {
    background: #020202;
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    border-top: 1px solid #111;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-main);
    line-height: 1;
}

.creator-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid #222;
}

.creator-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent-gold);
}

/* Mobile Nav */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 1rem 0;
    }
}

/* Table Styles for Food Options */
.options-table {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-collapse: collapse;
    color: var(--text-muted);
}

.options-table th {
    color: var(--accent-gold);
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.options-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.options-table tr:last-child td {
    border-bottom: none;
}

.options-table td:not(:first-child) {
    text-align: right;
    color: var(--text-main);
    font-weight: 500;
}

/* Mobile Layout Adjustments */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-text-content {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    .intro-text-content .section-title {
        text-align: center;
    }
}