@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Raleway:wght@300;400;500;600&display=swap');

:root {
    --gold: #c9a84c;
    --gold-light: #e8c96d;
    --dark: #0d0d0d;
    --dark2: #141414;
    --dark3: #1a1a1a;
    --dark4: #222;
    --red: #8b0000;
    --red-bright: #c0392b;
    /* Primary accent: rich restaurant red */
    --accent: #c0392b;
    --accent-light: #e74c3c;
    --accent-dark: #8b0000;
    --text: #f0e8e0;
    --text-muted: #a09080;
    --border: rgba(192, 57, 43, 0.25);
    --border-hover: rgba(231, 76, 60, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 57, 43, 0.3);
    transition: all 0.4s;
}

nav.scrolled {
    padding: 0.8rem 4rem;
    background: rgba(8, 8, 8, 0.97);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo svg {
    width: 44px;
    height: 44px;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
}

.nav-logo-text .brand {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-light);
    letter-spacing: 3px;
}

.nav-logo-text .sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--accent);
    color: white;
    padding: 0.65rem 1.8rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(192, 57, 43, 0.3);
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(231, 76, 60, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--accent-light);
    transition: all 0.3s;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('hero-bg-opt.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 0, 0, 0.9) 0%, rgba(28, 5, 5, 0.7) 50%, rgba(13, 0, 0, 0.9) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--accent-light);
    opacity: 0;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1.5);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--accent);
    opacity: 0.7;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 0.2em;
}

.hero h1 .line1 {
    display: block;
    color: var(--text);
    letter-spacing: -2px;
}

.hero h1 .line2 {
    display: block;
    color: var(--accent-light);
    font-style: italic;
    text-shadow: 0 0 40px rgba(231, 76, 60, 0.4);
}

.hero-sub {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 1.5rem 0 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-light);
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent);
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(192, 57, 43, 0.12);
    border-color: var(--accent-light);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* SECTIONS */
section {
    padding: 7rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

.section-title em {
    font-style: italic;
    color: var(--accent-light);
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(192, 57, 43, 0.35);
}

.divider-icon {
    color: var(--accent-light);
    font-size: 1.2rem;
}

/* DAILY DEALS */
.daily-deals {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.deals-badge {
    background: linear-gradient(135deg, var(--red), var(--red-bright));
    color: white;
    text-align: center;
    padding: 0.7rem;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.deals-info {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.85rem;
}

.deals-info strong {
    color: var(--accent-light);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

.deal-item {
    background: var(--dark3);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.deal-item:hover {
    background: var(--dark4);
}

.deal-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.deal-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.deal-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--accent-light);
    white-space: nowrap;
    margin-left: 1rem;
}

/* MENU */
.menu-section {
    background: var(--dark);
}

.menu-tabs {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    border: 1px solid var(--border);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.menu-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.8rem 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-right: 1px solid var(--border);
    white-space: nowrap;
}

.menu-tab:last-child {
    border-right: none;
}

.menu-tab:hover {
    color: var(--accent-light);
    background: rgba(192, 57, 43, 0.08);
}

.menu-tab.active {
    background: var(--accent);
    color: white;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(192, 57, 43, 0.3);
}

.menu-category {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease;
}

.menu-category.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.menu-cat-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.menu-cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-light);
    font-style: italic;
    text-shadow: 0 0 30px rgba(231, 76, 60, 0.3);
}

.menu-cat-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.menu-subcategory {
    margin-bottom: 2.5rem;
}

.menu-sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--red-bright);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(192, 57, 43, 0.3);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.menu-item:hover {
    padding-left: 0.5rem;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.item-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.item-num {
    font-size: 0.65rem;
    color: rgba(231, 76, 60, 0.45);
    margin-right: 0.5rem;
}

.item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--accent-light);
    white-space: nowrap;
    margin-left: 1.5rem;
    font-weight: 700;
}

.item-sizes {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    margin-left: 1.5rem;
}

.item-sizes .size {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
}

.item-sizes .size .sz-price {
    font-family: 'Playfair Display', serif;
    color: var(--accent-light);
    font-size: 0.95rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* COCKTAIL HAPPY HOUR */
.happy-hour-banner {
    background: linear-gradient(135deg, var(--red) 0%, #3d0000 100%);
    border: 1px solid rgba(139, 0, 0, 0.5);
    padding: 1.5rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.happy-hour-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    font-style: italic;
}

.happy-hour-banner p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.3rem;
}

.happy-hour-prices {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.happy-hour-prices span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.happy-hour-prices strong {
    color: white;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* ABOUT / ATMOSPHERE */
.about-section {
    background: var(--dark2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text h2 em {
    color: var(--accent-light);
    font-style: italic;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    padding: 1.2rem;
    border: 1px solid var(--border);
    text-align: center;
    background: var(--dark3);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-light);
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    width: 100%;
    aspect-ratio: 3/4;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(192, 57, 43, 0.3);
    z-index: 1;
    pointer-events: none;
}

.corner-deco {
    position: absolute;
    width: 30px;
    height: 30px;
}

.corner-deco.tl {
    top: -5px;
    left: -5px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
}

.corner-deco.tr {
    top: -5px;
    right: -5px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.corner-deco.bl {
    bottom: -5px;
    left: -5px;
    border-bottom: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
}

.corner-deco.br {
    bottom: -5px;
    right: -5px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

/* INFO & CONTACT */
.info-section {
    background: var(--dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 57, 43, 0.5);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.info-card p,
.info-card a {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.info-card a:hover {
    color: var(--accent-light);
}

.info-card .highlight {
    color: var(--text);
    font-weight: 500;
}

/* RESERVATION */
.reservation-section {
    background: linear-gradient(135deg, #0a0000 0%, #1a0808 50%, #0a0000 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.reservation-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.reservation-section h2 em {
    color: var(--accent-light);
    font-style: italic;
}

.reservation-section p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
}

.phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--accent-light);
    margin: 1.5rem 0;
}

.phone-display a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.phone-display a:hover {
    opacity: 0.8;
}

/* FOOTER */
footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 3rem 4rem 2rem;
}

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

.footer-brand .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-light);
    font-weight: 900;
    letter-spacing: 3px;
}

.footer-brand .brand-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.8rem;
    max-width: 280px;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-bottom span {
    color: var(--accent-light);
}

/* FADE IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* LEGAL PAGES */
.legal-section {
    background: var(--dark);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--accent-light);
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(192, 57, 43, 0.2);
}

.legal-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--accent-light);
    text-decoration: none;
    transition: opacity 0.3s;
}

.legal-content a:hover {
    opacity: 0.8;
}

.legal-content strong {
    color: var(--text);
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    nav.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-bg {
        background-attachment: scroll;
        background-position: center;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .menu-tabs {
        flex-direction: column;
    }

    .menu-tab {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .menu-tab:last-child {
        border-bottom: none;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}