/* ===== FONTS ===== */
@font-face {
    font-family: "Blair ITC Bold";
    src: url("./fonts/blair-itc-bold.woff2") format("woff2");
    font-display: block;
    font-weight: 700;
}
@font-face {
    font-family: "Satoshi";
    src: url("./fonts/satoshi-400.woff2") format("woff2");
    font-display: block;
    font-weight: 400;
}
@font-face {
    font-family: "Satoshi";
    src: url("./fonts/satoshi-500.woff2") format("woff2");
    font-display: block;
    font-weight: 500;
}
@font-face {
    font-family: "Satoshi";
    src: url("./fonts/satoshi-300.woff2") format("woff2");
    font-display: block;
    font-weight: 300;
}

/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold: #e7caab;
    --gold-dim: rgb(218, 197, 167);
    --cream: #efe7d2;
    --cream-70: rgba(245, 242, 234, 0.7);
    --bg: #0a0b0a;
    --black: #000;
    --dark-gray: #1e1e1e;
    --border: #333330;
    --border-subtle: rgba(218, 197, 167, 0.15);
    --muted: #4e4c47;
    --nav-bg: rgb(10, 11, 10);
    --overlay-bg: rgba(24, 24, 24, 0.5);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: linear-gradient(rgba(0,0,0,0.93), rgba(0,0,0,0.93)), url("./images/bg-texture.jpg") center / cover no-repeat fixed;
    background-color: var(--bg);
    color: var(--cream);
    font-family: "Satoshi", sans-serif;
    margin: 0;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* Fine-grain concrete/charcoal texture overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
    filter: url(#grain);
    background: repeating-conic-gradient(
        rgba(255,255,255,0.012) 0% 25%,
        transparent 0% 50%
    ) 0 0 / 3px 3px,
    repeating-conic-gradient(
        rgba(0,0,0,0.025) 0% 25%,
        transparent 0% 50%
    ) 1px 1px / 4px 4px;
    mix-blend-mode: overlay;
}

/* Hidden SVG noise filter */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 300px;
    mix-blend-mode: overlay;
}

a { text-decoration: none; color: inherit; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-shell {
    animation: fadeIn 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.navbar > * {
    animation: fadeIn 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }

/* ===== PAGE SHELL ===== */
.page-shell {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    gap: 16px;
    padding: 0 5px 5px 5px;
    overflow: hidden;
}

/* ===== LEFT PANEL (sticky hero) ===== */
.panel-left {
    flex: 1 0 0;
    width: 50%;
    height: 100vh;
    padding: 24px 0 24px 16px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-card {
    border-radius: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 20px 48px 48px 32px;
    position: relative;
    overflow: hidden;
}

.hero-card .hero-bg {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    z-index: 0;
}

.hero-card .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-card .hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 402px;
    background: linear-gradient(transparent 0%, #000 100%);
    z-index: 1;
}

.hero-card .hero-content {
    position: relative;
    z-index: 3;
    margin-top: auto;
    width: 100%;
}

.hero-card h1 {
    font-family: "Blair ITC Bold", sans-serif;
    font-weight: 700;
    font-size: clamp(60px, 7vw, 110px);
    line-height: 1;
    letter-spacing: -1px;
    color: var(--gold);
}

.page-home .hero-card h1 {
    font-size: clamp(30px, 3.5vw, 55px);
}

.page-home .hero-card h5 {
    font-size: 12px;
}

.page-menu .hero-card h1 {
    font-size: clamp(30px, 3.5vw, 55px);
}

.page-about .hero-card h1 {
    font-size: clamp(30px, 3.5vw, 55px);
    margin-left: -3px;
    font-variant-caps: small-caps;
    text-transform: lowercase;
}

.hero-card h5 {
    font-family: "Blair ITC Bold", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 12px;
}

/* ===== RIGHT PANEL (scrollable) ===== */
.panel-right {
    flex: 1 0 0;
    width: 50%;
    height: 100vh;
    padding: 24px 16px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.panel-right::-webkit-scrollbar {
    display: none;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    position: fixed;
    top: 50px;
    left: 56px;
    right: auto;
    z-index: 100;
    background-color: var(--nav-bg);
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transform: scale(1.0);
    transform-origin: top left;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 6px 12px 6px 8px;
}

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

.logo-icon { display: none; }

.nav-spacer { display: none; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 130%;
    text-transform: uppercase;
    color: var(--cream);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover:not(.current) {
    border-color: var(--border-subtle);
}

.nav-link.active,
.nav-btn.active {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
}

.nav-logo.active {
    pointer-events: none;
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-btn {
    font-family: "Satoshi", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--gold-dim);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn:hover {
    border-color: rgba(218, 197, 167, 0.35);
    background-color: rgba(255, 255, 255, 0.03);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px 9px;
    background: var(--overlay-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: var(--gold);
}

/* Social icons in nav */
.nav-social {
    display: none;
    align-items: center;
    gap: 4px;
    margin-left: 4px;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 500px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.nav-social a:hover {
    border-color: rgba(218, 197, 167, 0.35);
}

.nav-social svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

/* ===== HOMEPAGE LAYOUT ===== */
.page-home .panel-left {
    flex: 1.3 0 0;
}

.page-home .panel-right {
    flex: 0.7 0 0;
    padding-top: 24px;
    padding-bottom: 24px;
}

/* ===== HOMEPAGE CARDS ===== */
.home-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.home-card {
    flex: 0.75;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    min-height: 0;
}

.home-card .card-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.home-card:hover .card-img img {
    transform: scale(1.03);
}

.home-card .card-inner {
    position: relative;
    z-index: 2;
    background-color: var(--black);
    border-top-left-radius: 24px;
    padding: 16px 20px;
    margin-top: auto;
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-card .card-inner h6 {
    font-family: "Blair ITC Bold", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--gold);
}

.home-card .card-inner .arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-card .card-inner .arrow svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
}

/* ===== ABOUT PAGE ===== */
.content-section {
    flex: none;
    width: 100%;
    padding: 0;
}

/* Top row: carousel + announcement side by side */
.top-row {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 420px;
}

.top-row-gallery {
    flex: 0 0 42%;
    aspect-ratio: 3/4;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

/* Carousel */
.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #fff;
}

.announcement-card {
    flex: 1 1 50%;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 42px 24px 32px 54px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.announcement-card .ann-title {
    font-family: "Blair ITC Bold", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 130%;
    text-transform: uppercase;
    color: var(--gold);
    text-align: left;
}

.announcement-card .ann-date {
    font-family: "Satoshi", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 165%;
    color: var(--cream-70);
    text-align: left;
    margin-bottom: 10px;
}

.story-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.story-card h5 {
    font-family: "Blair ITC Bold", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--gold);
    text-align: left;
}

.story-card p {
    font-family: "Satoshi", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--cream-70);
    text-align: left;
    padding: 0 5px;
}

/* Footer row */
.footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: none;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 4px;
    gap: 0;
}

.footer-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    position: relative;
}

.footer-card + .footer-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid var(--border);
    background: transparent;
    transform: translateY(-50%) rotate(45deg);
}

.footer-card p,
.footer-card a {
    font-family: "Satoshi", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.footer-card a:hover { color: var(--cream); }

/* ===== MENU PAGE ===== */
.menu-content {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-tabs {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 14px;
    padding: 10px 12px;
}

.menu-tab {
    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
}

.menu-tab:hover {
    color: var(--cream);
    border-color: var(--gold-dim);
}

.menu-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    scrollbar-width: none;
}

.menu-scroll::-webkit-scrollbar { display: none; }

.menu-category {
    display: none;
}

.menu-category.show {
    display: block;
    margin-bottom: 48px;
}

.menu-category-title {
    font-family: "Blair ITC Bold", sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
}

.menu-sub-title {
    font-family: "Blair ITC Bold", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-top: 40px;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.menu-sub-title:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.menu-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding: 14px 0 6px;
}

.menu-item-info {
    display: contents;
}

.menu-item-name {
    font-family: "Blair ITC Bold", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    order: 1;
}

.menu-item-desc {
    width: 100%;
    font-family: "Satoshi", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--cream-70);
    line-height: 1.5;
    padding-top: 4px;
    order: 4;
}

.menu-item::before {
    content: "";
    flex: 1;
    border-bottom: 1.5px dotted var(--border);
    margin: 0 6px;
    position: relative;
    top: -4px;
    min-width: 20px;
    order: 2;
}

.menu-item-price {
    font-family: "Satoshi", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
    order: 3;
}

/* ===== EVENT RESERVATION PAGE ===== */
.page-event .hero-card h1 {
    font-size: clamp(30px, 3.5vw, 55px);
}

.event-form-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 107px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.event-form-title {
    font-family: "Blair ITC Bold", sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
}

.event-form-desc {
    font-family: "Satoshi", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--cream-70);
    text-align: center;
}

.event-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    padding: 14px 16px;
    font-family: "Satoshi", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.3px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
    text-transform: none;
    letter-spacing: 0.3px;
    font-size: 13px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 0;
}

.form-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 8px 70px;
}

