/* ============================================
   Sports Club International — static rebuild
   ============================================ */

:root {
  --accent: #fca52a;
  --accent-hover: #df4f20;
  --dark-bg: #121212;
  --dark-bg-alt: #282b00;
  --text-dark: #0c0c0c;
  --text-body: #272626;
  --text-light: #ffffff;
  --site-bg: #ffffff;
  --light-bg: #f4f5f7;
  --max-width: 1170px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--site-bg);
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: 1px;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 18px 38px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}
.btn-secondary:hover {
  background: var(--text-dark);
  color: #fff;
}

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img {
  max-width: 200px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .5px;
  color: #686868;
}
.main-nav a:hover {
  color: var(--text-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #ccc;
  border-radius: 3px;
  padding: 8px 12px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0c0c0c;
  opacity: .35;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.1;
  text-shadow: 0 0 8px rgba(0,0,0,.4);
  margin-bottom: 30px;
}

/* ---------- Camps grid ---------- */
.camps {
  padding: 60px 20px;
  background: #fff;
}

.camps-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .camps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .camps-grid { grid-template-columns: 1fr; }
}

.camp-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0,0,0,.09);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.camp-card img {
  border-radius: 2px;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 16px;
}

.camp-card h3 {
  font-size: 25px;
  margin-bottom: 8px;
}

.camp-card .dates {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ---------- What to expect ---------- */
.expect {
  background: var(--dark-bg-alt);
  color: #fff;
  padding: 60px 20px;
}

.expect-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 860px) {
  .expect-inner { grid-template-columns: 1fr; }
}

.expect img {
  border-radius: 2px;
}

.expect h2 {
  color: #fff;
  font-size: 45px;
}

.expect p {
  color: #fff;
}

.progress-bar {
  margin-bottom: 16px;
}

.progress-bar .label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: #0c0c0c;
  background: #fff;
  border-radius: 5px;
  padding: 6px 14px;
  position: relative;
  overflow: hidden;
}

.progress-bar .fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  z-index: 0;
}

.progress-bar .label span {
  position: relative;
  z-index: 1;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2f5aae;
  opacity: .55;
}

.cta-banner .hero-content {
  max-width: 700px;
}

.cta-banner h2 {
  font-size: 55px;
  color: #fff;
  margin-bottom: 30px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 60px 20px;
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-grid img {
  margin: 0 auto 16px;
  width: 60px;
}

.contact-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-grid a {
  text-decoration: none;
}

/* ---------- Coaches ---------- */
.coaches-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.coach-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.coach-item:last-child {
  border-bottom: none;
}

.coach-item img {
  width: 140px;
  height: 140px;
  border-radius: 6px;
  object-fit: cover;
}

.coach-item h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.coach-item .coach-role {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--accent-hover);
  margin-bottom: 4px;
}

.coach-item .coach-locations {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.coach-item p.coach-bio {
  font-size: 15px;
  color: var(--text-body);
  margin: 0;
}

@media (max-width: 600px) {
  .coach-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .coach-item img {
    margin: 0 auto;
  }
}

/* ---------- Sponsors ---------- */
.sponsors {
  padding: 20px 20px 30px;
  border-top: 1px solid #eee;
}

.sponsors-label {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 14px;
}

.sponsors-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.sponsors-grid img {
  max-width: 90px;
  max-height: 40px;
  width: auto;
  opacity: .7;
  transition: opacity .2s ease;
}
.sponsors-grid img:hover {
  opacity: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-bg-alt);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 24px 20px;
  font-size: 13px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}
