/* Upper Echelon Social Club - Complete Stylesheet */


  /* ── Single Event Page ── */

        .event-hero {
            position: relative;
            height: 70vh;
            min-height: 480px;
            overflow: hidden;
        }

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

        .event-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(10,16,28,0.25) 0%,
                rgba(10,16,28,0.75) 100%
            );
        }

        .event-hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem 4rem;
            color: #fff;
        }

        .event-hero-back {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Cinzel', serif;
            font-size: 10px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--accent-gold);
            text-decoration: none;
            margin-bottom: 1.4rem;
            transition: opacity 0.2s;
        }

        .event-hero-back:hover { opacity: 0.75; }

        .event-hero-back::before {
            content: '&#8592;';
            font-size: 14px;
        }

        .event-hero-category {
            font-family: 'Cinzel', serif;
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0.8rem;
            display: block;
        }

        .event-hero-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(2rem, 5vw, 3.6rem);
            font-weight: 400;
            letter-spacing: 0.06em;
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        .event-hero-date {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.2rem;
            color: rgba(255,255,255,0.75);
        }

        /* ── Event body layout ── */
        .event-body {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem 6rem;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 5rem;
            align-items: start;
        }

        /* ── Main content ── */
        .event-main h2 {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.6rem;
            border-bottom: 1px solid rgba(212,175,55,0.35);
        }

        .event-main p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .event-highlights {
            list-style: none;
            padding: 0;
            margin: 0 0 3rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .event-highlights li {
            display: flex;
            align-items: flex-start;
            gap: 0.9rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .event-highlights li::before {
            content: '&#9670;';
            color: var(--accent-gold);
            font-size: 7px;
            flex-shrink: 0;
            margin-top: 7px;
        }

        /* Schedule table */
        .event-schedule {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 3rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .event-schedule thead tr {
            background: var(--primary-color);
            color: #fff;
        }

        .event-schedule thead th {
            font-family: 'Cinzel', serif;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 12px 16px;
            text-align: left;
            font-weight: 400;
        }

        .event-schedule tbody tr {
            border-bottom: 1px solid rgba(0,0,0,0.07);
        }

        .event-schedule tbody tr:last-child { border-bottom: none; }

        .event-schedule tbody tr:nth-child(even) {
            background: var(--background-light);
        }

        .event-schedule tbody td {
            padding: 12px 16px;
            font-size: 1.05rem;
            color: var(--text-light);
            vertical-align: top;
        }

        .event-schedule tbody td:first-child {
            color: var(--primary-color);
            font-weight: 600;
            white-space: nowrap;
            width: 110px;
        }

        /* Dress code badge */
        .dress-code-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--background-light);
            border-left: 3px solid var(--accent-gold);
            padding: 0.8rem 1.2rem;
            margin-bottom: 3rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .dress-code-badge strong {
            font-family: 'Cinzel', serif;
            font-size: 10px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--primary-color);
        }

        /* Gallery strip */
        .event-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 3rem;
        }

        .event-gallery img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            display: block;
            transition: opacity 0.2s;
        }

        .event-gallery img:hover { opacity: 0.88; }

        /* ── Sidebar ── */
        .event-sidebar {
            position: sticky;
            top: 100px;
        }

        .event-info-card {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.09);
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        }

        .event-info-card-header {
            background: var(--primary-color);
            padding: 1.4rem 1.6rem;
        }

        .event-info-card-header h3 {
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent-gold);
            font-weight: 400;
        }

        .event-info-rows {
            padding: 0;
        }

        .event-info-row {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem 1.6rem;
            border-bottom: 1px solid rgba(0,0,0,0.07);
        }

        .event-info-row:last-child { border-bottom: none; }

        .event-info-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .event-info-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--accent-gold);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .event-info-label {
            font-family: 'Cinzel', serif;
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--accent-gold);
            display: block;
            margin-bottom: 0.2rem;
        }

        .event-info-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem;
            color: var(--primary-color);
            line-height: 1.5;
        }

        .event-register-btn {
            display: block;
            text-align: center;
            background: var(--primary-color);
            color: #fff;
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 16px;
            border: 2px solid var(--primary-color);
            margin: 1.6rem 1.6rem 0;
            transition: background 0.2s, color 0.2s;
        }

        .event-register-btn:hover {
            background: transparent;
            color: var(--primary-color);
        }

        .event-enquire-btn {
            display: block;
            text-align: center;
            background: transparent;
            color: var(--text-light);
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 14px 16px;
            border: 1px solid rgba(0,0,0,0.15);
            margin: 0.8rem 1.6rem 1.6rem;
            transition: border-color 0.2s, color 0.2s;
        }

        .event-enquire-btn:hover {
            border-color: var(--accent-gold);
            color: var(--primary-color);
        }

        /* ── Related events ── */
        .related-events {
            background: var(--background-light);
            padding: 5rem 2rem;
        }

        .related-events-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .related-events h2 {
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
            padding-bottom: 0.6rem;
            border-bottom: 1px solid rgba(212,175,55,0.35);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .related-card {
            background: #fff;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.1);
        }

        .related-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }

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

        .related-card-body {
            padding: 1.4rem;
        }

        .related-card-date {
            font-family: 'Cinzel', serif;
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
            display: block;
        }

        .related-card-title {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            letter-spacing: 0.06em;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .related-card-desc {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ── Back to all events link ── */
        .back-bar {
            background: var(--primary-color);
            padding: 1.2rem 2rem;
            text-align: center;
        }

        .back-bar a {
            font-family: 'Cinzel', serif;
            font-size: 10px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--accent-gold);
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .back-bar a:hover { opacity: 0.7; }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .event-body {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .event-sidebar { position: static; }
            .event-hero-content { padding: 2rem; }
            .related-grid { grid-template-columns: 1fr; }
            .event-gallery { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .event-hero { height: 55vh; }
            .event-body { padding: 3rem 1.2rem 4rem; }
            .related-events { padding: 3rem 1.2rem; }
            .event-gallery { grid-template-columns: 1fr; }
        }
   

/* ─── Footer Emblem ─── */
.footer-emblem-container {
    text-align: center;
    padding-bottom: 2rem;
    width: 100%;
}

.footer-emblem {
    width: 120px;
    height: auto;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.3));
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.footer-emblem:hover {
    transform: scale(1.05);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-emblem { width: 100px; }
}

/* ─── Club Section Backgrounds ─── */
.section-town-club {
    background-color: #f8f5f0;
    padding: 80px 0;
    margin-bottom: 0;
    margin-top: -80px;
}

.section-beach-club {
    background-color: #f0f7f9;
    padding: 80px 0;
}

/* ─── Variables ─── */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-gold: #d4af37;
    --accent-gold-light: #e8cc74;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --background-light: #f8f8f8;
    --white: #ffffff;
    --overlay-dark: rgba(26, 26, 26, 0.7);
    --header-bg: #2F3D53;
    --header-bg-dark: #1a2535;
    --nav-double-line-gap: 4px;
}

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

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: 1px;
}