.event-submit {
    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg);
    background-color: var(--gold);
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: stretch;
}

.event-submit:hover {
    background-color: #b89a7a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 999px) {
    body {
        overflow-y: auto;
        height: auto;
    }

    .page-shell {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .panel-left {
        width: 100%;
        height: 50vh;
        min-height: 500px;
        padding: 8px;
        flex: none;
        position: relative;
    }

    .panel-right {
        width: 100%;
        height: auto;
        padding: 8px;
        overflow: visible;
        flex: none;
    }

    .navbar {
        top: 12px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 6px 8px;
    }

    .nav-links { display: none; }

    .logo-full { display: none; }
    .logo-icon { display: block; }

    .nav-spacer { display: none; }

    .nav-btns {
        display: flex;
        margin-left: auto;
    }

    .nav-btn {
        font-size: 11px;
        padding: 12px 16px;
    }

    .nav-logo {
        padding: 4px 2px;
    }

    .navbar {
        gap: 3px;
    }

    .nav-social { display: none; }

    .hamburger { display: flex; }

    .home-cards {
        height: auto;
        min-height: 60vh;
    }

    .page-about .hero-card h1 {
        text-align: center;
    }

    .announcement-card {
        justify-content: center;
        align-items: flex-start;
    }

    .home-card {
        min-height: 300px;
    }

    .top-row {
        flex-direction: column;
        height: auto;
    }

    .top-row-gallery {
        min-height: 260px;
    }

    .menu-tabs { display: none; }

    .event-form-card {
        padding: 32px 20px;
    }

    .page-event .hero-card h1 {
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

    body {
        background-attachment: scroll;
    }

    body::before,
    body::after {
        display: none;
    }

    .page-menu .hero-card h1 {
        text-align: center;
    }

    .footer-row {
        flex-direction: column;
        gap: 36px;
        padding: 32px 16px;
    }

    .footer-card + .footer-card::before {
        left: 50%;
        top: -20px;
        transform: translateX(-50%) rotate(45deg);
    }
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--gold);
    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu a {
    font-family: "Satoshi", sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 18px 28px;
    border: none;
    border-bottom: none;
    border-radius: 0;
    transition: color 0.3s ease;
    width: 100%;
    text-align: center;
}

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

.mobile-menu a:hover {
    color: var(--gold);
}

