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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #f7f7f9;
}

img,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: #fff;
    padding: 10px 12px;
    border: 2px solid #111;
    border-radius: 10px;
    z-index: 9999;
}

.skip-link:focus {
    left: 10px;
}

.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;
}

.site-header {
    background: #111;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    flex-wrap: wrap;
}

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

.site-title {
    font-size: 1.1rem;
    margin: 0;
}

.tagline {
    margin: 0;
    opacity: 0.85;
    font-size: 0.9rem;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-nav a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 12px;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: #fff;
    color: #111;
    transform: translateY(-1px);
    outline: none;
}

.site-nav a.active {
    background: #fff;
    color: #111;
}

.section {
    padding: 42px 0;
}

.section.alt {
    background: #fff;
}

.page-title {
    padding: 32px 0 12px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 22px;
    }
}

.table-wrap {
    overflow-x: auto;
}

.hero {
    background: #222;
    color: #fff;
    padding: 54px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero h2 {
    margin-top: 0;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.2;
}

.hero-quote {
    margin: 8px 0 14px;
    font-weight: 700;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0 8px;
}

.highlights {
    padding-left: 18px;
    margin: 12px 0 0;
    opacity: 0.95;
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 12px;
}

.hero-card figcaption {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 8px;
}

.card {
    background: #fff;
    border: 1px solid #e6e6ea;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.btn {
    display: inline-block;
    background: #111;
    color: #fff;
    text-decoration: none;
    border: 2px solid #111;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-small {
    padding: 8px 12px;
    border-radius: 12px;
}

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

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

.gallery-item {
    background: #fff;
    border: 1px solid #e6e6ea;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 10px 12px;
    font-weight: 700;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 14px;
}

.table th,
.table td {
    border-bottom: 1px solid #e6e6ea;
    padding: 10px 10px;
    text-align: left;
}

.table thead th {
    background: #f2f2f6;
}

.form {
    display: grid;
    gap: 12px;
}

.form-row label,
.form-row legend {
    display: block;
    font-weight: 750;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #cfcfda;
    background: #fff;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(17, 17, 17, 0.25);
    border-color: #111;
}

fieldset.form-row {
    border: 1px solid #e6e6ea;
    border-radius: 14px;
    padding: 12px;
}

.check,
.radio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-weight: 550;
}

.check input,
.radio input {
    width: 18px;
    height: 18px;
}

.site-footer {
    padding: 22px 0;
    border-top: 1px solid #e6e6ea;
    background: #fff;
}

.footer-inner {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-list {
    padding-left: 18px;
}

.small {
    font-size: 0.92rem;
}

.muted {
    opacity: 0.75;
}

.program {
    position: relative;
    color: white;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 18px;
}

.program::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.program {
    padding: 18px;
    gap: 10px;
}

.program .btn {
    align-self: flex-start;
}

.program h3,
.program ul {
    position: relative;
    z-index: 1;
}

.basketball {
    background: url("Gallery-Basketball.png") center/cover no-repeat;
}

.volleyball {
    background: url("Gallery-Volleyball.png") center/cover no-repeat;
}

.pickleball {
    background: url("Gallery-Pickleball.png") center/cover no-repeat;
}

.strength {
    background: url("Gallery-Strength.png") center/cover no-repeat;
}