/* ─── Top Bar ─── */
.top-bar {
    display: block;
    background: var(--header-bg-dark);
    color: rgba(255,255,255,0.55);
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 0;
}

body.has-hero-slider .top-bar {
    display: none;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: var(--accent-gold-light);
}

/* ─── Header ─── */
header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(26, 36, 53, 0.97);
    backdrop-filter: blur(12px);
    position: fixed;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

header.scrolled .header-top-row {
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

body:not(.has-hero-slider) header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.header-container {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.header-top-row {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 200px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.4s ease, padding 0.4s ease,
                opacity 0.3s ease, margin 0.4s ease;
}

body:not(.has-hero-slider) .header-top-row {
    padding: 18px 2rem 14px;
}

.header-button {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 10px 22px;
    display: inline-block;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.header-button:hover {
    background: rgba(212,175,55,0.15);
    border-color: var(--accent-gold);
    color: var(--accent-gold-light);
}

/* ─── Logo ─── */
.logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.logo img {
    height: 130px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6));
    transition: height 0.3s ease, filter 0.3s ease;
}

body:not(.has-hero-slider) .logo img {
    height: 130px;
    width: auto;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}

.logo h1 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo p {
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -5px;
}

/* ─── Double-line nav wrapper ─── */
.nav-double-line-wrapper {
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.55);
}

