 @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Montserrat:wght@300;400;500&display=swap');

@font-face {
    font-family: 'Ngetic Modern';
    src: url('../fonts/NgeticModern-Italic.woff2') format('woff2'),
        url('../fonts/NgeticModern-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ngetic Modern';
    src: url('../fonts/NgeticModern-Regular.woff2') format('woff2'),
        url('../fonts/NgeticModern-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #0b0906;
    --espresso: #1b130d;
    --espresso-2: #241a12;
    --gold: #e1a291;
    --gold-bright: #e1a291;
    --gold-dim: #8a7148;
    --cream: #f4ead9;
    --stone: #a99d88;
    --wine: #6b2027;
    --line: rgba(198, 161, 91, 0.22);
    --radius: 2px;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Site-wide Smooth Scroll */
html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background: var(--ink);
    color: var(--cream);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    animation: pageFadeIn 0.8s var(--easing) forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

h1,
h2,
h3,
h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.08;
}

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

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

ul {
    list-style: none;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

::selection {
    background: var(--gold);
    color: var(--ink);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Scroll-triggered reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
    will-change: opacity, transform;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered load delays for chips */
.about-chips .chip:nth-child(1) {
    transition-delay: 0.1s;
}

.about-chips .chip:nth-child(2) {
    transition-delay: 0.2s;
}

.about-chips .chip:nth-child(3) {
    transition-delay: 0.3s;
}

/* Sticky Header Transitions */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--easing), background 0.4s var(--easing), padding 0.4s var(--easing);
}

header.scrolled {
    border-color: var(--line);
    padding-top: 4px;
    padding-bottom: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    transition: transform 0.4s var(--easing);
}

.brand:hover .brand-mark {
    transform: rotate(180deg);
}

.brand-word {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
}

.brand-word span {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    color: var(--stone);
    margin-top: 1px;
}

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

.nav-links a {
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    opacity: 0.82;
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

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

.nav-links a:hover {
    opacity: 1;
    color: var(--gold-bright);
}

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

/* Button Animations */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--easing);
}

.btn:hover {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 0 28px rgba(198, 161, 91, 0.35);
    transform: translateY(-2px);
}

.btn.solid {
    background: var(--gold);
    color: var(--ink);
}

.btn.solid:hover {
    background: var(--gold-bright);
    box-shadow: 0 0 28px rgba(232, 199, 126, 0.4);
}

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

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* text-align: center; */
    padding: 140px 24px 80px;
    background:
        radial-gradient(ellipse at 50% 18%, rgba(198, 161, 91, 0.14) 0%, rgba(11, 9, 6, 0) 58%),
        linear-gradient(180deg, #0b0906 0%, #120d09 55%, #0b0906 100%);
    overflow: hidden;
    min-width: max-content;
}

.heroimg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/hero1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.relative {
    position: relative;
    z-index: 3;
}

.menubg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/cup.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.footer-brand img {
    max-width: 150px;
}

#menu {
    background-color: #000;
}

.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(78vw, 760px);
    height: min(78vw, 760px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(198, 161, 91, 0.18);
    animation: pulse-ring 6s ease-in-out infinite;
}

.hero-ring.r2 {
    width: min(60vw, 580px);
    height: min(60vw, 580px);
    animation-delay: 1.2s;
}

@keyframes pulse-ring {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.9;
        box-shadow: 0 0 60px rgba(198, 161, 91, 0.12);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto auto 200px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero-mark {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
}

.hero-content .eyebrow {
    margin-bottom: 18px;
    width: 80%;
}

.hero h1 {
    font-size: clamp(2.6rem, 6.4vw, 4rem);
    color: var(--cream);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-bright);
    font-weight: 500;
}

.hero p.lede {
    /* max-width: 560px; */
    margin: 26px 0 0;
    color: var(--stone);
    font-size: 1.05rem;
    width: 70%;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-top: 44px;
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    color: var(--stone);
}

.scroll-cue .line {
    width: 1px;
    height: 38px;
    background: linear-gradient(var(--gold), transparent);
    animation: drip 2.4s ease-in-out infinite;
}

@keyframes drip {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

section {
    position: relative;
    padding: 120px 0;
}

.section-head { 
    margin-bottom: 64px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    margin-top: 14px;
    color: var(--cream);
}

.section-head p {
    color: var(--stone);
    margin-top: 16px;
    font-size: 1.02rem;
    max-width: 520px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold-dim);
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 32px;
}

.divider .l {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

/* About Section */
.about {
    background: #000000;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: start;
}

.about-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    color: #f6f6f4;
    line-height: 1.5;
}

.about-quote+p {
    margin-top: 24px;
    color: var(--stone);
    font-size: 0.98rem;
}

.about-chips {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
}

.chip {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: background 0.3s ease;
}

