@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', Arial, sans-serif; background: #fff; color: #202124; }

/* HEADER */
header {
    background: #1a1a2e;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 56px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.nav-inner { width: 100%; display: flex; align-items: center; padding: 0 16px; gap: 4px; }
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-size: 15px; font-weight: 400; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 400; padding: 6px 12px; border-radius: 4px; transition: background 0.15s; white-space: nowrap; }
.nav-links a:hover { background: rgba(255,255,255,0.1); }
.nav-links a.active { font-weight: 700; color: #fff; }
.nav-search { background: none; border: none; color: rgba(255,255,255,0.85); cursor: pointer; padding: 6px; border-radius: 50%; display: flex; align-items: center; transition: background 0.15s; flex-shrink: 0; margin-left: 4px; }
.nav-search:hover { background: rgba(255,255,255,0.1); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 2px; transition: all 0.3s; }

main { padding-top: 56px; }

/* HERO */
.hero-banner { width: 100%; height: calc(100vh - 56px); min-height: 500px; position: relative; overflow: hidden; background: #0d1b2a; }
.hero-banner img.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; }
.hero-logo { width: min(260px, 35vw); height: auto; filter: drop-shadow(0 2px 16px rgba(0,0,0,0.5)); }
.hero-text { color: #fff; font-size: clamp(18px, 3vw, 32px); font-weight: 700; letter-spacing: 0.2em; margin-top: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.scroll-chevron { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 32px; cursor: pointer; pointer-events: all; animation: bounce 2s infinite; text-decoration: none; line-height: 1; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }

/* WHAT WE OFFER */
.what-we-offer { padding: 60px 40px 48px; text-align: center; background: #fff; }
.what-we-offer h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; color: #073763; margin-bottom: 40px; }
.offer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.offer-card { text-align: center; }
.offer-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.offer-card h3 { margin-top: 14px; font-size: 18px; font-weight: 500; color: #202124; }

/* CTA BAND */
.cta-band { width: 100%; min-height: 220px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #1e2e1e; margin-top: 8px; }
.cta-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.cta-band-content { position: relative; z-index: 1; text-align: center; padding: 48px 24px; width: 100%; }
.cta-band-content p { color: #fff; font-size: clamp(15px, 2vw, 19px); font-weight: 700; margin-bottom: 20px; line-height: 1.5; }
.cta-btn { display: block; width: min(460px, 90%); margin: 0 auto 12px; background: rgba(120,197,241,0.55); color: #fff; font-size: 14px; font-weight: 500; text-align: center; padding: 13px 24px; border-radius: 3px; text-decoration: none; transition: background 0.2s; }
.cta-btn:hover { background: rgba(120,197,241,0.8); }

/* FOOTER */
footer { background: #1a3050; padding: 20px 24px; display: flex; align-items: center; justify-content: center; }
.footer-ig a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.footer-ig a:hover { border-color: #fff; color: #fff; }

/* PAGE BANNER */
.page-banner { width: 100%; height: 280px; position: relative; overflow: hidden; background: #0d1b2a; display: flex; align-items: flex-end; }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45); }
.page-banner-title { position: relative; z-index: 1; padding: 0 48px 28px; color: #fff; font-size: clamp(28px, 4vw, 48px); font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }

.inner-wrap { max-width: 980px; margin: 0 auto; padding: 52px 40px 80px; }

/* ABOUT */
.about-intro { font-size: 16px; color: #444; line-height: 1.85; margin-bottom: 48px; }
.section-heading { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; color: #073763; margin-bottom: 32px; }
.coaches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 32px; }
.coach-card { display: flex; flex-direction: column; }
.coach-photo-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #dde5ee; margin-bottom: 16px; }
.coach-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.coach-name { font-size: 18px; font-weight: 700; color: #073763; margin-bottom: 10px; }
.coach-bio { font-size: 14px; color: #444; line-height: 1.8; }
.coach-bio p + p { margin-top: 10px; }

/* FALL TEAMS */
.fall-intro { font-size: 16px; color: #444; line-height: 1.85; margin-bottom: 32px; }
.age-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.age-card { background: #073763; color: #fff; border-radius: 4px; padding: 22px 26px; }
.age-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.age-card p { font-size: 14px; color: rgba(255,255,255,0.85); }
.includes-label { font-size: 16px; font-weight: 700; color: #202124; margin-bottom: 12px; }
.includes-list { list-style: none; margin-bottom: 32px; }
.includes-list li { font-size: 15px; color: #444; line-height: 1.75; padding: 6px 0 6px 22px; position: relative; border-bottom: 1px solid #f0f0f0; }
.includes-list li::before { content: '✓'; position: absolute; left: 0; color: #2a7a2a; font-weight: 700; }
.tryout-note { background: #f0f6ff; border-left: 4px solid #78c5f1; padding: 16px 20px; border-radius: 0 4px 4px 0; font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 32px; }
.cta-inline { display: inline-block; background: #073763; color: #fff; font-size: 14px; font-weight: 500; padding: 13px 30px; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
.cta-inline:hover { background: #0a4a8a; }

/* FACILITIES */
.facilities-intro { font-size: 16px; color: #444; line-height: 1.85; margin-bottom: 40px; }
.facilities-intro strong { color: #073763; }
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 30px; /* Space between the cards, adjust to your liking */
    margin-top: 30px;
}
.facility-card { border-radius: 4px; overflow: hidden; box-shadow: 0 1px 8px rgba(0,0,0,0.1); }
.facility-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px; /* Optional: adds a nice rounded corner */
}
.facility-card-body { padding: 16px 18px 18px; background: #f8f9fb; }
.facility-card-body h3 { font-size: 15px; font-weight: 700; color: #073763; margin-bottom: 6px; }
.facility-card-body p { font-size: 13px; color: #555; line-height: 1.6; }

/* INTEREST FORM */
.form-intro { font-size: 16px; color: #444; line-height: 1.85; margin-bottom: 24px; }
.form-wrap { border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; }
.form-wrap iframe { display: block; width: 100%; border: none; }

/* RESPONSIVE */
@media (max-width: 860px) {
    .nav-links { position: fixed; top: 56px; left: -100%; flex-direction: column; background: #1a1a2e; width: 100%; padding: 12px 0; transition: left 0.3s; gap: 0; }
    .nav-links.open { left: 0; }
    .nav-links a { padding: 12px 24px; border-radius: 0; display: block; }
    .menu-toggle { display: flex; }
    .nav-search { display: none; }
}
@media (max-width: 700px) {
    .offer-grid { grid-template-columns: 1fr; max-width: 480px; }
    .what-we-offer { padding: 40px 20px; }
    .age-grid, .coaches-grid, .facilities-grid { grid-template-columns: 1fr; }
    .inner-wrap { padding: 36px 20px 60px; }
    .page-banner-title { padding: 0 24px 20px; }
    .page-banner { height: 200px; }
}
