/* ========== Design Tokens ========== */
:root {
    --c-primary: #f08700;
    --c-dark: #111111;
    --c-light: #f4f4f4;
    --c-text: #efefef;
    --c-muted: #b9b9b9;

    --radius: 16px;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    --container: 1200px;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    background: #0c0c0c;
    color: var(--c-text);
    font-family:
        Oswald, Impact, sans-serif,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    line-height: 1.6;
}

/* Utility */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 24px;
}

/* ========== Header ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: saturate(120%) blur(6px);
}
.nav-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 72px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-mark {
    display: block;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.brand-name {
    font-family: Oswald, Impact, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    font-size: 20px;
}

.main-nav {
    margin-left: 24px;
    display: flex;
    gap: 24px;
    align-items: center;
}
.main-nav a {
    text-decoration: none;
    color: #ddd;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
}
.main-nav a.active {
    color: var(--c-primary);
}
.main-nav a:not(.active):hover {
    color: #fff;
}

.nav-cta {
    margin-left: auto;
}

/* Mobile nav button (hidden on desktop) */
.nav-toggle {
    display: none;
    margin-left: 8px;
    background: none;
    border: 0;
    cursor: pointer;
    border-radius: 100px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    padding: 14px 22px;
    border-radius: 100px;
    border: 2px solid transparent;
    transition:
        transform 0.05s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    user-select: none;
}
.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: var(--shadow);
    font-weight: 400;
}
.btn-primary:hover {
    background: #d77800;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 76vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 70%;
    filter: saturate(90%);
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)),
        radial-gradient(
            1200px 600px at 70% 30%,
            rgba(240, 135, 0, 0.22),
            transparent 60%
        );
    mix-blend-mode: multiply;
    z-index: -1;
}
.hero-content {
    text-align: center;
    padding: 80px 0;
}
.hero-title {
    margin: 0 0 18px 0;
    font-family: Oswald, Impact, sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: 0.2px;
}
.hero-title .line {
    display: block;
    color: #fff;
}
.hero-title .accent {
    color: var(--c-primary);
}
.hero-sub {
    margin: 0 auto 28px auto;
    max-width: 820px;
    color: #e5e5e5;
    font-size: clamp(16px, 2.2vw, 20px);
}
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Responsive ========== */
@media (max-width: 980px) {
    .main-nav {
        display: none;
    } /* hidden until we wire the mobile menu */
    .nav-cta {
        display: none;
    }
    .nav-toggle {
        display: inline-block;
        margin-left: auto;
    }
}

/* ===== Sections ===== */
.section {
    padding: 72px 0;
}
.section-light {
    background: var(--c-light);
    color: #222;
}
.section-head {
    text-align: center;
    margin-bottom: 32px;
}
.section-title {
    font-family: Oswald, Impact, sans-serif;
    font-size: clamp(28px, 4.2vw, 44px);
    color: #111;
    margin: 0 0 8px 0;
}
.section-sub {
    color: #5a5a5a;
    margin: 0;
    font-size: clamp(14px, 2vw, 18px);
}

/* ===== Card grid ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    color: #222;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    padding: 28px;
    transition:
        transform 0.12s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    border-color: rgba(240, 135, 0, 0.35);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(240, 135, 0, 0.12);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.card-title {
    font-family: Oswald, Impact, sans-serif;
    font-size: 22px;
    margin: 0 0 10px 0;
    color: #111;
}

.card-text {
    margin: 0 0 18px 0;
    color: #555;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    color: var(--c-primary);
}
.card-link:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark section */
.section-dark {
    background: #0f0f0f;
    color: #eaeaea;
}

