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

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

:root {
    --gold: #c9900c;
    --gold-light: #e8b832;
    --gold-dim: rgba(201, 144, 12, 0.12);
    --gold-border: rgba(201, 144, 12, 0.3);
    --navy-deep: #050d1a;
    --navy: #081422;
    --navy-mid: #0d1d30;
    --navy-card: #0f2035;
    --text: #eef2f7;
    --text-muted: #8fa3b8;
    --text-dim: #4a6070;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background-color: var(--navy);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* ── NAV ────────────────────────────────────────────────── */
nav {
    background: rgba(5, 13, 26, 0.97);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 32px;
    border-bottom: 1px solid rgba(201, 144, 12, 0.15);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-right: auto;
    flex-shrink: 0;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.nav-name {
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.nav-creds {
    color: var(--gold);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* CSS-only hamburger */
.nav-toggle-input {
    display: none;
}

.nav-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    margin-left: 12px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 13px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

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

/* ── HERO ────────────────────────────────────────────────── */
.hero {
    margin-top: var(--nav-height);
    min-height: calc(100vh - var(--nav-height));
    background: var(--navy-deep) url("images/hero.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 13, 26, 0.65) 0%,
        rgba(5, 13, 26, 0.45) 35%,
        rgba(5, 13, 26, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-badge::before,
.hero-badge::after {
    content: "✦";
    font-size: 7px;
    opacity: 0.7;
}

.hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 7.5vw, 88px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero-divider {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 22px;
    animation: fadeUp 0.8s ease 0.55s both;
}

.hero-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(15px, 2.5vw, 21px);
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
    animation: fadeUp 0.8s ease 0.6s both;
}

.hero-desc {
    font-size: clamp(13px, 1.5vw, 15px);
    color: rgba(238, 242, 247, 0.72);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease 0.75s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.9s both;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 4px;
    transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(201, 144, 12, 0.35);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 144, 12, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 4px;
    border: 1px solid rgba(238, 242, 247, 0.25);
    transition:
        border-color 0.2s,
        background 0.2s,
        color 0.2s,
        transform 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gold-border);
    background: var(--gold-dim);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ── PAGE BANNER ─────────────────────────────────────────── */
.page-banner {
    margin-top: var(--nav-height);
    height: 200px;
    background: linear-gradient(
        150deg,
        var(--navy-deep) 0%,
        var(--navy-mid) 55%,
        #0a2240 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 0 40px 36px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 28px,
        rgba(201, 144, 12, 0.025) 28px,
        rgba(201, 144, 12, 0.025) 56px
    );
}

.page-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 40%,
        var(--gold) 60%,
        transparent 100%
    );
    opacity: 0.35;
}

.page-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    width: 100%;
}

.page-label {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.page-banner h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

/* ── PAGE CONTENT ────────────────────────────────────────── */
.page-wrap {
    flex: 1;
    background: var(--navy);
    padding: 56px 0 80px;
}

.content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}

.content p {
    font-size: 15px;
    line-height: 1.78;
    color: var(--text);
    margin-bottom: 18px;
}

.lead {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: var(--text) !important;
    font-weight: 400;
}

.content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 40px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold-border);
}

.content h2:first-child {
    margin-top: 0;
}

.content > ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.content > ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    padding: 11px 0 11px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.content > ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

strong {
    font-weight: 600;
}

/* ── ABOUT STATS ─────────────────────────────────────────── */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 44px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat {
    background: var(--navy-card);
    padding: 28px 20px;
    text-align: center;
}

.stat-number {
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── INFO PAGE ───────────────────────────────────────────── */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
}

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

.checklist li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(201, 144, 12, 0.13);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

.privileges-card {
    background: var(--navy-card);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    padding: 28px 32px;
    margin: 0 0 36px;
    position: relative;
    overflow: hidden;
}

.privileges-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light),
        transparent
    );
}

.privileges-label {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.privileges-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    margin: 0;
}

.reg-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reg-list li {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--gold-border);
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    line-height: 1.72;
    color: var(--text-muted);
}

/* ── FEES PAGE ───────────────────────────────────────────── */
.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 8px;
}

.fee-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}

.fee-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-border);
    box-shadow: 0 8px 32px rgba(5, 13, 26, 0.6);
}

.fee-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.fee-card-icon {
    font-size: 26px;
    margin-bottom: 14px;
    display: block;
}

.fee-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.fee-price {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 3px;
}

.fee-unit {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 18px;
    font-weight: 500;
}

.fee-details {
    font-size: 13px;
    line-height: 1.68;
    color: var(--text-muted);
}

.fee-details p {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    margin-bottom: 5px !important;
    line-height: 1.65 !important;
}

.fee-card-wide {
    grid-column: 1 / -1;
}

/* ── BOOKINGS PAGE ───────────────────────────────────────── */
.booking-rules {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.booking-rules li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
}

.booking-rules li:last-child {
    border-bottom: none;
}

.booking-rules .rule-num {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.booking-cta {
    background: linear-gradient(135deg, var(--navy-card) 0%, #0e2545 100%);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-cta::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(
        circle at center,
        rgba(201, 144, 12, 0.06) 0%,
        transparent 55%
    );
}

.booking-cta h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    position: relative;
}

.booking-cta p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
    position: relative;
}

.booking-cta .btn-primary {
    position: relative;
    font-size: 13px;
    padding: 16px 44px;
}

/* ── T&C PAGE ────────────────────────────────────────────── */
.tc-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tc-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 12px;
    padding: 0;
    border: none;
}

.tc-section p {
    font-size: 15px;
    line-height: 1.78;
    color: var(--text-muted);
    margin: 0;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(201, 144, 12, 0.15);
    padding: 52px 40px 32px;
}

.footer-grid {
    max-width: 860px;
    margin: 0 auto 36px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
}

.footer-brand .nav-logo {
    width: 48px;
    height: 48px;
    font-size: 15px;
    margin-bottom: 18px;
}

.footer-brand h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-brand .footer-creds {
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-links h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    max-width: 860px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-dim);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 800px) {
    :root {
        --nav-height: 60px;
    }

    nav {
        padding: 0 20px;
    }

    .nav-name {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0;
        max-height: 0;
        overflow: hidden;
        transition:
            max-height 0.4s ease,
            opacity 0.3s ease;
        opacity: 0;
        border-bottom: 1px solid rgba(201, 144, 12, 0.15);
    }

    .nav-toggle-input:checked ~ .nav-links {
        max-height: 100vh;
        opacity: 1;
    }

    .nav-toggle-input:checked ~ .nav-burger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle-input:checked ~ .nav-burger span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle-input:checked ~ .nav-burger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links a {
        height: auto;
        padding: 15px 24px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a::after {
        display: none;
    }

    .page-banner {
        height: 160px;
        padding: 0 20px 28px;
    }
    .content {
        padding: 0 20px;
    }
    .page-wrap {
        padding: 40px 0 60px;
    }

    .fee-grid {
        grid-template-columns: 1fr;
    }
    .fee-card-wide {
        grid-column: 1;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .stat-number {
        font-size: 26px;
    }
    .stat {
        padding: 20px 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    footer {
        padding: 40px 20px 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .booking-cta {
        padding: 32px 24px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