.nav-double-line-wrapper::before {
    content: '';
    position: absolute;
    top: var(--nav-double-line-gap);
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.25);
    pointer-events: none;
}

.nav-double-line-wrapper::after {
    content: '';
    position: absolute;
    bottom: var(--nav-double-line-gap);
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.25);
    pointer-events: none;
}

/* ─── Navigation ─── */
nav {
    position: relative;
    z-index: 100;
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 0;
}

nav ul > li {
    display: flex;
    align-items: center;
    position: relative;
}

nav ul > li + li::before {
    content: '◆';
    color: var(--accent-gold);
    font-size: 7px;
    opacity: 0.65;
    line-height: 1;
    flex-shrink: 0;
    margin: 0 2px;
    pointer-events: none;
}

nav a {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: block;
    padding: 15px 13px;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 13px;
    right: 13px;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: center;
}

nav a:hover       { color: var(--accent-gold-light); }
nav a:hover::after,
nav a.active::after { transform: scaleX(1); }
nav a.active      { color: var(--accent-gold-light); }

/* ─── Dropdown Menu ─── */
nav ul li.has-dropdown {
    position: relative;
}

nav ul li.has-dropdown:hover > .dropdown,
nav ul li.has-dropdown.is-open > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

nav ul .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    list-style: none;
    padding: 8px 0;
    background: var(--header-bg);
    border-top: 2px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, visibility 0.3s ease,
                transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 200;
    pointer-events: none;
}

nav ul .dropdown li + li::before { display: none; }

nav ul .dropdown li a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
    color: rgba(255,255,255,0.85);
    text-shadow: none;
    padding: 11px 24px;
    display: block;
    white-space: nowrap;
    transition: background 0.2s ease, padding-left 0.2s ease, color 0.2s ease;
}

nav ul .dropdown li a::after { display: none; }

nav ul .dropdown li a:hover {
    background: rgba(255,255,255,0.07);
    padding-left: 30px;
    color: var(--accent-gold-light);
}

/* ─── Dropdown toggle button ─── */
.dropdown-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    flex-shrink: 0;
    background: none;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    color: rgba(255,255,255,0.6);
    padding: 0;
    align-self: stretch;
    transition: color 0.2s, background 0.2s;
}

.dropdown-toggle:hover {
    color: var(--accent-gold-light);
    background: rgba(255,255,255,0.05);
}

.dropdown-toggle .chevron {
    display: inline-block;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown.is-open > .dropdown-toggle { color: var(--accent-gold); }
.has-dropdown.is-open > .dropdown-toggle .chevron { transform: rotate(180deg); }

/* ─── Mobile Toggle (hamburger) ─── */
/*
  margin-left: auto pushes the button to the far right of .header-top-row
  when .header-button links are hidden at mobile width.
  justify-content: center keeps the three bars vertically centred.
*/
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-left: auto;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px); }

/* ─── Hero Slider ─── */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide video,
.slide iframe,
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide video,
.slide iframe {
    position: absolute;
    top: 0; left: 0;
}

.slide iframe { pointer-events: none; }

.slide.has-video.video-loaded img,
.slide.has-youtube img { display: none; }

.slide.video-error video,
.slide.video-error iframe { display: none; }
.slide.video-error img    { display: block; }

.slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    margin-top: 100px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #050a1c;
    color: var(--white);
    padding: 1rem 3rem;
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s;
}

.cta-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

/* ─── Slider Controls ─── */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(212,175,55,0.3);
    border-color: var(--accent-gold);
}

.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }

/* ─── Container & Sections ─── */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1;
}