/* Facility media grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 10px;
}

.media-tile {
    border-radius: 18px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}
.media-tile img {
    width: 140%;
    height: 140%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
    filter: saturate(0.95) contrast(1.02);
}
.media-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* Responsive */
@media (max-width: 1100px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.t-card {
    background: #fff;
    color: #2a2a2a;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 24px 24px 22px;
    transition:
        transform 0.12s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.t-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
    border-color: rgba(240, 135, 0, 0.35);
}

.t-stars {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 12px;
}

.t-quote {
    margin: 0 0 14px 0;
    color: #555;
    font-style: italic;
    line-height: 1.8;
    quotes: "“" "”" "‘" "’";
}
.t-quote:before {
    content: open-quote;
}
.t-quote:after {
    content: close-quote;
}

.t-author {
    font-weight: 700;
    color: #111;
}

/* Responsive */
@media (max-width: 980px) {
    .t-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.cta-wrap {
    text-align: center;
}
.cta .cta-btn {
    margin-top: 18px;
}

/* Page Hero */
.page-hero {
    background: #0f0f0f;
    color: #eaeaea;
    padding: 60px 0 80px 0;
    text-align: center;
}

/* ===== Footer ===== */
.site-footer {
    background: #101010;
    color: #d9d9d9;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 20px;
}

.footer-brand .brand-name {
    font-size: 20px;
}
.footer-text {
    color: #b9b9b9;
    margin: 14px 0 18px;
}

.footer-title {
    font-family: Oswald, Impact, sans-serif;
    color: #fff;
    margin: 4px 0 14px 0;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.footer-links a {
    color: #d6d6d6;
    text-decoration: none;
    font-weight: 600;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.footer-contact li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: #d6d6d6;
}
.footer-contact a {
    color: #d6d6d6;
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}

/* Social buttons */
.footer-socials {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #cfcfcf;
    background: #222;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        transform 0.12s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.social-btn:hover {
    background: #2a2a2a;
    color: #fff;
    transform: translateY(-1px);
    border-color: rgba(240, 135, 0, 0.5);
}

/* Newsletter form (presentational only) */
.footer-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
}
.input {
    width: 100%;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #1a1a1a;
    color: #f0f0f0;
    padding: 12px 14px;
    outline: none;
}
.input::placeholder {
    color: #8a8a8a;
}
.input:focus {
    border-color: rgba(240, 135, 0, 0.6);
}
.footer-submit {
    width: 100%;
}

/* Divider + bottom bar */
.footer-sep {
    margin: 24px 0 0 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 28px;
    gap: 16px;
}
.footer-bottom p {
    margin: 0;
    color: #a9a9a9;
}
.footer-bottom nav {
    display: flex;
    gap: 18px;
}
.footer-bottom nav a {
    color: #cfcfcf;
    text-decoration: none;
}
.footer-bottom nav a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Accessibility helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Class Types (two-column list of cards) */
.class-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 28px;
}

.class-item {
    background: #fff;
    color: #222;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: start;
    transition:
        transform 0.12s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.class-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
    border-color: rgba(240, 135, 0, 0.28);
}

.class-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(240, 135, 0, 0.12);
    display: grid;
    place-items: center;
    margin-top: 4px;
}

.class-name {
    font-family: Oswald, Impact, sans-serif;
    font-size: 20px;
    margin: 2px 0 6px 0;
    color: #111;
}
.class-desc {
    margin: 8px 0 0 0;
    color: #555;
    line-height: 1.7;
}

/* Make badges sit close to the heading */
#class-types .badge {
    margin-left: 0;
    margin-top: 2px;
    display: inline-block;
}

/* Responsive stack */
@media (max-width: 980px) {
    .class-list {
        grid-template-columns: 1fr;
    }
}

/* ===== Timetable (visuals only) ===== */
.timetable-section {
    --tt-col: 260px;
}

.tt-filters {
    display: flex;
    gap: 16px;
    margin: -6px 0 18px 0;
}
.tt-select {
    position: relative;
    display: inline-flex;
}
.tt-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    color: #222;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 10px 34px 10px 12px;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.tt-select .chev {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b6b6b;
    pointer-events: none;
}

