﻿
:root {
    --primary: #7d3c12;
    --accent: #c9982a;
    --bg: #fdf5e6;
    --surface: #f5e6cc;
    --surface2: #efe0c0;
    --text: #2c1810;
    --text-muted: #6b4226;
    --border: #dcc9a0;
    --on-accent: #1a0f00;
    --nav-bg: rgba(44, 24, 16, 0.97);
    --topbar-bg: #2c1810;
    --gold: #c9982a;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Hind', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
}

h1, h2, h3, h4, .brand-name {
    font-family: 'Yeseva One', serif;
}

/* ── TOP INFO BAR ── */
#top-bar {
    background: var(--topbar-bg);
    color: #e8d5b0;
    font-size: 0.76rem;
    padding: 7px 0;
    position: relative;
    z-index: 1100;
}

    #top-bar a {
        color: #b89060;
        text-decoration: none;
    }

.topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

    .topbar-left span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .topbar-left i {
        color: var(--accent);
    }

.btn-topbar {
    font-size: 0.7rem;
    padding: 3px 14px;
    border-radius: 20px;
    border: 1px solid #6b4226;
    color: #c9a87a;
    background: transparent;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Hind', sans-serif;
}

    .btn-topbar:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* Open/Close Status */
.status-wrap {
    position: relative;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background .2s;
}

    .status-badge:hover {
        background: rgba(255,255,255,.05);
    }

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background .3s;
}

    .status-dot.open {
        background: #4caf50;
        box-shadow: 0 0 6px #4caf5088;
    }

    .status-dot.closed {
        background: #e53935;
        box-shadow: 0 0 6px #e5393588;
    }

.status-text {
    font-weight: 500;
    color: #e8d5b0;
}

.hours-arrow {
    color: #b89060;
    font-size: .65rem;
    transition: transform .25s;
}

    .hours-arrow.rotated {
        transform: rotate(180deg);
    }

#hours-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1e0f08;
    border: 1px solid #5a3010;
    border-radius: 10px;
    padding: 14px 20px;
    min-width: 300px;
    z-index: 3000;
    font-size: .75rem;
    box-shadow: 0 10px 40px rgba(0,0,0,.6);
}

    #hours-dropdown.show {
        display: block;
    }

    #hours-dropdown table {
        width: 100%;
        border-collapse: collapse;
    }

    #hours-dropdown td {
        padding: 5px 8px;
        color: #c9b090;
    }

        #hours-dropdown td:last-child {
            text-align: right;
        }

    #hours-dropdown .today-row td {
        color: var(--accent);
        font-weight: 600;
    }

    #hours-dropdown .closed-day td {
        color: #664433;
    }

/* ── MAIN NAVBAR ── */
#main-nav {
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    border-bottom: 2px solid #5a3010;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.brand-logo {
    font-family: 'Yeseva One', serif;
    font-size: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .brand-logo:hover {
        color: #e0b050;
    }

.nav-link-custom {
    color: #c9b090 !important;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 6px 10px !important;
    transition: color .2s;
    font-family: 'Hind', sans-serif;
}

    .nav-link-custom:hover {
        color: var(--accent) !important;
    }

.btn-order {
    background: var(--accent);
    color: var(--on-accent);
    border: none;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .25s;
    font-family: 'Hind', sans-serif;
    white-space: nowrap;
}

    .btn-order:hover {
        background: #b88020;
        color: var(--on-accent);
        transform: translateY(-1px);
    }

.cart-btn {
    position: relative;
    background: none;
    border: none;
    color: #c9b090;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color .2s;
    padding: 4px;
}

    .cart-btn:hover {
        color: var(--accent);
    }

#cart-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    background: #c0392b;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

/* ── HERO — Style E: Slideshow ── */
#hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

    .slide.active {
        opacity: 1;
    }

    .slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg, rgba(44,24,16,.72) 0%, rgba(100,50,10,.55) 100%);
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 13rem 20px;
    animation: heroFadeUp 1s ease both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: .72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    font-family: 'Hind', sans-serif;
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
}

.hero-title {
    font-family: 'Yeseva One', serif;
    font-size: clamp(2.8rem, 8vw, 6rem);
    color: #fdf0d5;
    line-height: 1.05;
    margin-bottom: 14px;
}

    .hero-title span {
        color: var(--accent);
    }

.hero-tagline {
    font-size: clamp(.9rem, 2vw, 1.15rem);
    color: rgba(253,240,213,.75);
    font-weight: 300;
    margin-bottom: 36px;
    letter-spacing: .5px;
    font-family: 'Hind', sans-serif;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--on-accent);
    border: none;
    padding: 13px 36px;
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .25s;
    margin: 6px;
    display: inline-block;
    font-family: 'Hind', sans-serif;
}

    .btn-hero-primary:hover {
        background: #b88020;
        color: var(--on-accent);
        transform: translateY(-2px);
    }

.btn-hero-outline {
    background: transparent;
    color: #fdf0d5;
    border: 1px solid rgba(253,240,213,.5);
    padding: 13px 36px;
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .25s;
    margin: 6px;
    display: inline-block;
    font-family: 'Hind', sans-serif;
}

    .btn-hero-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* Slide dots */
.slide-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(253,240,213,.4);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

    .dot.active {
        background: var(--accent);
        transform: scale(1.3);
    }

/* ── SECTION COMMON ── */
section {
    padding: 80px 0;
}