.section-subtitle {
    font-size: 1.24rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ─── Two Column Layout ─── */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 0 !important;
    padding: 20px 0;
    margin-top: -60px;
}

.column-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.column-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
}

.column-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ─── Three Column Grid ─── */
.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-10px); }

.feature-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── Image Grid Gallery ─── */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.image-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s;
}

.image-card:hover .image-overlay { transform: translateY(0); }

/* ─── Events ─── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.event-card {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.event-image    { width: 100%; height: 300px; object-fit: cover; }
.event-content  { padding: 2rem; }

.event-date {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.event-title       { font-size: 1.8rem; margin-bottom: 1rem; color: var(--primary-color); }
.event-description { color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; }

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.read-more:hover { color: var(--accent-gold); }

/* ─── Full Width Banner ─── */
.full-width-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 2rem;
    position: relative;
    margin: 0;
}

body:not(.has-hero-slider) .full-width-banner:first-of-type {
    margin-top: 0;
    padding-top: 10rem;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--overlay-dark);
}

.banner-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    margin-top: -25px;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 0;
    font-weight: bold;
	line-height:55px;
    
}

.banner-content p {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* ─── Member Directory ─── */
.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.member-card {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.member-photo    { width: 100%; height: auto; object-fit: cover; }
.member-info     { padding: 1.5rem; text-align: center; }
.member-name     { font-size: 1.4rem; color: var(--primary-color); margin-bottom: 0.5rem; font-weight: 400; }
.member-title    { color: #e38a17; font-size: 1rem; font-style: italic; font-weight: 600; }

.leader-title {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-style: italic;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-weight: bold;
}

.leader-name {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-align: center;
}

/* ─── Gallery Modal ─── */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s;
}

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

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%; max-height: 90%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to   { transform: translate(-50%, -50%) scale(1); }
}

.close-modal {
    position: absolute;
    top: 30px; right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover { color: var(--accent-gold); }

/* ─── Video Grid ─── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.video-caption    { padding: 1.5rem; }
.video-caption h4 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--primary-color); }
.video-caption p  { color: var(--text-light); }

/* ─── Footer ─── */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section p          { line-height: 1.8; opacity: 0.9; }
.footer-section ul         { list-style: none; }
.footer-section ul li      { margin-bottom: 0.8rem; }

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-section a:hover { opacity: 1; color: var(--accent-gold); }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

/* ─── Values & Aims two-column layout ─── */
.values-aims-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 3.5rem;
    align-items: start;
}

.col-heading {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212,175,55,0.35);
}

.col-divider {
    background: rgba(212,175,55,0.3);
    width: 1px;
    align-self: stretch;
    margin: 0;
}