.tt-scroll {
    overflow-x: auto;
    padding-bottom: 8px;
}
.tt-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--tt-col);
    gap: 22px;
    align-items: start;
    /* Keep columns left-aligned inside container */
}

.tt-day {
    font-family: Oswald, Impact, sans-serif;
    color: #333;
    letter-spacing: 0.2px;
    margin: 0 0 10px 6px;
}

.tt-col {
    display: flex;
    flex-direction: column;
}
.tt-col-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tt-card {
    background: #fff;
    color: #222;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 148px;
}
.tt-card-head {
    margin-bottom: 4px;
}
.tt-name {
    font-family: Oswald, Impact, sans-serif;
    font-size: 16px;
    margin: 0 0 2px 0;
    color: #111;
}
.tt-level {
    color: #8a8a8a;
    font-weight: 600;
    font-size: 12px;
}

.tt-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.tt-meta li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 8px;
    align-items: center;
    color: #4c4c4c;
    font-size: 14px;
}

.tt-spots {
    color: #2bb673;
    font-weight: 700;
    font-size: 13px;
    margin-top: 2px;
}

.tt-book {
    width: 100%;
    margin-top: auto;
}

/* Empty state */
.tt-empty {
    color: #9a9a9a;
    font-style: italic;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 12px;
    text-align: center;
}

/* Narrow view: make columns a bit slimmer to reduce scrolling */
@media (max-width: 860px) {
    .timetable-section {
        --tt-col: 240px;
    }
}

#cta-unsure .section-title {
    margin-bottom: 8px;
}
#cta-unsure .cta-btn {
    margin-top: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.gallery-grid img {
    width: 100%;
    display: block;
    border-radius: 14px;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #ddd;
}
/* ===== Filtered Masonry Gallery ===== */
.gf-filterbar {
    display: none;
}
.gf-chip {
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #222;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition:
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        transform 0.02s ease;
}
.gf-chip:hover {
    transform: translateY(-1px);
}
.gf-chip.is-active {
    background: var(--c-primary);
    color: #fff;
    border-color: rgba(0, 0, 0, 0.16);
    font-weight: 400;
}

/* Masonry layout via CSS columns (simple + fast) */
.gf-masonry {
    column-count: 2; /* desktop - reduced to 2 for much larger images */
    column-gap: 32px; /* increased gap even more */
}
.gf-item {
    break-inside: avoid; /* keep items intact across columns */
    margin: 0 0 32px 0; /* increased bottom margin more */
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.gf-item img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

/* Responsive column counts */
@media (max-width: 768px) {
    .gf-masonry {
        column-count: 1;
    }
}

/* ===== Contact Information + Message panel ===== */
.ci-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 32px;
    align-items: start;
}
.ci-title {
    font-family: Oswald, Impact, sans-serif;
    margin: 0 0 8px 0;
    color: #111;
    font-size: 28px;
}
.ci-intro {
    color: #555;
    margin: 0 0 16px 0;
}

.info-stack {
    display: grid;
    gap: 18px;
}
.info-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 18px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: center;
}
.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(240, 135, 0, 0.12);
    display: grid;
    place-items: center;
}
.info-heading {
    font-family: Oswald, Impact, sans-serif;
    margin: 0 0 6px 0;
    color: #111;
    font-size: 24px;
}
.info-text {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* Right panel */
.msg-panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 20px 22px 22px;
}
.panel-title {
    font-family: Oswald, Impact, sans-serif;
    margin: 0 0 14px 0;
    color: #111;
    font-size: 26px;
}
.msg-form {
    display: grid;
    gap: 14px;
}
.field {
    display: grid;
    gap: 8px;
}
.field .label {
    color: #333;
    font-weight: 700;
}
.field .label em {
    color: #d04;
    font-style: normal;
}

