@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Poppins:wght@300;400;500;600&display=swap');

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

:root {
  --carolina: #4b9cd3;
  --light-blue: #a4cae1;
  --light-blue-pale: #e8f4fb;
  --navy: #13294b;
  --gray: #8d9092;
  --white: #ffffff;
  --border: rgba(164, 202, 225, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: #1a1a1a;
  font-size: 19px;
  line-height: 1.8;
}

a { color: var(--carolina); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--light-blue);
  border-bottom: 1px solid rgba(164, 202, 225, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-box {
  width: 48px;
  height: 48px;
  background: #d9d9d9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Paytone One', sans-serif;
  font-size: 22px;
  color: var(--navy);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-links a.active { color: var(--white); }

/* BUTTONS */
.btn-primary {
  background: var(--carolina);
  color: #fff;
  border: none;
  padding: 15px 34px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover { background: var(--navy); transform: translateY(-1px); text-decoration: none; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--carolina);
  border: 1.5px solid var(--carolina);
  padding: 13px 34px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover { background: var(--carolina); color: #fff; text-decoration: none; }

/* SECTIONS */
.section { padding: 28px 48px 32px; }
.section-alt { padding: 28px 48px 32px; background: var(--light-blue-pale); }
.section-blue { padding: 28px 48px 32px; background: var(--light-blue); }

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--carolina);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before { content: ''; width: 20px; height: 1px; background: var(--carolina); display: inline-block; }

.section-label-dark {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label-dark::before { content: ''; width: 20px; height: 1px; background: var(--navy); display: inline-block; }

h1, h2, h3 { font-family: 'Paytone One', sans-serif; color: var(--navy); line-height: 1.1; }
h1 { font-size: 76px; margin-bottom: 22px; }
h2 { font-size: 40px; margin-bottom: 14px; }
h3 { font-size: 26px; margin-bottom: 12px; }

.section-intro {
  font-size: 20px;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.85;
  font-weight: 300;
}

.divider { border: none; border-top: 1px solid var(--border); margin: 0 48px; }

/* PAGE HERO */
.page-hero {
  background: var(--light-blue);
  padding: 14px 48px;
}

.page-hero h1 { color: var(--navy); font-size: 56px; margin-bottom: 0; }
.page-hero p { color: rgba(19, 41, 75, 0.7); font-size: 19px; font-weight: 300; max-width: 520px; line-height: 1.85; }

/* FOOTER */
footer {
  background: var(--light-blue);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-logo-box {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(19,41,75,0.4);
  font-family: 'Poppins', sans-serif;
}

.footer-logo-text { font-family: 'Paytone One', sans-serif; font-size: 20px; color: var(--navy); }
.footer-copy { font-size: 13px; color: rgba(19, 41, 75, 0.5); }

/* =====================
   MOBILE RESPONSIVENESS
   ===================== */
@media (max-width: 768px) {
  /* NAV */
  nav {
    padding: 0 20px;
    height: 60px;
    position: relative;
  }
  .nav-logo-text { font-size: 17px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--light-blue);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(164,202,225,0.6);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(164,202,225,0.4); }
  .nav-links a { display: block; padding: 14px 20px; font-size: 12px; letter-spacing: 0.06em; }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.2s;
  }

  /* PAGE HERO */
  .page-hero { padding: 14px 20px !important; }
  .page-hero h1 { font-size: 36px !important; }

  /* SECTIONS */
  .section { padding: 20px 20px 24px !important; }
  .section-alt { padding: 20px 20px 24px !important; }
  .divider { margin: 0 20px; }

  /* HERO (home) */
  .hero {
    grid-template-columns: 1fr !important;
    padding: 20px 20px 24px !important;
    gap: 20px !important;
  }
  .headline-wrap { height: auto !important; min-height: 120px; }
  .headline-wrap h1 { font-size: 48px !important; }
  .carousel { height: 280px !important; }

  /* ABOUT GRID */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* STATS */
  .stat-grid { margin-top: 0; }
  .stat { padding: 18px !important; }
  .stat-number { font-size: 36px !important; }

  /* FAQ */
  .faq-section { padding: 20px 20px 24px !important; }
  .faq-q { font-size: 15px !important; }

  /* GET INVOLVED */
  .main-grid {
    grid-template-columns: 1fr !important;
  }
  .tryout-card { height: auto !important; }
  .right-col { height: auto !important; }
  .info-cards {
    grid-template-columns: 1fr !important;
  }
  .connect-grid {
    grid-template-columns: 1fr !important;
  }
  .inv-content { padding: 12px 20px 32px !important; }

  /* COMPETITIONS */
  .top-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .sets-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* PHOTOS */
  .photo-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-top: 20px !important;
  }
  .photo-item img { height: 180px !important; }

  /* FOOTER */
  footer { padding: 16px 20px !important; flex-direction: column; gap: 8px; text-align: center; }

  /* BUTTONS */
  .btn-primary, .btn-outline { padding: 12px 24px !important; font-size: 12px !important; }
}

@media (max-width: 480px) {
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 9px; }
  .headline-wrap h1 { font-size: 38px !important; }
  .sets-grid { grid-template-columns: 1fr !important; }
  .photo-grid { grid-template-columns: 1fr !important; }
}