/*
Theme Name: Night Guide Custom
Theme URI: https://example.com
Author: Your Name
Description: Modern dark nightclub-themed WordPress theme. Club + Event custom post types, no Pods/ACF dependency. Poppins font, animated hero sections, unique per-page forms, dropdown menus.
Version: 2.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: nightguide
*/

/* ===================== RESET / BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0d;
    color: #eee;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: #fff; font-weight: 600; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(20px, -30px) scale(1.1); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
    50%      { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.15s; }
.fade-in-up.delay-2 { animation-delay: 0.3s; }
.fade-in-up.delay-3 { animation-delay: 0.45s; }

/* ===================== HEADER ===================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(10, 10, 13, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.main-nav {
    margin-left: auto;
}

.main-nav > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav > ul > li > a:hover {
    color: #d4af37;
}

.main-nav .caret {
    display: inline-block;
    margin-left: 3px;
    font-size: 9px;
    vertical-align: middle;
}

/* ===================== DESKTOP DROPDOWN ===================== */

.has-dropdown .dropdown {
    display: flex;
    flex-direction: column;

    position: absolute;
    top: calc(100% + 8px);
    left: 0;

    width: 240px;
    min-width: 240px;

    margin: 0;
    padding: 8px;

    list-style: none;
    text-align: left;

    background: #16161c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);

    z-index: 10000;
}

/* Dropdown scrollbar */
.has-dropdown .dropdown::-webkit-scrollbar {
    width: 5px;
}

.has-dropdown .dropdown::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.has-dropdown .dropdown::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.45);
    border-radius: 10px;
}

.has-dropdown .dropdown::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* Firefox */
.has-dropdown .dropdown {
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.45) transparent;
}

/* Desktop hover */
.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Dropdown list */
.has-dropdown .dropdown li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.has-dropdown .dropdown li a {
    display: block;
    width: 100%;

    padding: 9px 12px;

    font-size: 13px;
    line-height: 1.4;

    color: #ccc;
    text-align: left;
    text-decoration: none;
    text-transform: none;

    border-radius: 5px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.has-dropdown .dropdown li a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

/* ===================== HEADER BUTTONS ===================== */

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.btn-header {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}

.btn-header-table {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn-header-table:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-header-whatsapp {
    background: #25D366;
    color: #08130c;
}

/* ===================== MOBILE MENU BUTTON ===================== */

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;
    margin: 0;

    align-items: center;
    justify-content: center;

    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    color: #fff;
    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.mobile-menu-toggle:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle .menu-close {
    display: none;
}

.mobile-menu-toggle.menu-open .menu-icon {
    display: none;
}

.mobile-menu-toggle.menu-open .menu-close {
    display: block;
}

/* ===================== BUTTONS (GLOBAL) ===================== */

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f5d576);
    color: #111;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.btn-whatsapp {
    background: #25D366;
    color: #08130c;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 6px;
}

/* ===================== HERO SECTIONS ===================== */
.hero {
    position: relative;
    padding: 120px 0 90px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at top, #1a1a22 0%, #0a0a0d 70%);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,13,0.2), rgba(10,10,13,0.95));
    z-index: 1;
}
.hero-glow {
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    animation: floatGlow 8s ease-in-out infinite;
    z-index: 0;
}
.glow-1 { background: #d4af37; top: -100px; left: -80px; }
.glow-2 { background: #7b2ff7; bottom: -120px; right: -80px; animation-delay: 2s; }

.hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(212,175,55,0.5);
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 20px;
}
.hero h1 { font-size: 46px; line-height: 1.2; margin-bottom: 18px; }
.hero p { color: #bbb; font-size: 16px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== HERO SLIDER (homepage - rotating clubs) ===================== */
.hero-slider {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: #0a0a0d;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-bg { position: absolute; inset: 0; }
.hero-slide-bg img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.08);
    animation: slowZoom 9s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(6,6,8,0.92) 15%, rgba(6,6,8,0.55) 55%, rgba(6,6,8,0.85) 100%),
                linear-gradient(0deg, rgba(6,6,8,0.95) 0%, rgba(6,6,8,0.1) 45%);
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 640px;
    text-align: left;
    padding-top: 40px;
}
.hero-slide-content h1 { font-size: 48px; margin: 16px 0 18px; line-height: 1.15; }
.hero-slide-content p { color: #ccc; margin-bottom: 24px; }
.hero-slide-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-slide-meta span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
}
.hero-slide-content .hero-buttons { justify-content: flex-start; }