.msg-form input,
.msg-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f4f4f4;
    color: #222;
    padding: 12px 14px;
    outline: none;
}
.msg-form textarea {
    min-height: 160px;
    resize: vertical;
}
.msg-form input::placeholder,
.msg-form textarea::placeholder {
    color: #9b9b9b;
}

/* Consent row with round checkbox */
.consent {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 600;
    margin-top: 4px;
}
.check-round {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--c-primary);
    background: #fff;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.check-round:checked {
    background: radial-gradient(
        circle at 50% 50%,
        var(--c-primary) 60%,
        transparent 61%
    );
}

/* Submit button (soft, disabled look) */
.msg-submit {
    width: 100%;
    border-radius: 12px;
    background: rgba(240, 135, 0, 0.35);
    color: #fff;
    font-weight: 400;
    border: 2px solid transparent;
}
.msg-submit[disabled] {
    opacity: 1;
    cursor: not-allowed;
}
.msg-submit:not([disabled]):hover {
    background: var(--c-primary);
    color: #fff;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 980px) {
    .ci-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA — Still Unsure */
#cta-unsure {
    background: #111; /* deep charcoal like screenshot */
    padding: 72px 0; /* generous vertical rhythm */
    text-align: center;
}
#cta-unsure .cta-title {
    color: #fff;
    font-family: Oswald, Impact, sans-serif;
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: clamp(34px, 4.2vw, 54px);
    margin: 0 0 10px;
}
#cta-unsure .cta-sub {
    color: #b8b8b8;
    max-width: 880px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: clamp(16px, 1.5vw, 19px);
}

/* Button + soft oval shadow underneath (as in screenshot) */
#cta-unsure .cta-btn {
    font-weight: 800;
    border-radius: 12px;
    padding: 14px 26px;
}
.shadow-oval {
    position: relative;
}
.shadow-oval::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -12px;
    height: 12px;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.18) 45%,
        rgba(0, 0, 0, 0) 70%
    );
    border-radius: 50%;
}

/* == Our Gym Tabs == */
.og-tablist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    margin: 6px 0 26px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}
.og-tab {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 12px 18px;
    font-weight: 800;
    background: #4a4a4a;
    color: #eaeaea;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}
.og-tab.is-active {
    background: #fff;
    color: #111;
}
.og-panel {
    display: block;
}
.og-panel[hidden] {
    display: none;
}
.og-h2 {
    font-family: Oswald, Impact, sans-serif;
    font-size: 32px;
    margin: 6px 0 14px;
    color: #111;
}
.og-lead {
    color: #555;
    margin-bottom: 16px;
}

/* About – callout */
.og-callout {
    background: #fff3e7;
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
    margin: 28px 0 6px;
    position: relative;
}
.og-callout h3 {
    font-family: Oswald, Impact, sans-serif;
    font-size: 24px;
    margin: 0 0 6px;
    color: #111;
}
.og-callout p {
    color: #555;
    margin: 0 0 14px;
}

/* Our Place – features */
.og-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 14px 0 24px;
}
.og-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.og-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.og-features li:last-child {
    border-bottom: 0;
}
.chk {
    color: var(--c-primary, #f08700);
    font-weight: 900;
}

/* Facility Gallery */
.facility-gallery {
    display: grid;
    gap: 32px;
    margin: 24px 0;
}

.facility-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.facility-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.facility-item:nth-child(even) .facility-image {
    order: 2;
}

.facility-item:nth-child(even) .facility-info {
    order: 1;
}

.facility-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
}

.facility-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.facility-item:hover .facility-image img {
    transform: scale(1.05);
}

.facility-info h3 {
    font-family: Oswald, Impact, sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin: 0 0 12px;
}

.facility-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 16px;
}

.facility-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.facility-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: #666;
}