.chip:hover {
    background: rgba(198, 161, 91, 0.04);
}

.chip .n {
    font-family: 'JetBrains Mono', monospace;
    color: var(--gold-dim);
    font-size: 0.78rem;
}

.chip .t {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
}

.chip .d {
    color: var(--stone);
    font-size: 0.86rem;
    max-width: 220px;
    text-align: right;
}

/* Menu Section */
.menu-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.tab-btn {
    padding: 10px 20px;
    border: 1px solid var(--line);
    color: var(--stone);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.12em; 
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.35s var(--easing);
    font-weight: 900;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.menu-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s var(--easing), transform 0.4s var(--easing);
}

.menu-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-cat-title {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
}

.menu-cat-title h3 {
    font-size: 1.5rem;
    color: var(--gold-bright);
}

.menu-cat-note {
    color: var(--stone);
    font-size: 0.88rem;
    margin-bottom: 30px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 56px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px dashed var(--line);
    transition: transform 0.3s var(--easing), border-color 0.3s ease;
}

.menu-item:hover {
    transform: translateX(4px);
    border-bottom-color: var(--gold);
}

.menu-item .info h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--cream);
}

.menu-item .info p {
    color: var(--stone);
    font-size: 0.84rem;
    margin-top: 4px;
    max-width: 340px;
}

.menu-item .price {
    font-family: 'JetBrains Mono', monospace;
    color: var(--gold);
    font-size: 0.95rem;
    white-space: nowrap;
    display: none;
}

/* Snooker Section */
.snooker {
    background: #171717;
}

.snooker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.snooker-copy p {
    color: var(--stone);
    margin-top: 18px;
    font-size: 1rem;
    max-width: 480px;
}

.snooker-meta {
    display: flex;
    gap: 36px;
    margin-top: 34px;
}

.snooker-meta div .n {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--gold-bright);
}

.snooker-meta div .l {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    color: var(--stone);
    text-transform: uppercase;
    margin-top: 2px;
}

.table-graphic {
    position: relative;
    aspect-ratio: 16/9.5;
    background: #0e3d2c;
    border: 14px solid #2a1810;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s var(--easing);
}

.table-graphic:hover {
    transform: scale(1.02);
}

.table-graphic::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(198, 161, 91, 0.35);
    border-radius: 4px;
}

.pocket {
    position: absolute;
    width: 22px;
    height: 22px;
    background: #0b0906;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.25);
}

.pocket.tl {
    top: -2px;
    left: -2px;
}

.pocket.tr {
    top: -2px;
    right: -2px;
}

.pocket.tc {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.pocket.bl {
    bottom: -2px;
    left: -2px;
}

.pocket.bc {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.pocket.br {
    bottom: -2px;
    right: -2px;
}

.ball {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.table-graphic:hover .ball {
    transform: translate(2px, -2px);
}

/* Shop Section */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgb(255 151 41 / 19%);
    border: 1px solid rgb(255 143 46 / 22%);
    flex-direction: column;
}

.product {
    background: #0b090640;
    padding: 38px 50px;
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease, transform 0.35s var(--easing);
}

.product:hover {
    background: var(--espresso);
    transform: translateY(-3px);
}

.product .icon {
    width: 70px;
    height: 60px;
    margin-bottom: 22px;
    transition: transform 0.3s var(--easing);
}

.product:hover .icon {
    transform: scale(1.1);
}

.product h4 {
    font-size: 1.8rem;
    color: var(--cream);
}

.product p {
    color: var(--stone);
    font-size: 0.86rem;
    margin-top: 10px;
}

.product .range {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--gold);
    margin-top: 18px;
    display: inline-block;
    display: none;
}

/* Visit Section */
.visit {
    background: #151515;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}

.hours-row span:first-child {
    color: var(--cream);
}

.hours-row span:last-child {
    color: var(--stone);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
}

.contact-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;line-height: 40px;
    margin-bottom: 40px;
}

.contact-list div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-list .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--gold-dim);
    text-transform: uppercase;
    width: 90px;
    flex-shrink: 0;
    padding-top: 2px;
}

.contact-list .v {
    color: var(--cream);
    font-size: 0.95rem;
}

.map-panel {
    border: 1px solid var(--line);
    min-height: 340px;
    position: relative;
    background:
        linear-gradient(rgba(11, 9, 6, 0.55), rgba(11, 9, 6, 0.75)),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(198, 161, 91, 0.06) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(198, 161, 91, 0.06) 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    transition: border-color 0.3s ease;
}

.map-panel:hover {
    border-color: var(--gold);
}

.map-panel span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--stone);
}

/* Footer Section */
footer {
    padding: 70px 0 34px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-brand p {
    color: var(--stone);
    font-size: 0.88rem;
    margin-top: 16px;
    max-width: 260px;
}

.footer-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 18px;
}