.section-tag {
    font-size: .7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    font-family: 'Hind', sans-serif;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Yeseva One', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text);
    margin-bottom: 12px;
    line-height: var(--lh-tight, 1.2);
}

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    margin: 0 auto 24px;
}

    .section-divider.left {
        margin: 0 0 24px;
    }

/* ── FEATURES ── */
#features {
    background: var(--surface);
}

.feature-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    transition: all .3s;
}

    .feature-card:hover {
        border-color: var(--accent);
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(201,152,42,.15);
    }

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.feature-card h5 {
    font-family: 'Yeseva One', serif;
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── ABOUT ── */
#about {
    background: var(--bg);
}

.about-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 10px;
}

.about-text .section-title {
    color: var(--primary);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: .88rem;
}

.btn-about {
    display: inline-block;
    margin-top: 8px;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .2s;
    font-family: 'Hind', sans-serif;
    font-weight: 600;
}

    .btn-about:hover {
        background: var(--primary);
        color: var(--bg);
    }

/* ── MENU ── */
#menu {
    background: var(--surface);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.menu-tab-btn {
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text-muted);
    border-radius: 30px;
    padding: 8px 24px;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Hind', sans-serif;
}

    .menu-tab-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .menu-tab-btn.active {
        background: var(--primary);
        border-color: var(--primary);
        color: #fdf0d5;
    }

.dish-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all .3s;
}

    .dish-card:hover {
        border-color: var(--accent);
        transform: translateY(-4px);
        box-shadow: 0 8px 28px rgba(201,152,42,.12);
    }

.dish-img {
    width: 100%;
    height: 175px;
    object-fit: cover;
}

.dish-body {
    padding: 14px 16px;
}

.dish-name {
    font-family: 'Yeseva One', serif;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.dish-desc {
    font-size: .77rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
}

.dish-price {
    font-weight: 700;
    color: var(--accent);
    font-size: .95rem;
}

.btn-cart {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-size: .72rem;
    padding: 5px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Hind', sans-serif;
    font-weight: 600;
}

    .btn-cart:hover, .btn-cart.added {
        background: var(--primary);
        color: #fdf0d5;
        border-color: var(--primary);
    }

/* ── GALLERY ── */
#gallery {
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 210px);
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    background: var(--border);
}

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

    .gallery-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(44,24,16,0);
        transition: background .3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

    .gallery-item:hover::after {
        background: rgba(44,24,16,.35);
    }

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,5,2,.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    #lightbox.show {
        display: flex;
    }

    #lightbox img {
        max-width: 90vw;
        max-height: 88vh;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0,0,0,.8);
    }

#lb-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: #e8d5b0;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ── REVIEWS ── */
#reviews {
    background: var(--surface);
}

.review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    transition: all .3s;
    height: 100%;
}

    .review-card:hover {
        border-color: var(--accent);
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(201,152,42,.1);
    }

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: #fdf0d5;
    flex-shrink: 0;
    font-family: 'Yeseva One', serif;
}

.reviewer-name {
    font-weight: 600;
    font-size: .88rem;
    color: var(--text);
    font-family: 'Hind', sans-serif;
}

.reviewer-date {
    font-size: .7rem;
    color: var(--text-muted);
}

.stars {
    color: #d4a017;
    font-size: .85rem;
    letter-spacing: 1px;
    margin: 6px 0 2px;
}

.review-text {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 8px;
}

.google-badge {
    font-size: .63rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── FOOTER ── */
#footer {
    background: #1e0f08;
    border-top: 2px solid #5a3010;
    padding: 60px 0 0;
}

.footer-brand {
    font-family: 'Yeseva One', serif;
    font-size: 1.7rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.footer-desc {
    font-size: .8rem;
    color: #b89060;
    line-height: 1.8;
    margin-bottom: 16px;
}

.social-icons a {
    color: #8a6040;
    font-size: 1.15rem;
    margin-right: 14px;
    transition: color .2s;
}

    .social-icons a:hover {
        color: var(--accent);
    }

.footer-heading {
    font-size: .68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-family: 'Hind', sans-serif;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 7px;
    }

    .footer-links a {
        color: #b89060;
        text-decoration: none;
        font-size: .8rem;
        transition: color .2s;
    }

        .footer-links a:hover {
            color: var(--accent);
        }

.footer-contact p {
    font-size: .8rem;
    color: #b89060;
    margin-bottom: 8px;
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-hours p {
    font-size: .78rem;
    color: #b89060;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid #3a1a08;
    margin-top: 50px;
    padding: 18px 0;
    text-align: center;
    font-size: .73rem;
    color: #7a5030;
}

/* ── BACK TO TOP ── */
#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fdf0d5;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(125,60,18,.45);
    transition: all .25s;
    opacity: 0;
}

    #back-to-top.visible {
        display: flex;
        opacity: 1;
    }

    #back-to-top:hover {
        background: var(--accent);
        transform: translateY(-3px);
    }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 767px) {
    #top-bar .container > div {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .topbar-left {
        gap: 10px;
    }

    #hours-dropdown {
        left: 0;
        transform: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        height: 200px;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 2;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    section {
        padding: 56px 0;
    }

    .about-img {
        height: 280px;
        margin-bottom: 24px;
    }
}

@media (max-width: 991px) {
    .menu-tab-btn {
        padding: 7px 18px;
        font-size: .72rem;
    }
}