.values-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.values-col .feature-card {
    text-align: left;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.values-col .feature-card:last-child { border-bottom: none; }

.values-col .feature-icon {
    font-size: 1.4rem;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.values-col .feature-card h4 {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.values-col .feature-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.aims-col {
    display: flex;
    flex-direction: column;
}

.aims-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.aims-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aims-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.aims-list li:last-child { border-bottom: none; }

.aims-marker {
    color: var(--accent-gold);
    font-size: 8px;
    margin-top: 6px;
    flex-shrink: 0;
}

.aims-list strong {
    display: block;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.aims-list p {
    font-size: 1.13rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .values-aims-grid {
        grid-template-columns: 1fr;
        gap: 3rem 0;
    }
    .col-divider {
        width: 100%;
        height: 1px;
    }
}

/* ─── Meetings & Governance ─── */
.governance-section {
    width: 100%;
    background: var(--primary-color);
    margin: 0;
    padding: 0;
}

.governance-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.governance-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.governance-title {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1rem;
}

.governance-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent-gold);
    margin-top: 1rem;
}

.governance-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.governance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.governance-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.governance-list li:last-child { border-bottom: none; }

.gov-marker {
    color: var(--accent-gold);
    font-size: 8px;
    margin-top: 6px;
    flex-shrink: 0;
}

.governance-list strong {
    display: block;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.governance-list p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

.governance-image {
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.governance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}

.governance-image:hover img {
    transform: scale(1.03);
    filter: brightness(0.95);
}

.governance-image-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(26,26,26,0.75);
    color: var(--accent-gold);
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(4px);
    border-left: 2px solid var(--accent-gold);
}

@media (max-width: 768px) {
    .governance-inner { grid-template-columns: 1fr; }
    .governance-image { min-height: 280px; order: -1; }
    .governance-content { padding: 3rem 1.5rem; }
    .governance-title { font-size: 2rem; }
}

/* ─── Executive Leadership ─── */
.leadership-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.leader-card {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}

.leader-photo-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--background-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-photo-wrap img { transform: scale(1.04); }

.leader-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leader-responsibilities { flex: 1; }

.resp-heading {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.resp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.resp-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.resp-list li::before {
    content: '◆';
    color: var(--accent-gold);
    font-size: 6px;
    margin-top: 7px;
    flex-shrink: 0;
}

/* ─── Notable Achievements ─── */
.achievements-section {
    width: 100%;
    background: var(--background-light);
    margin: 4rem 0;
    padding: 0;
}

.achievements-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.achievements-image {
    overflow: hidden;
    min-height: 560px;
}

.achievements-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.achievements-image:hover img { transform: scale(1.03); }

.achievements-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.achievements-title {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.achievements-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent-gold);
    margin-top: 1rem;
}

.achievements-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.achievements-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.achievements-list li:last-child { border-bottom: none; }

.achievements-marker {
    color: var(--accent-gold);
    font-size: 8px;
    margin-top: 6px;
    flex-shrink: 0;
}

.achievements-list strong {
    display: block;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.achievements-list p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ─── Contact Page ─── */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 320px;
    background-image: url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.65);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.contact-hero-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.contact-hero-content p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
}

.contact-section {
    padding: 6rem 2rem;
    background: #fff;
}

.contact-center {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
}

.contact-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
}

.contact-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 0;
}

.contact-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent-gold);
    margin: 1rem auto 0;
}

.contact-intro {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1.6rem;
    margin-bottom: 3.5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-align: left;
}

.contact-card:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.contact-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border: 1px solid rgba(212,175,55,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background 0.2s, border-color 0.2s;
}