.footer-col a,
.footer-col span {
    display: block;
    color: var(--stone);
    font-size: 0.88rem;
    margin-bottom: 12px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-col a:hover {
   
    transform: translateX(3px);
}

.newsletter-row {
    display: flex;
    margin-top: 6px;
    border: 1px solid var(--line);
    transition: border-color 0.3s ease;
}

.newsletter-row:focus-within {
    border-color: var(--gold);
}

.newsletter-row input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 14px;
    color: var(--cream);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
}

.newsletter-row input:focus {
    outline: none;
}

.newsletter-row button {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 0 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-row button:hover {
    background: var(--gold-bright);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--stone);
    flex-wrap: wrap;
    gap: 12px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 9, 6, 0.98);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s var(--easing);
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav a {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--cream);
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--gold-bright);
    transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 880px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid,
    .snooker-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

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

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

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

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

    section {
        padding: 84px 0;
    }

    .wrap {
        padding: 0 20px;
    }

    nav {
        padding: 16px 20px;
    }
}



/* Custom CSS Variables */
:root {
    --color-bg: #0d0d0d;
    --color-card: #161616;
    --color-text: #e5e5e5;
    --color-muted: #a3a3a3;
    --color-accent: #d4af37;
    /* Gold theme accent */
    --color-accent-hover: #f1c40f;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
}

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

.section {
    padding: 4rem 0;
}

.section-tag {
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-muted);
    max-width: 600px;
}

.text-center {
    text-align: center;
}

.text-center p {
    margin: 0 auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--color-accent-hover);
}

.btn-outline {
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: #000;
}

/* Header & Mobile Navigation */
.header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
}

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

.logo img {
    max-height: 40px;
    width: auto;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Mobile Menu Overlay */
.nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--color-card);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    border-bottom: 1px solid #222;
}