.facility-features li::before {
    content: "✓";
    color: var(--c-primary, #f08700);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Additional Amenities */
.og-amenities {
    margin-top: 40px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
}

.og-amenities h3 {
    font-family: Oswald, Impact, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin: 0 0 16px;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.amenity-item .chk {
    color: var(--c-primary, #f08700);
    font-weight: 900;
}

/* Responsive for facility gallery */
@media (max-width: 1024px) {
    .facility-item {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .facility-item:nth-child(even) .facility-image,
    .facility-item:nth-child(even) .facility-info {
        order: initial;
    }

    .facility-image img {
        height: 280px;
    }
}

@media (max-width: 720px) {
    .facility-gallery {
        gap: 24px;
    }

    .facility-item {
        padding: 20px;
    }

    .facility-image img {
        height: 240px;
    }

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

.og-note {
    background: #f1f1f1;
    border-radius: 16px;
    padding: 18px 20px;
    max-width: 900px;
}
.og-note h3 {
    font-family: Oswald, Impact, sans-serif;
    margin: 0 0 8px;
    color: #111;
}

/* Coaches */
.coaches-grid {
    display: flex;
    justify-content: center;
    gap: 18px;
}
.coach-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 12000px;
    width: 100%;
    transition:
        transform 0.2s ease,
        box-shadow 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.coach-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.coach-body {
    padding: 20px 24px;
}
.coach-body h3 {
    font-family: Oswald, Impact, sans-serif;
    margin: 0 0 8px;
    color: #111;
    font-size: 28px;
}
.coach-tag {
    color: var(--c-primary, #f08700);
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 16px;
}
.coach-bio {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 20px;
}

/* Coach Specs Section */
.coach-specs {
    margin: 20px 0;
}
.coach-specs h4 {
    font-family: Oswald, Impact, sans-serif;
    font-size: 18px;
    color: #111;
    margin: 0 0 12px;
    border-bottom: 2px solid var(--c-primary, #f08700);
    padding-bottom: 4px;
}
.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}
.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.spec-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
.spec-value {
    color: #666;
    font-size: 14px;
    text-align: right;
}

/* Coach Achievements Section */
.coach-achievements {
    margin: 20px 0;
}
.coach-achievements h4 {
    font-family: Oswald, Impact, sans-serif;
    font-size: 18px;
    color: #111;
    margin: 0 0 12px;
    border-bottom: 2px solid var(--c-primary, #f08700);
    padding-bottom: 4px;
}
.coach-achievements ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.coach-achievements li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}
.coach-achievements li::before {
    content: "●";
    color: var(--c-primary, #f08700);
    position: absolute;
    left: 0;
    top: 6px;
}
.coach-socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.ico {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.ico::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    mask-size: cover;
    background: #333;
}
.i-ig::before {
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5m5 5.8A4.2 4.2 0 1 0 16.2 12 4.2 4.2 0 0 0 12 7.8m6.5-.8a1.3 1.3 0 1 0 1.3 1.3A1.3 1.3 0 0 0 18.5 7z"/></svg>');
}
.i-web::before {
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm-1 17.9A8 8 0 1 1 20 12H11z"/></svg>');
}
.i-in::before {
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M4 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4zm4 6a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm2 2H6v8h4v-8zm4 0h-3v8h3v-4c0-1.1.9-2 2-2s2 .9 2 2v4h3v-5.5c0-2.3-1.9-4.2-4.2-4.2-1 0-2 .4-2.8 1.2V11z"/></svg>');
}

/* Responsive */
@media (max-width: 1024px) {
    .coaches-grid {
        justify-content: center;
    }
    .coach-card {
        grid-template-columns: 300px 1fr;
        max-width: 800px;
    }
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
@media (max-width: 720px) {
    .og-features {
        grid-template-columns: 1fr;
    }
    .coach-card {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .coach-photo {
        height: 280px;
    }
    .coach-body {
        padding: 16px 20px;
    }
    .spec-grid {
        grid-template-columns: 1fr;
    }
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .spec-value {
        text-align: left;
        font-weight: 500;
    }
}

/*Book class popup styling*/

.center-popup {
    position: fixed;
    display: flex;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(163, 163, 163, 0.6);
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}

.center-popup.popup-shown {
    visibility: visible;
    opacity: 1;
}

.center-popup .container {
    width: 550px;
    transform: scale(0.8);
    background-color: rgb(255, 255, 255);
    border-radius: 6px;
    padding: 14px;
    position: relative;
    overflow: hidden;
    transition: all cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}

.center-popup.popup-shown .container {
    transform: scale(1);
}

#workoutClose {
    position: absolute;
    top: 14px;
    right: 14px;
    cursor: pointer;
    padding: 0.2rem;
    transition: background-color ease 0.2s;
}

#workoutClose img {
    width: 12px;
    height: 12px;
}

#workoutClose:hover {
    font-weight: 500;
    background-color: #efefef;
}

.center-popup .heading {
    border-bottom: 1px solid #c6c6c6;
}

.center-popup .heading h5 {
    font-size: 22px;
    color: #242424;
    font-weight: 600;
    margin: 0;
    padding-bottom: 0.5rem;
}

.center-popup .heading p {
    margin-top: 0.2rem;
    font-size: 13px;
    color: #474747;
    font-weight: 400;
}

.center-popup .content h5 {
    margin-top: 2rem;
    color: #242424;
    font-size: 15px;
    font-weight: 400;
}

.input-container {
    /* margin-bottom: 1rem; */
    margin-top: 1.2rem;
}

.input-container label {
    font-size: 14px;
    display: block;
    margin-bottom: 0.3rem;
    color: #000000;
}

.input-container input {
    font-family: Oswald, Impact, sans-serif;
    padding: 10px 8px;
    font-size: 14px;
    background-color: #f4f4f4;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    margin-top: 6px;
    width: 100%;
}

.checkbox-container {
    margin-top: 1.2rem;
}

.checkbox-container label {
    font-size: 14px;
    margin-bottom: 0.3rem;
    color: #000000;
    vertical-align: top;
    font-weight: 600;
}

.buttons-container {
    display: flex;
    align-items: center;
    gap: 0 1rem;
    margin-top: 1rem;
}

#saveWorkout {
    display: flex;
    justify-content: center;
    border-radius: 8px;
    padding: 8 0;
    background-color: rgb(24, 35, 81);
    color: #f0f0f0;
    transition: opacity 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
}

#cancelBtn {
    width: 50%;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--c-primary);
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0.6rem 0;
    color: var(--c-primary);
    cursor: pointer;
}

#cancelBtn:hover {
    opacity: 0.8;
}

#confirmBtn {
    width: 50%;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--c-primary);
    background-color: var(--c-primary);
    border-radius: 10px;
    padding: 0.6rem 0;
    color: #000000;
    cursor: pointer;
}

#confirmBtn:hover {
    opacity: 0.8;
}

#saveWorkout:hover {
    opacity: 0.8;
}

#error-msg {
    margin-top: 4px;
    font-size: 13px;
    color: #c43030;
    height: 25px;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgb(243, 243, 243);
    border-top: 3px solid #d0d0d0;
    border-radius: 50%;
    display: none;
}

.spinner.loading {
    display: block;
    animation: rotating 1.5s linear infinite;
}

.img-actions {
    display: flex;
    align-items: center;
    gap: 0 0.5rem;
}


#registrationForm {

}

#registrationForm.hidden {
    display: none;
}

#confirmForm {

}

#confirmForm.hidden {
    display: none
}

#confirmForm h2 {
    font-size: 20px;
    margin-bottom: 0.3rem;
    color: #000000;
    font-weight: 600;
}


/* Our Gym hero */
#our-gym-hero {
    background: #0f0f0f;
} /* deep charcoal */
#our-gym-hero .page-title {
    color: #fff;
} /* big white title */
#our-gym-hero .page-sub {
    color: #b7b7b7;
    max-width: 1000px;
    margin-inline: auto;
}