.contact-card:hover .contact-icon {
    background: rgba(212,175,55,0.08);
    border-color: var(--accent-gold);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card-body { flex: 1; }

.contact-card-label {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
    display: block;
}

.contact-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-card-detail {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.9;
}

.contact-card-detail a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card-detail a:hover { color: var(--accent-gold); }

.detail-note {
    margin-top: 0.35rem;
    font-size: 1.3rem;
    opacity: 0.65;
    font-style: italic;
}

.contact-hours {
    margin-top: 3rem;
    padding: 1.8rem 2rem;
    background: var(--background-light);
    border-left: 3px solid var(--accent-gold);
    text-align: left;
}

.contact-hours h4 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hours-grid strong { color: var(--primary-color); display: block; }

.map-section {
    width: 100%;
    position: relative;
}

.map-badge {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.6rem 1.6rem;
    border-left: 3px solid var(--accent-gold);
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
    filter: grayscale(15%) contrast(1.05);
}

/* ─── Main Responsive ─── */
@media (max-width: 1200px) {
    .slide-content h2  { font-size: 3rem; }
    .three-column      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    nav a {
        padding: 15px 9px;
        font-size: 12px;
        letter-spacing: 0.09em;
    }
    nav ul > li + li::before { margin: 0 1px; }
}

@media (max-width: 768px) {
    .top-bar-container { flex-direction: column; gap: 0.5rem; }

    .header-container  { padding: 0; position: relative; }

    .header-top-row    { padding: 16px 1.5rem 12px; }

    .header-button     { display: none; }

    .logo img          { height: 72px !important; }

    .mobile-toggle     { display: flex; }

    /* Both double-line borders hidden on mobile */
    .nav-double-line-wrapper {
        border-top: none;
        border-bottom: none;
    }
    .nav-double-line-wrapper::before,
    .nav-double-line-wrapper::after { display: none; }

    /* Nav drops as a panel below the full header */
    nav {
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: rgba(26, 36, 53, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 12px rgba(0,0,0,0.35);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        border-top: 2px solid rgba(212,175,55,0.5);
    }

    nav.mobile-active { max-height: 1200px; }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }

    nav ul > li {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    nav ul > li:last-child { border-bottom: none; }

    nav ul > li + li::before { display: none; }

    nav a {
        display: block;
        flex: 1;
        padding: 14px 2rem;
        font-size: 11px;
        text-align: left;
        color: rgba(255,255,255,0.85);
        text-shadow: none;
    }

    nav a::after { display: none; }

    .dropdown-toggle { display: flex; }

    /* Mobile dropdown — inline accordion */
    nav ul .dropdown {
        position: static !important;
        width: 100%;
        flex-basis: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-left: 3px solid var(--accent-gold);
        background: rgba(0,0,0,0.25);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        pointer-events: none;
        z-index: auto;
    }

    nav ul li.has-dropdown.is-open > .dropdown {
        max-height: 500px;
        pointer-events: auto;
    }

    nav ul .dropdown li { border-bottom: none; flex-wrap: nowrap; }

    nav ul .dropdown li a {
        padding: 11px 2.5rem;
        font-size: 0.95rem;
        flex: none;
        width: 100%;
    }

    .hero-slider       { height: 60vh; }
    .slide-content h2  { font-size: 2rem; }
    .slide-content p   { font-size: 1rem; }

    .slider-arrow      { padding: 0.5rem 1rem; font-size: 1rem; }
    .slider-arrow.prev { left: 20px; }
    .slider-arrow.next { right: 20px; }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .three-column,
    .image-grid,
    .events-grid,
    .member-grid,
    .video-grid { grid-template-columns: 1fr; }

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

    .column-image img { height: auto; max-height: 400px; object-fit: cover; }

    /* Achievements */
    .achievements-inner { grid-template-columns: 1fr; }
    .achievements-image { min-height: 280px; }
    .achievements-content { padding: 3rem 1.5rem; }
    .achievements-title { font-size: 2rem; }

    /* Leadership */
    .leadership-section { padding: 3rem 1rem; }
    .leadership-grid { grid-template-columns: 1fr; gap: 2rem; }
    .leader-photo-wrap { aspect-ratio: 4 / 3; }
    .leader-info { padding: 1.2rem; }

    /* Contact */
    .contact-section { padding: 4rem 1.2rem; }
    .contact-card { gap: 1rem; }
    .contact-icon { width: 44px; height: 44px; }
    .contact-icon svg { width: 18px; height: 18px; }
    .hours-grid { grid-template-columns: 1fr; }
    .map-section iframe { height: 320px; }
    .map-badge { font-size: 9px; padding: 0.5rem 1rem; }
}

@media (max-width: 480px) {
    .column-image img { max-height: 250px; }
}

@media (min-width: 481px) and (max-width: 767px) {
    .column-image img { max-height: 350px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .column-image img { height: 450px; }
}

@media (max-height: 500px) and (orientation: landscape) {
    .column-image img { max-height: 200px; }
}
/* ═══════════════════════════════════════════════
   ─── Membership Page ───────────────────────────
   ═══════════════════════════════════════════════ */

/* ── Hero ── */
/* ── Intro statement ── */
.mem-intro {
    background: #fff;
    text-align: center;
    padding: 6rem 2rem;
}

.mem-intro-inner {
    max-width: 820px;
    margin: 0 auto;
}

.mem-intro-label {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.4rem;
    display: block;
}

.mem-intro-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 1.6rem;
}

.mem-intro-copy {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* ── Alternating pillar sections ── */
.mem-pillar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 560px;
}

.mem-pillar.reverse { direction: rtl; }
.mem-pillar.reverse > * { direction: ltr; }

.mem-pillar-img {
    overflow: hidden;
    position: relative;
}

.mem-pillar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.mem-pillar-img:hover img { transform: scale(1.04); }

.mem-pillar-body {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.mem-pillar.dark .mem-pillar-body {
    background: var(--primary-color);
}

.mem-pillar-label {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    display: block;
}

.mem-pillar-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

.mem-pillar-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    margin-top: 1rem;
}

.mem-pillar.dark .mem-pillar-title { color: var(--white); }

.mem-pillar-copy {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-top: 1.4rem;
}

.mem-pillar.dark .mem-pillar-copy { color: rgba(255,255,255,0.65); }

.mem-pillar-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mem-pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.mem-pillar.dark .mem-pillar-list li { color: rgba(255,255,255,0.65); }

.mem-pillar-list li::before {
    content: '◆';
    color: var(--accent-gold);
    font-size: 7px;
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── Membership categories grid ── */
.mem-categories {
    background: var(--background-light);
    padding: 6rem 2rem;
}

.mem-categories-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mem-cat-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mem-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
}

.mem-cat-card {
    background: #fff;
    padding: 2.8rem 2.4rem;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mem-cat-card:hover {
    border-bottom-color: var(--accent-gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.mem-cat-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.mem-cat-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.mem-cat-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ── Testimonials ── */
.mem-testimonials {
    background: var(--primary-color);
    padding: 6rem 2rem;
    text-align: center;
}

.mem-testimonials-inner {
    max-width: 860px;
    margin: 0 auto;
}

.mem-test-label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 3rem;
    display: block;
}

.mem-test-track {
    position: relative;
    min-height: 220px;
}

.mem-test-item {
    display: none;
    animation: fadeTestIn 0.6s ease;
}

.mem-test-item.active { display: block; }

@keyframes fadeTestIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mem-test-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.mem-test-author {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.mem-test-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2.5rem;
}

.mem-test-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(212,175,55,0.4);
    cursor: pointer;
    transition: background 0.2s;
}

.mem-test-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* ── Process steps ── */
.mem-process {
    background: #fff;
    padding: 6rem 2rem;
}

.mem-process-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.mem-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.mem-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.666% + 20px);
    right: calc(16.666% + 20px);
    height: 1px;
    background: rgba(212,175,55,0.3);
}

.mem-step {
    text-align: center;
    padding: 0 2rem;
}

.mem-step-num {
    width: 56px;
    height: 56px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--accent-gold);
    background: #fff;
    position: relative;
    z-index: 1;
}