.nav-menu.active {
    display: flex;
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        background: none;
        padding: 0;
        align-items: center;
        gap: 2rem;
        border: none;
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.hero-desc {
    color: var(--color-muted);
    max-width: 650px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* Feature Cards */
.feature-card {
    background: var(--color-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #222;
}

.feature-num {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Menu Section */
.menu-category {
    background-color: var(--color-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #222;
}

.category-sub {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.menu-list {
    list-style: none;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid #282828;
}

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

.menu-item h4 {
    font-size: 1rem;
}

.menu-item p {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.price {
    color: var(--color-accent);
    font-weight: 600;
}

/* Product Cards */
.product-card {
    background: var(--color-card);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem;
}

.product-price {
    color: var(--color-accent);
    font-weight: 600;
}

/* Placeholders */
.image-placeholder {
    background: #1f1f1f;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--color-muted);
    border: 1px dashed #333;
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid #222;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

#siteHeader .brand img {
    width: 120px;
}



.hamburger {
    display: none !important;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block !important;
    }

    .hero {
        flex-direction: column !important;
    }

    .hero-content {
        max-width: unset !important;
    }

    .hero p.lede {
        max-width: unset !important;
    }

    .hero {
        min-width: unset;
    }

    .btn {
        padding: 10px 20px !important;
        font-size: 0.55rem !important;
    }

    .hero {
        padding: 150px 20px 50px;
        min-height: unset;
    }

    .hero h1 {
        font-size: clamp(1rem, 6.4vw, 4rem);
    }

    .hero-content {
        text-align: center;
    }

    .hero p.lede {
        width: unset;
    }

    section {
        padding: 40px 0;
        text-align: center;
    }

    nav {
        padding: 0px 15px;
    }

    #siteHeader .brand img {
        width: 90px;
    }

    .hamburger {
        margin-right: 20px;
    }

    .hero-content .eyebrow {
        margin: 0 auto;
    }

    .hero-ctas {
        width: 200px;
        margin: 20px auto 0;
    }

    .wrap {
        padding: 0 30px;
    }

    .menu-tabs {
        gap: 5px;
        justify-content: center;
    }

    .menu-cat-title {
        justify-content: center;
    }

    .flexcol {
        align-items: center !important;
        flex-direction: column;
        gap: 10px !important;
    }

    .menu-item {
        justify-content: center !important;
        padding: 9px !important;
    }

    .menu1 .video-overlay,
    .menu2 .video-overlay {
        background: rgba(0, 0, 0, 0.60) !important;
    }

    .shop-grid {
        margin: 0 40px !important;
    }

    .product {
        padding: 20px !important;
    }

    footer {
        text-align: center;
    }

    .brand {
        justify-content: center;
    }

    .footer-brand p {
        max-width: unset !important;
    }.map-panel{ padding: 0 !important;}
.map-panel iframe{ height: 200px !important;}
.snooker{ padding: 150px 0 300px !important;}
.heroimg3{background-position: center right !important;}
}

.footer-logo {
    max-height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links h5 {
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.footer-links a {
    display: block;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    border-top: 1px solid #1f1f1f;
    padding-top: 2rem;
    color: var(--color-muted);
    font-size: 0.85rem;
}

@media (min-width: 576px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}


.heroimg1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/snook.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.heroimg2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/img4.jpg);
    background-size: cover;
    background-position: 114%;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.wrap {
    position: relative;
    z-index: 2;
}

.heroimg3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/sn1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.91;
}

.heroimg5 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/s13.jpg);
    background-size: 50%;
    background-position: 0 0;
    background-repeat: repeat;
    opacity: 0.10;
}
#shopnew .product {
    background: #0b090600;}
   #shopnew .shop-grid{background: #e1a29117;}

   .cakes-section {
  padding: 120px 0;
  background: #0d0d0d;
  color: #fff;
}

.section-head { 
  margin-bottom: 70px;
}

.section-head .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 15px;
}

.section-head h2 {
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
  margin: 0;
  letter-spacing: -2px;
}

.section-head p {
  color: #999;
  margin-top: 20px;
  font-size: 18px;
}

/* PRODUCT LIST */

.cake-list {
  border-top: 1px solid rgba(255,255,255,.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cake-card {
  display: grid;
  grid-template-columns: 80px 1fr 70px;
  align-items: center;
  gap: 30px;
  padding: 32px 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: all .4s ease;
  cursor: pointer;
}

.cake-card:hover {
  padding-left: 40px;
  padding-right: 40px;
  background: #543e38;
}

.cake-number {
  font-size: 48px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 100;
}

.cake-content h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 500;
}

.cake-content p {
  margin: 0;
  max-width: 650px;
  color: #999;
  line-height: 1.7;
  font-size: 15px;
}

.price {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 14px;
}

.cake-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #e1a291;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  transition: .4s ease;
  color: #f6b4a2;
}

.cake-card:hover .cake-arrow {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: rotate(45deg);
}

/* MOBILE */

@media (max-width: 767px) {

  .cakes-section {
    padding: 80px 20px;
  }

  .section-head {
    margin-bottom: 45px;
  }

  .section-head h2 {
    font-size: 42px;
  }

  .cake-card {
    grid-template-columns: 45px 1fr 45px;
    gap: 15px;
    padding: 25px 5px;
  }

  .cake-card:hover {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cake-content h3 {
    font-size: 21px;
  }

  .cake-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .cake-arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

.membership-section {
    background-color: #0d0b0a;
    background-image: radial-gradient(circle at 80% 50%, #1a1412 0%, #0d0b0a 70%);
    color: #e0e0e0;
    padding: 100px 5%;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .membership-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 40px;
  }

  .membership-content {
    flex: 1;
    max-width: 750px;
  }

  /* Subheading */
  .sub-heading {
    color: #d49a80; /* Copper accent */
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
  }

  /* Main Heading */
  .main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px; 
    letter-spacing: 1px;
  }

  .main-heading em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    text-transform: none;
    color: #f3d2c1;
    display: block;
    margin-top: 5px;
  }

  /* Perks Inline List */
  .perks-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .perks-list li {
    font-size: 0.95rem;
    color: #a8a3a0;
    font-weight: 300;
    display: flex;
    align-items: center;
  }

  .perks-list li:not(:last-child)::after {
    content: "•";
    color: #d49a80;
    margin-left: 12px;
    font-size: 0.8rem;
  }

  /* Call To Action Button */
  .cta-button {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid #d49a80;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
  }

  .cta-button:hover {
    background-color: #d49a80;
    color: #0d0b0a;
    box-shadow: 0 0 25px rgba(212, 154, 128, 0.3);
  }

  /* Member Card Visual Styling */
  .membership-card-wrapper {
    /* flex: 1; */
    display: flex;
    justify-content: center;
  }

  .membership-card {
    width: 380px; 
    background: linear-gradient(135deg, #1c1816 0%, #110e0d 100%);
    border: 1px solid rgba(212, 154, 128, 0.25);
    border-radius: 12px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .card-watermark {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14rem;
    color: rgba(212, 154, 128, 0.05);
    line-height: 1;
    pointer-events: none;
  }

  .card-tier {
    color: #d49a80;
    font-size: 0.75rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 5px;
  }

  .card-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 900px) {
    .membership-container {
      flex-direction: column;
      text-align: center;
    }
    
    .perks-list {
      justify-content: center;
    }

    .main-heading {
      font-size: 2.2rem;
    }

    .membership-card {
      width: 300px; 
    }
  }

  

    /* Main Container */
    .flyer-container {
      width: 100%;
      background: #0a0a0a linear-gradient(180deg, #0a0a0a 0%, #090909 100%);
      border: 1px solid rgba(212, 154, 128, 0.15);
      box-shadow: 0 30px 60px rgba(0,0,0,0.9);
      position: relative;
      overflow: hidden;
    }

    /* Decorative Glows */
    .flyer-container::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(184, 115, 87, 0.08) 0%, rgba(0,0,0,0) 70%);
      pointer-events: none;
    }

    
    .brand-logo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 40px;
    }

    .logo-symbol {
      width: 45px;
      height: 45px;
      margin-bottom: 8px;
    }

    .brand-title {
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      letter-spacing: 3px;
      color: #dfb295;
      font-weight: 600;
    }

    .brand-subtitle {
      font-size: 0.55rem;
      letter-spacing: 5px;
      color: #8c7b70;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .main-title {
      font-family: 'Cinzel', serif;
      font-size: 2.8rem;
      font-weight: 400;
      line-height: 1.15;
      color: #e2c0a8;
      letter-spacing: 2px;
      margin-bottom: 25px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    .main-title span {
      display: block;
      color: #bfa08d;
    }

    .divider-line {
      width: 220px;
      height: 1px;
      background: linear-gradient(90deg, #bfa08d 0%, rgba(191, 160, 141, 0) 100%);
      margin-bottom: 30px;
      position: relative;
    }

    .divider-line::before {
      content: '◆';
      position: absolute;
      left: 45%;
      top: -6px;
      font-size: 8px;
      color: #bfa08d;
    }

    .subtitle-block {
      margin-bottom: 20px;
    }

    .subtitle-top {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      color: #d1bead;
      font-weight: 300;
      letter-spacing: 1px;
    }

    .subtitle-script {
      font-family: 'Alex Brush', cursive;
      font-size: 2.6rem;
      color: #e2c0a8;
      line-height: 1.1;
      margin-top: -5px;
    }

    .description-text {
      font-size: 0.85rem;
      color: #8e8379;
      max-width: 360px;
      line-height: 1.6;
      font-weight: 300;
    }

    /* Privilege Grid Section */
    .section-header {
      text-align: center;
      margin: 80px 0 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      font-size: 42px;
    }

    .section-header span {
      font-family: 'Cinzel', serif;
      font-size: 1.5rem;
      letter-spacing: 4px;
      color: #caa58d;
      text-transform: uppercase;
    }

    .section-header .diamond {
      color: #caa58d;
      font-size: 10px;
    }

    .privileges-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 15px;
      margin-bottom: 60px;
      padding: 0;
    }

    .privilege-card {
      text-align: center;
      padding: 0 8px;
      position: relative;
    }

    .privilege-card:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -8px;
      top: 15%;
      height: 70%;
      width: 1px;
      background: linear-gradient(180deg, rgba(184, 115, 87, 0) 0%, rgba(184, 115, 87, 0.2) 50%, rgba(184, 115, 87, 0) 100%);
    }

    .icon-circle {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 1px solid rgba(212, 154, 128, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      background: radial-gradient(circle, rgba(30, 22, 20, 0.6) 0%, rgba(10, 8, 8, 0.8) 100%);
      box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    }

    .icon-circle svg {
      width: 40px;
      height: 40px;
      stroke: #d8af97;
      fill: none;
      stroke-width: 1.3;
    }

    .privilege-num {
      font-size: 0.75rem;
      color: #7a6b61;
      margin-bottom: 6px;
      font-weight: 500;
    }

    .privilege-title {
      font-family: 'Cinzel', serif;
      font-size: 0.95rem;
      color: #e2c0a8;
      letter-spacing: 1px;
      line-height: 1.3;
      margin-bottom: 12px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .privilege-desc {
      font-size: 0.9rem;
      color: #7e746c;
      line-height: 1.4;
      font-weight: 300;
    }

    /* Banner CTA Box */
    .cta-banner {
      border: 1px solid rgba(212, 154, 128, 0.25);
      border-radius: 20px;
      background: radial-gradient(circle at 0% 50%, #1c1512 0%, #0d0a09 100%);
      padding: 40px;
      text-align: center;
      position: relative;
      margin-bottom: 50px;
      box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
    }

    .cta-title {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      letter-spacing: 3px;
      color: #caa58d;
      margin-bottom: 5px;
    }

    .cta-script {
      font-family: 'Alex Brush', cursive;
      font-size: 3.2rem;
      color: #f3d2c1;
      margin-bottom: 5px;
    }

    .cta-sub {
      font-size: 0.8rem;
      color: #8e8379;
      letter-spacing: 0.5px;
      margin-bottom: 25px;
      font-weight: 300;
    }

    .btn-join {
      display: inline-block;
      padding: 12px 35px;
      border: 1px solid rgba(212, 154, 128, 0.5);
      background: transparent;
      color: #ffffff;
      font-family: 'Cinzel', serif;
      font-size: 0.8rem;
      letter-spacing: 3px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-join:hover {
      background: #caa58d;
      color: #0a0808;
      box-shadow: 0 0 20px rgba(202, 165, 141, 0.4);
    }

    .cta-footer-text {
      font-size: 0.65rem;
      letter-spacing: 3px;
      color: #8c7b70;
      text-transform: uppercase;
      margin-top: 20px;
    }

    /* Footer Features Bar */
    .footer-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      border-top: 1px solid rgba(212, 154, 128, 0.1);
      padding-top: 30px;
      padding-bottom: 50px;
    }

    .footer-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-icon svg {
      width: 22px;
      height: 22px;
      stroke: #d8af97;
      fill: none;
      stroke-width: 1.3;
    }

    .footer-text h4 {
      font-size: 0.9rem;
      color: #bfa08d;
      font-weight: 500;
      margin-bottom: 2px;
    }

    .footer-text p {
      font-size: 0.90rem;
      color: #665c54;
      line-weight: 1.2;
    }

    /* Responsive Breakpoints */
    @media (max-width: 768px) {
       

      .privileges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .privilege-card:not(:last-child)::after {
        display: none;
      }

      .footer-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .main-title {
        font-size: 2rem;
      }
    }

    @media (max-width: 480px) {
      .privileges-grid, .footer-bar {
        grid-template-columns: 1fr;
      }
    }
   .padtop100{padding-top: 220px;padding-bottom: 100px;}
   .inbanner{ position: absolute; right: 0;}

   .blog-section {
    background-color: #080606;
    background-image: radial-gradient(circle at 50% 30%, #15100e 0%, #080606 80%);
    color: #e0e0e0;
    padding: 80px 20px 40px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
  }

  .blog-container {
    max-width: unset;
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
  }

  /* Header Styling */
  .blog-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .blog-header .sub-heading {
    color: #d49a80; /* Rose Gold / Copper */
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
  }

  .blog-header .section-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  /* Card Layout */
  .blog-card-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 30px;
  }

  .blog-card {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 154, 128, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: flex-end;
    gap: 20px; padding: 40px;
  }

  .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .blog-card:hover .card-bg {
    transform: scale(1.05);
  }

  /* Dark Vignette Overlay for readability */
  .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg, 
      rgba(0, 0, 0, 0.1) 0%, 
      rgba(8, 6, 6, 0.6) 40%, 
      rgba(8, 6, 6, 0.95) 100%
    );
  }

  /* Card Inner Content */
  .card-content {
    position: relative;
    z-index: 2;
    /* padding: 35px 30px; */
    width: 100%;
  }

  .category-badge {
    display: inline-block;
    background-color: rgba(212, 154, 128, 0.2);
    color: #f3d2c1;
    border: 1px solid rgba(212, 154, 128, 0.4);
    backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 18px;
  }

  .card-title { 
    font-size: 1.8rem;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .card-description {
    font-size: 0.88rem;
    color: #bfa08d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
    max-width: 90%;
  }

  /* Learn More Button */
  .card-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #080606;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .card-btn:hover {
    background-color: #d49a80;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(212, 154, 128, 0.4);
  }

  /* Bottom Discover Button */
  .blog-actions {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
  }

  .discover-btn {
    display: inline-block;
    background-color: #120e0d;
    color: #ffffff;
    border: 1px solid rgba(212, 154, 128, 0.3);
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .discover-btn:hover {
    border-color: #d49a80;
    background-color: #1c1512;
    box-shadow: 0 0 20px rgba(212, 154, 128, 0.2);
  }

  /* Disclaimer Text */
  .blog-disclaimer {
    text-align: center;
    border-top: 1px solid rgba(212, 154, 128, 0.1);
    padding-top: 25px;
  }

  .blog-disclaimer p {
    font-size: 0.72rem;
    color: #665c54;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.5;
  }

  /* Mobile Adjustments */
  @media (max-width: 600px) {
    .blog-header .section-title {
      font-size: 1.5rem;
    }

    .blog-card {
      height: 420px;
    }

    .card-content {
      padding: 20px;
    }

    .card-title {
      font-size: 1.3rem;
    }

    .card-description {
      font-size: 0.8rem;
      max-width: 100%;
    }
  }
  .social-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #7a6b61;
    display: block;
    margin-bottom: 18px;
    text-transform: uppercase;
  }

  .social-icons {
    display: flex; 
    gap: 16px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 154, 128, 0.3);
    background: radial-gradient(circle, rgba(25, 18, 16, 0.8) 0%, rgba(6, 4, 4, 1) 100%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
    fill: #caa58d;
    stroke: #caa58d;
    stroke-width: 0;
    transition: all 0.3s ease;
  }

  /* Outlined SVG icons need stroke styling */
  .social-icon:nth-child(1) svg,
  .social-icon:nth-child(2) svg,
  .social-icon:nth-child(4) svg {
    fill: none;
    stroke: #caa58d;
    stroke-width: 1.8;
  }

  /* Solid filled SVG icons */
  .social-icon:nth-child(3) svg,
  .social-icon:nth-child(5) svg {
    fill: #caa58d;
    stroke: none;
  }

  /* Hover Effects */
  .social-icon:hover { 
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 154, 128, 0.25); 
  }

  .social-icon:hover svg {
    fill: #060404;
    stroke: #060404;
  }

  .social-icon:nth-child(3):hover svg,
  .social-icon:nth-child(5):hover svg {
    fill: #060404;
  }


   
@media (max-width: 767px) {
.cake-list{ display: block;}
    .shop-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .shop-grid {
        margin: 0 0px !important;
    }.mobile-nav{background: rgb(11 9 6 / 86%) !important;}
    .blog-card-grid{flex-direction: column;}
    .blog-card {
        height: unset;
        margin: 0 0 30px;
    }.float-btn {
    width: 35px !important;
    height: 35px !important;}
}



 .hero-title .char {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 20%, #e2c0a8 60%, #b3886b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    will-change: transform, opacity;
  }

  .hero-title .space {
    width: 0.35em;
  }

  /* Full title visible initially */
  .hero-title .char.show-full {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  /* Smooth Letter-by-Letter Exit Animations */
  .hero-title .char.fly-out-left {
    animation: flyOffLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .hero-title .char.fly-out-right {
    animation: flyOffRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes flyOffLeft {
    0% {
      opacity: 1;
      transform: translate(0, 0) rotate(0deg) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate(var(--moveX), var(--moveY)) rotate(var(--rotDeg)) scale(1.4);
      visibility: hidden;
    }
  }

  @keyframes flyOffRight {
    0% {
      opacity: 1;
      transform: translate(0, 0) rotate(0deg) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate(var(--moveX), var(--moveY)) rotate(var(--rotDeg)) scale(1.4);
      visibility: hidden;
    }
  }



  .signature-bowls-section {
    background-color: #0d0a09;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
  }

  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-header .sub-title {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #caa58d;
    display: block;
    margin-bottom: 8px;
  }

  .section-header .main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0;
  }

  .section-header .header-line {
    width: 60px;
    height: 1px;
    background: #caa58d;
    margin: 18px auto 0;
  }

  /* Bowl Card Styling */
  .bowl-card {
    background: #14100e;
    border: 1px solid rgba(202, 165, 141, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .bowl-card:hover {
    transform: translateY(-6px);
    border-color: #caa58d;
  }

  .card-image {
    position: relative;
    width: 100%; 
    overflow: hidden;
  }.card-content p{ padding: 0 20px;}

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

  .bowl-card:hover .card-image img {
    transform: scale(1.05);
  }

  .price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #caa58d;
    color: #060404;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
  }

  .card-content {
    padding: 24px 20px;
    text-align: center;
  }

  .card-content h3 { 
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ffffff;
  }

  .card-content p {
    font-size: 0.85rem;
    color: #bfa08d;
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 54px;
  }

  .order-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #caa58d;
    color: #caa58d;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .order-btn:hover {
    background: #caa58d;
    color: #060404;
  }

  /* Customizing Owl Carousel Dots & Nav */
  .owl-theme .owl-dots .owl-dot span {
    background: rgba(202, 165, 141, 0.3) !important;
  }

  .owl-theme .owl-dots .owl-dot.active span,
  .owl-theme .owl-dots .owl-dot:hover span {
    background: #caa58d !important;
  }

  .owl-theme .owl-nav [class*='owl-'] {
    color: #caa58d !important;
    font-size: 1.5rem !important;
    background: transparent !important;
  }

 .bowls-slider .owl-stage {
  display: flex;
  transition: none !important;
  will-change: transform;
}

.bowls-slider .owl-item {
  flex-shrink: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bowls-slider .owl-stage-outer {
  overflow: hidden;
}

.bowls-slider .owl-stage {
    display: flex;
    width: max-content !important;
}

@keyframes bowlContinuous {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

:root {
  --bg-dark: #0b0b0b;
  --bg-card: #141414;
  --accent-gold: #c5a059;
  --text-main: #f5f5f5;
  --text-muted: #999999;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  margin: 0;
}

/* Hero Section Split Layout */
.member-hero-section {
  padding: 100px 5% 60px 5%;
}

.member-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.member-hero-img img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.member-hero-content h1 {
  font-size: 42px;
  letter-spacing: 2px;
  line-height: 1.2;
  margin: 10px 0;
  font-family: 'Cinzel', serif;
}

.member-hero-content em {
  /* font-family: var(--font-serif); */
  color: var(--accent-gold);
}

.member-hero-content h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-family: 'Cinzel', serif;
}

.member-hero-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Ribbon Divider */
.ribbon-divider {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 3px;
  color: var(--accent-gold);
  font-size: 14px;
}

/* Privileges 3-Column / 2-Column Responsive Grid */
.privileges-section {
  padding: 80px 0;
}

.privileges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.privilege-card {
  background: var(--bg-card);
  padding: 35px 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  text-align: center;
}

.card-num {
  font-family: var(--font-serif);
  font-size: 50px;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 12px;
  font-family: 'Cinzel', serif;
}

.privilege-card h4 {
  font-size: 25px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
}

.privilege-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Membership CTA Block */
.cta-inner-card {
  background: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.3);
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.cta-inner-card h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.btn-gold {
  background: var(--accent-gold);
  color: #000;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  letter-spacing: 1px;
}

/* Sub Features Row */
.sub-features-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item h5 {
  margin: 0 0 5px 0;
  font-size: 16px;
}

.feature-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .member-hero-grid, .privileges-grid, .feature-grid {
    grid-template-columns: 1fr;
  }
}


/* Color & Theme Variables */
:root {
  --bg-dark: #0b0b0b;
  --bg-card: #141414;
  --accent-gold: #c5a059;
  --text-main: #f5f5f5;
  --text-muted: #999999;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  margin: 0;
}

/* Menu Page Hero */
.menu-hero {
  padding: 120px 0 40px 0;
}

.text-center {
  text-align: center;
}

.sub-heading {
  color: var(--accent-gold);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.menu-hero h1 {
  font-size: 48px;
  margin: 0 0 16px 0;
}

.menu-hero h1 em {
  font-family: var(--font-serif);
  color: var(--accent-gold);
}

.hero-subtext {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* Category Sticky Navigation Bar */
.category-nav-bar {
  position: sticky;
  top: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
  padding: 14px 0;
}

.cat-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  overflow-x: auto;
}

.cat-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}

.cat-link:hover, .cat-link.active {
  color: var(--accent-gold);
}

/* Menu Item Sections */
.menu-group-section {
  padding: 60px 0;
}

.alt-bg {
  background-color: var(--bg-card);
}

.group-header {
  margin-bottom: 40px;
}

.group-header h2 {
  font-size: 32px;
  margin: 0 0 8px 0;
}

.group-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 14px;
}

/* 2-Column Menu Grid Layout */
.menu-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}

.menu-card {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-item {
  border-left: 2px solid var(--accent-gold);
  background: rgba(197, 160, 89, 0.03);
}

.menu-item-head {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.item-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-main);
}

.item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  margin: 0 12px;
}