.hero-slider-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.hero-dot.active { background: #d4af37; width: 28px; border-radius: 6px; }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(212,175,55,0.25); border-color: #d4af37; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* Page-specific hero tints */
.hero-page { padding: 100px 0 70px; }
.hero-guestlist { background: radial-gradient(ellipse at top, #241a05 0%, #0a0a0d 70%); }
.hero-table     { background: radial-gradient(ellipse at top, #1a0f24 0%, #0a0a0d 70%); }
.hero-birthday  { background: radial-gradient(ellipse at top, #240f1a 0%, #0a0a0d 70%); }
.hero-party     { background: radial-gradient(ellipse at top, #0f1a24 0%, #0a0a0d 70%); }
.hero-blog      { background: radial-gradient(ellipse at top, #14140f 0%, #0a0a0d 70%); }
.hero-clubs     { background: radial-gradient(ellipse at top, #101418 0%, #0a0a0d 70%); }

/* ===================== HOME SECTIONS ===================== */
.home-section { padding: 70px 0; }
.section-alt { background: #101014; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; }
.section-eyebrow { display: block; color: #d4af37; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.section-heading h2 { font-size: 30px; }
.section-sub { color: #999; margin-bottom: 30px; max-width: 700px; }
.view-all-link { color: #d4af37; font-size: 14px; font-weight: 600; white-space: nowrap; }
.view-all-link:hover { text-decoration: underline; }

/* ===================== PREMIUM CLUB CARDS (homepage) ===================== */
.club-grid-premium { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.club-card-premium {
    display: block;
    background: #14141a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.club-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.55);
    border-color: rgba(212,175,55,0.35);
}
.ccp-image { position: relative; height: 240px; overflow: hidden; }
.ccp-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.club-card-premium:hover .ccp-image img { transform: scale(1.08); }
.ccp-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a22, #26262f); }
.ccp-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,13,0) 35%, rgba(10,10,13,0.95) 100%);
}
.ccp-logo {
    position: absolute;
    top: 14px; left: 14px;
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.5);
    background: #0e0e12;
    z-index: 2;
}
.ccp-logo img { width: 100%; height: 100%; object-fit: cover; }
.ccp-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(212,175,55,0.9);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}
.ccp-text {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 18px;
    z-index: 2;
}
.ccp-text h3 { font-size: 19px; margin-bottom: 4px; }
.ccp-area { font-size: 13px; color: #ccc; }
.ccp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ccp-genre { font-size: 12px; color: #999; }
.ccp-cta { font-size: 13px; color: #d4af37; font-weight: 600; }

/* ===================== CLUB / EVENT / BLOG GRID ===================== */
.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.club-card {
    background: #14141a;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.club-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(0,0,0,0.5); }
.club-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.club-card-body { padding: 18px; }
.club-card-body h3 { font-size: 17px; margin-bottom: 4px; }
.club-card-body p { margin: 0 0 3px; font-size: 13px; color: #999; }

/* ===================== SINGLE CLUB HERO ===================== */
.club-hero-section { position: relative; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.club-hero-bg { position: absolute; inset: 0; }
.club-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.club-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,13,0.3) 0%, rgba(10,10,13,0.97) 90%);
}
.club-hero-inner { position: relative; z-index: 2; padding-bottom: 50px; width: 100%; }
.club-logo-badge {
    width: 90px; height: 90px; border-radius: 50%;
    overflow: hidden; border: 4px solid #0a0a0d; margin-bottom: 16px;
    background: #14141a;
}
.club-logo-badge img { width: 100%; height: 100%; object-fit: cover; }
.club-hero-inner h1 { font-size: 40px; margin-bottom: 4px; }
.club-area { color: #bbb; margin-bottom: 16px; }

.quick-info { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.quick-info .info-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* ===================== SINGLE CLUB TWO-COLUMN LAYOUT ===================== */
.club-single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    margin: 40px auto;
}
.club-main-col { min-width: 0; }
.club-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; align-self: start; }

.sidebar-card {
    background: #14141a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px;
}
.sidebar-card h3 { font-size: 16px; margin-bottom: 12px; }
.sidebar-card p { font-size: 13px; color: #bbb; margin-bottom: 6px; }

/* ===================== WHATSAPP BANNER ===================== */
.whatsapp-banner {
    background: linear-gradient(135deg, #1c3b2c, #0f2318);
    border: 1px solid rgba(37,211,102,0.4);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}
.whatsapp-banner p { color: #d5f5df; margin-bottom: 12px; font-size: 14px; font-weight: 500; }
.whatsapp-banner-wide { max-width: 700px; margin: 0 auto 30px; }
.whatsapp-banner .btn-whatsapp { animation: pulseGlow 2.5s infinite; }

/* ===================== BOOKING FORMS ===================== */
.booking-card h3 { color: #d4af37; }
.booking-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 12px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #0e0e12;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* ===================== GALLERY SLIDESHOW ===================== */
.club-gallery-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #14141a;
}
.club-gallery-slideshow .fade-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.club-gallery-slideshow .fade-slide.active { opacity: 1; }
.club-gallery-slideshow .fade-slide img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== CLUB CONTENT ===================== */
.club-content { margin-bottom: 30px; font-size: 15px; color: #ddd; }
.club-content h2 { margin: 26px 0 10px; font-size: 22px; }
.club-content p { margin-bottom: 14px; }

/* ===================== EVENTS ===================== */
.club-events-section { margin: 40px 0; }
.events-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; margin-top: 16px; }
.event-card {
    background: #14141a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    display: block;
    transition: transform 0.2s;
}
.event-card:hover { transform: translateY(-4px); }
.event-card img { width: 100%; height: 130px; object-fit: cover; }
.event-card-body { padding: 14px; }
.event-card-body h3 { font-size: 15px; margin-bottom: 4px; }
.event-card-body p { font-size: 12px; color: #999; }

/* ===================== FAQ ACCORDION ===================== */
.club-faqs { margin: 30px 0; }
.faq-item {
    background: #14141a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 10px;
}
.faq-item summary { cursor: pointer; font-weight: 600; color: #fff; }
.faq-item summary::marker { color: #d4af37; }
.faq-item p { margin-top: 10px; color: #bbb; font-size: 14px; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
    text-align: center;
    padding: 70px 0;
    background: linear-gradient(135deg, #1a1a22, #0a0a0d);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-banner h2 { font-size: 30px; margin-bottom: 10px; }
.cta-banner p { color: #999; margin-bottom: 24px; }

/* ===================== FOOTER ===================== */
.site-footer { background: #0e0e12; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 50px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 30px; padding-bottom: 30px; }
.footer-grid h4 { color: #d4af37; margin-bottom: 14px; font-size: 15px; }
.footer-grid a { display: block; color: #999; margin-bottom: 8px; font-size: 13px; transition: color 0.2s; }
.footer-grid a:hover { color: #d4af37; }
.footer-brand .footer-logo img { height: 40px; margin-bottom: 14px; }
.footer-brand p { color: #888; font-size: 13px; margin-bottom: 18px; max-width: 280px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #ccc;
    transition: background 0.2s, color 0.2s;
}
.social-icons a:hover { background: #d4af37; color: #111; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; text-align: center; font-size: 12px; color: #666; }

/* ===================== PAGE INTRO CONTENT (guestlist/table/birthday/party) ===================== */
.page-intro { max-width: 780px; margin: 0 auto 40px; text-align: center; color: #bbb; font-size: 15px; }
.page-intro h2 { color: #fff; font-size: 22px; margin-bottom: 12px; }

/* ===================== MULTI-CTA GRID (used on multiple pages) ===================== */
.multi-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 30px 0;
}
.multi-cta-card {
    background: #14141a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}
.multi-cta-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.4); }
.multi-cta-card .cta-icon { font-size: 28px; margin-bottom: 10px; }
.multi-cta-card h3 { font-size: 16px; margin-bottom: 8px; }
.multi-cta-card p { font-size: 13px; color: #999; margin-bottom: 16px; }

/* ===================== CONTACT PAGE ===================== */
.contact-cta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0 50px; }

/* ===================== ABOUT TEASER (homepage) ===================== */
.about-teaser { padding: 70px 0; text-align: center; }
.about-teaser-inner { max-width: 720px; margin: 0 auto; }
.about-teaser p { color: #aaa; font-size: 15px; margin: 16px 0 24px; }

/* ===================== BLOG LAYOUT (list + single) ===================== */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; margin: 40px auto; }
.blog-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; align-self: start; }
.blog-sidebar .sidebar-card ul { list-style: none; }
.blog-sidebar .sidebar-card li { margin-bottom: 8px; }
.blog-sidebar .sidebar-card li a { color: #ccc; font-size: 13px; }
.blog-sidebar .sidebar-card li a:hover { color: #d4af37; }
.blog-post-card { background: #14141a; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; transition: transform 0.25s; }
.blog-post-card:hover { transform: translateY(-4px); }
.blog-post-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-post-card-body { padding: 20px; }
.blog-post-card-body h2, .blog-post-card-body h3 { margin-bottom: 8px; }
.blog-post-meta { font-size: 12px; color: #888; margin-bottom: 10px; }
.blog-single-content { font-size: 15px; color: #ddd; }
.blog-single-content img { border-radius: 12px; margin: 16px 0; }
.blog-single-content h2 { margin: 24px 0 10px; }
.related-posts { margin-top: 50px; }
.related-posts h2 { margin-bottom: 20px; }

/* ===================== EVENTS ARCHIVE / HOMEPAGE EVENTS ===================== */
.events-home-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }


/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {

    .container {
        padding: 0 18px;
    }

    /* ===================== HEADER ===================== */

    .site-header {
        z-index: 9999;
    }

    .site-header-inner {
        min-height: 66px;
        padding: 12px 18px;
        gap: 12px;
    }

    .logo {
        margin-right: auto;
    }

    .logo img {
        height: 40px;
    }

    /* Hide desktop header button */
    .header-actions {
        display: none;
    }

    /* Mobile menu button */
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    /* ===================== MOBILE NAV ===================== */

    .main-nav {
        position: fixed;

        top: 66px;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: calc(100vh - 66px);
        height: calc(100dvh - 66px);

        margin: 0;
        padding: 10px 14px 30px;

        display: none;

        background: #0e0e12;

        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        overflow-y: auto;
        overflow-x: hidden;

        z-index: 9998;

        -webkit-overflow-scrolling: touch;
    }

    .main-nav.nav-open {
        display: block;
    }

    /* Mobile nav scrollbar */
    .main-nav::-webkit-scrollbar {
        width: 5px;
    }

    .main-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .main-nav::-webkit-scrollbar-thumb {
        background: rgba(212, 175, 55, 0.4);
        border-radius: 10px;
    }

    .main-nav::-webkit-scrollbar-thumb:hover {
        background: #d4af37;
    }

    .main-nav {
        scrollbar-width: thin;
        scrollbar-color: rgba(212, 175, 55, 0.4) transparent;
    }

    /* Prevent page scrolling while mobile menu is open */
    body.mobile-menu-active {
        overflow: hidden;
    }

    /* ===================== MOBILE MAIN LIST ===================== */

    .main-nav > ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        width: 100%;

        margin: 0;
        padding: 0;

        gap: 0;
    }

    .main-nav > ul > li {
        width: 100%;
        position: relative;
    }

    .main-nav > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 15px 10px;

        font-size: 14px;
        line-height: 1.3;

        color: #ccc;

        border-bottom: 1px solid rgba(255, 255, 255, 0.05);

        text-align: left;
    }

    .main-nav > ul > li > a:hover {
        color: #d4af37;
    }

    /* Dropdown arrow */
    .main-nav .caret {
        margin-left: auto;
        font-size: 10px;

        transition: transform 0.2s ease;
    }

    .has-dropdown.dropdown-open > a .caret {
        transform: rotate(180deg);
    }

    /* ===================== MOBILE DROPDOWN ===================== */

    .has-dropdown .dropdown {
        position: static;

        width: 100%;
        min-width: 0;

        margin: 0;
        padding: 5px 0;

        display: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;

        max-height: none;
        overflow: visible;

        background: rgba(255, 255, 255, 0.025);

        border: none;
        border-radius: 0;

        box-shadow: none;
    }

    .has-dropdown.dropdown-open > .dropdown {
        display: flex;
    }

    .has-dropdown .dropdown li {
        width: 100%;
    }

    .has-dropdown .dropdown li a {
        width: 100%;

        padding: 12px 20px 12px 24px;

        font-size: 13px;
        line-height: 1.4;

        color: #aaa;

        text-align: left;

        border-radius: 0;
        border-left: 2px solid transparent;
    }

    .has-dropdown .dropdown li a:hover,
    .has-dropdown .dropdown li a:focus {
        background: rgba(212, 175, 55, 0.08);
        color: #d4af37;
        border-left-color: #d4af37;
    }

    /* ===================== OTHER CONTENT ===================== */

    .club-single-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 24px auto;
    }

    .club-main-col {
        order: 1;
    }

    .club-sidebar {
        position: static;
        order: 2;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-slider {
        height: 540px;
    }

    .hero-slide-content {
        text-align: center;
        align-items: center;
        margin: 0 auto;
        padding: 0 6px;
    }

    .hero-slide-content h1 {
        font-size: 28px;
    }

    .hero-slide-meta,
    .hero-slide-content .hero-buttons {
        justify-content: center;
    }

    .hero-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .hero-arrow-prev {
        left: 8px;
    }

    .hero-arrow-next {
        right: 8px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .club-grid,
    .club-grid-premium {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .events-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: left;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        order: 2;
    }

    .contact-cta-grid {
        grid-template-columns: 1fr;
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}


/* ===================== SMALL MOBILE ===================== */

@media (max-width: 480px) {

    .container {
        padding: 0 14px;
    }

    .site-header-inner {
        padding: 11px 14px;
    }

    .logo img {
        height: 38px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .main-nav {
        top: 64px;
        height: calc(100vh - 64px);
        height: calc(100dvh - 64px);
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-slide-content h1 {
        font-size: 24px;
    }

    .club-hero-inner h1 {
        font-size: 28px;
    }

    .ccp-image {
        height: 200px;
    }
}