.mem-step-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.mem-step-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ── Final CTA banner ── */
.mem-cta-banner {
    position: relative;
    background-image: url('../images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 9rem 2rem;
    text-align: center;
}

.mem-cta-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,16,28,0.72);
}

.mem-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.mem-cta-label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.4rem;
    display: block;
}

.mem-cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 1.4rem;
    line-height: 1.25;
}

.mem-cta-copy {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2.8rem;
}

.mem-cta-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mem-cta-btns a {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 36px;
    display: inline-block;
    transition: all 0.3s;
}

.mem-btn-primary {
    background: var(--accent-gold);
    color: var(--primary-color);
    border: 1px solid var(--accent-gold);
}

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

.mem-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.45);
}

.mem-btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ── Membership responsive ── */
@media (max-width: 900px) {
    .mem-pillar,
    .mem-pillar.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .mem-pillar-img { min-height: 300px; }
    .mem-pillar-body { padding: 3.5rem 2rem; }
    .mem-steps { grid-template-columns: 1fr; gap: 3rem; }
    .mem-steps::before { display: none; }
}

@media (max-width: 600px) {
    .mem-intro       { padding: 4rem 1.5rem; }
    .mem-categories  { padding: 4rem 1.5rem; }
    .mem-testimonials{ padding: 4rem 1.5rem; }
    .mem-process     { padding: 4rem 1.5rem; }
    .mem-cta-banner  { padding: 6rem 1.5rem; }
}