/* =====================
       ROOT & BASE STYLES
    ===================== */
:root {
    --gold: #D4AF37;
    --maroon: #800000;
    --charcoal: #1A1A1A;
    --offwhite: #FAF9F6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--charcoal);
    color: var(--offwhite);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    cursor: default;
}

/* =====================
       CUSTOM SCROLLBAR
    ===================== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* =====================
       TYPOGRAPHY
    ===================== */
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* =====================
       PARTICLES CANVAS
    ===================== */
#particles-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* =====================
       HERO SECTION
    ===================== */
.hero-bg {
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.97) 100%),
        url('../img/9.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* =====================
       GOLD SHIMMER TEXT
    ===================== */
.gold-shimmer {
    background: linear-gradient(90deg, #b8941f 0%, #D4AF37 30%, #F0D060 50%, #D4AF37 70%, #b8941f 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* =====================
       NAVBAR GLASSMORPHISM
    ===================== */
.navbar-scrolled {
    background: rgba(20, 20, 20, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5) !important;
}

.nav-link {
    position: relative;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.75);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* =====================
       SCROLL INDICATOR
    ===================== */
.scroll-indicator {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.4;
    }
}

/* =====================
       CTA BUTTON
    ===================== */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: var(--maroon);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 1rem 2.8rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    background: #600000;
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 1;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
}

/* =====================
       SECTION DIVIDERS
    ===================== */
.gold-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-line-full {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* =====================
       MENU CARDS
    ===================== */
.menu-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* .menu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
} */

.menu-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.08);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.07);
}

.menu-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.menu-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 50%);
}

/* =====================
       STAT COUNTERS
    ===================== */
.stat-card {
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.stat-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.06);
}

/* =====================
       GALLERY
    ===================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(128, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* =====================
       TESTIMONIAL SLIDER
    ===================== */
.testimonial-card {
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* =====================
       REVEAL ANIMATIONS
    ===================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* =====================
       FLOATING GLOW
    ===================== */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-20px) translateX(10px);
    }

    66% {
        transform: translateY(10px) translateX(-15px);
    }
}

/* =====================
       MOBILE MENU
    ===================== */
.mobile-menu {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* =====================
       HAMBURGER
    ===================== */
.hamburger-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--offwhite);
    transition: all 0.35s ease;
    transform-origin: center;
}

.hamburger.open .line-1 {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .line-2 {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .line-3 {
    transform: translateY(-7px) rotate(-45deg);
}

/* Map placeholder */
.map-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    color: rgba(212, 175, 55, 0.5);
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Social icon hover */
.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s;
    color: rgba(250, 249, 246, 0.6);
    font-size: 0.9rem;
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Section label */
.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.7);
}

/* Noise grain overlay */
.grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}


/* =========================================================
   MENU PAGE PREMIUM DESIGN
========================================================= */

.menu-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 20px 80px;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.82)),
        url('../img/9.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.menu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(128, 0, 0, 0.25),
            transparent 40%);
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.menu-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.menu-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.75);
    margin-bottom: 1.5rem;
}

.menu-description {
    max-width: 650px;
    margin: auto;
    color: rgba(250,249,246,0.65);
    line-height: 1.9;
    font-size: 0.95rem;
}

/* =========================================================
   MENU SECTION
========================================================= */

.menu-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 80px 20px;
}

.menu-category {
    margin-bottom: 90px;
}

.menu-category-header {
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    padding-bottom: 20px;
}

.menu-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--offwhite);
    letter-spacing: 0.08em;
}

.menu-category-count {
    color: rgba(212,175,55,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* =========================================================
   MENU ITEMS
========================================================= */

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.menu-item {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(212,175,55,0.12);
    background: rgba(255,255,255,0.025);
    backdrop-filter: blur(12px);
    transition: all 0.45s ease;
}

.menu-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(212,175,55,0.05),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.45);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.55),
        0 0 30px rgba(212,175,55,0.08);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--offwhite);
    line-height: 1.2;
    transition: color 0.4s ease;
}

.menu-item:hover .menu-item-name {
    color: var(--gold);
}

.menu-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold);
    white-space: nowrap;
}

.menu-item-desc {
    color: rgba(250,249,246,0.55);
    line-height: 1.8;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

/* =========================================================
   BADGES
========================================================= */

.menu-badge-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.menu-badge {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 40px;
}

.badge-popular {
    background: rgba(128,0,0,0.35);
    color: #F0D060;
    border: 1px solid rgba(128,0,0,0.5);
}

.badge-spicy {
    background: rgba(255,80,0,0.12);
    color: #ff925c;
    border: 1px solid rgba(255,80,0,0.25);
}

/* =========================================================
   SEARCH BAR
========================================================= */

.menu-search {
    position: relative;
    margin-bottom: 70px;
}

.menu-search input {
    width: 100%;
    padding: 20px 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);
    color: var(--offwhite);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    outline: none;
    transition: all 0.4s ease;
}

.menu-search input:focus {
    border-color: rgba(212,175,55,0.45);
    box-shadow: 0 0 25px rgba(212,175,55,0.08);
}

.menu-search input::placeholder {
    color: rgba(250,249,246,0.35);
}

/* =========================================================
   REVEAL EFFECT
========================================================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 768px) {

    .menu-title {
        font-size: 4rem;
    }

    .menu-category-title {
        font-size: 2.2rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-item {
        padding: 24px;
    }

    .menu-item-name {
        font-size: 1.4rem;
    }

    .menu-item-price {
        font-size: 1.3rem;
    }

}