.item-price {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 16px;
}

.item-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

/* Signature Bowls Grid */
.bowls-section {
  padding: 80px 0;
}

.bowls-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.bowl-card {
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bowl-card img {
  width: 100%; 
  object-fit: cover;
}

.bowl-info {
  padding: 20px;
}

.bowl-info h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

.bowl-info p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .menu-grid-2col {
    grid-template-columns: 1fr;
  }
  .bowls-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-list div{flex-direction: column;text-align: left;}
}

@media (min-width: 768px) and (max-width:1024px){
.nav-links{gap: 20px;}

}


/* 1. Eliminate Horizontal Overflow & Right-Side Blank Space */
html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Fix Text Overlap in "The Lounge" Section */
.lounge-section, 
section.lounge, 
.snooker-banner {
  position: relative;
  overflow: hidden;
}

/* Ensure headline text wraps cleanly on smaller viewport widths */
.lounge-section h2, 
.lounge-content h2, 
.lounge-title {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Dynamically scales font down on mobile screens */
  line-height: 1.2;
}

/* 3. Ensure Grid & Flex Containers Do Not Exceed Screen Width */
.wrap, 
.container, 
.grid, 
.row { 
  padding-left: 15px;
  padding-right: 15px;
}
 .social-icon.youtube-icon svg {
    fill: currentColor;
    stroke: none;
}

/* Social icon base */
.social-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Instagram */
.social-icon.instagram-icon svg {
    stroke: #E4405F;
}

/* Facebook */
.social-icon.facebook-icon svg{
    stroke: #1877F2;
}

/* X / Twitter */
.social-icon.x-icon svg{
    fill: #ffffff;
}

/* LinkedIn */
.social-icon.linkedin-icon svg {
    stroke: #0A66C2;
}

/* YouTube */
.social-icon.youtube-icon svg {
    color: #ff6161;
}

/* Pinterest */
.social-icon.pinterest-icon svg {
    fill: #E60023;
}