/* ---------------- Reset & Base ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #0f1114; /* match training page background so side gutters aren’t light */
}

html {
  scroll-behavior: smooth;
}

header, nav, .logo img {
    max-width: 100vw;
    overflow-x: hidden;
}

.hidden {
    display: none;
}

/* Utility class for scroll margin on anchor links */
.scroll-margin-top {
    scroll-margin-top: 70px;
}

/* Anchor offset for Book Now #intro-meeting target (fixed nav clearance) */
#intro-meeting {
  scroll-margin-top: 90px; /* matches ~fixed nav height */
}
@media (max-width: 768px) {
  #intro-meeting { scroll-margin-top: 100px; }
}

/* ---------------- Typography ---------------- */

.hero-content h1,
.about-us h1,
.qualifications h1,
.benefits h1,
.training-intro h1,
.drill-title,
.gallery-section h2,
.expected-results h2,
.unique-section h2,
.referral-section h2,
.home-referral-section h2,
.schedule h1,
.contact-form h1,
.about-coach-heading {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.hero-content h1 {
    font-size: 5.5rem;
    margin-bottom: 5px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    line-height: 1.5;
    max-width: 90%;
}

.about-coach-heading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
}

/* Gallery grid h3 styles for picture text */
.gallery-grid h3 {
    padding: 10px 0 30px;
    color: white;
    text-align: center;
    font-size: 1.2rem;
}

/* ---------------- Layout & Containers ---------------- */

/* Hamburger menu hidden by default (desktop and up) */
.hamburger {
    display: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    z-index: 1000;
}

.logo img {
    max-height: 50px;
    width: auto;
}

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

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
    padding: 15px 0;
    display: block;
}

.nav-links a:hover {
    color: #0d1a2f;
}

/* ---------------- Sections ---------------- */

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("images/NewHero.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    overflow: hidden;
}

/* overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* text above overlay */
.hero-content {
    position: relative;
    max-width: 50%;
    color: white;
    text-align: left;
    z-index: 1;
}

.hero-buttons {
    margin-top: 20px;
}

/* ---------- News & Spotlight Section ---------- */
.news-updates {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding: 60px 5%;
    background: #111;
    color: white;
}

.news-left {
    flex: 1 1 60%;
    min-width: 280px;
    max-width: 600px;
}

.news-left h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.news-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
}

.news-left h3 {
    margin-bottom: 10px;
}

.player-spotlight-right {
    flex: 1 1 35%;
    min-width: 280px;
    max-width: 400px;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.player-spotlight-right img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.player-spotlight-right h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.player-spotlight-right p {
    font-size: 1rem;
    color: #ccc;
}

/* ---------- Benefits Section ---------- */
.benefits {
    background: #111; 
    color: white; 
    text-align: center;
    padding: 50px 10%;
}

.benefits h1 {
    font-size: 2.5rem;
    text-transform: uppercase; 
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #f4f4f4;
}

.benefits-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 90%;
    margin: auto;
}

.benefit {
    background: rgba(255, 255, 255, 0.1); 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    margin: 15px;
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.2); 
    transform: scale(1.05); 
}

.benefit h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.benefit p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
}

/* ---------- Myself Section ---------- */
.myself {
    background-color: #222;
    color: white;
    padding: 50px 10%;
    margin-top: 40px;
}

.myself-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: column;
    text-align: center;
}

.myself-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.myself-text {
    max-width: 500px;
}

.myself-text h1 {
    font-size: 2.8rem;
    text-align: center;
    padding-bottom: 10px;
    color: white;
}

.myself-text p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* ---------- Register CTA Section ---------- */
.register-cta {
  background: #111;
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.register-cta h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 16px;
}
.register-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ccc;
}
.register-cta .btn-gold {
  display: inline-block;
  padding: 12px 24px;
  background: #d4af37;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.register-cta .btn-gold:hover {
  background: #b98d1a;
  transform: scale(1.05);
}
.register-cta .note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}

/* Responsive adjustments for Register CTA */
@media (max-width: 768px) {
  .register-cta {
    padding: 40px 16px;
  }
  .register-cta h2 {
    font-size: 1.6rem;
  }
  .register-cta p {
    font-size: 1rem;
  }
  .register-cta .btn-gold {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }
  .register-cta .note {
    font-size: 0.85rem;
  }
}

/* ---------- Foot Skills Detail (two-column) ---------- */
.fs-wrap { 
  background: #0f1114; 
  color: #e9e9e9; 
  padding: 120px 20px 60px; /* top padding clears fixed nav */
}

.fs-grid {
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1.2fr 1.8fr; /* media | content */
  gap: 28px; 
  align-items: start;
}

/* Left image */
.fs-media { 
  border-radius: 16px; 
  overflow: hidden; 
  background: #0b0e11; 
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
}
.fs-media img { 
  display: block; 
  width: 100%; 
  height: 100%; 
  min-height: 380px; 
  object-fit: cover; 
}

/* Right content */
.fs-content { 
  background: #171a1d; 
  border: 1px solid rgba(212,175,55,.18); 
  border-radius: 16px; 
  padding: 24px; 
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.fs-header h1 { 
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); 
  color: #d4af37; 
  margin: 0 0 8px; 
}
.fs-intro { 
  color: #cfcfcf; 
  margin: 0 0 16px; 
  line-height: 1.6; 
}

.fs-details h2 { 
  font-size: 1.25rem; 
  color: #fff; 
  margin: 10px 0 8px; 
}
.fs-details p { 
  color: #cfcfcf; 
  line-height: 1.65; 
  margin-bottom: 10px; 
}
.fs-details ul { 
  list-style: none; 
  margin: 10px 0 14px; 
  padding: 0; 
}
.fs-details ul li { 
  position: relative; 
  padding-left: 20px; 
  margin: 8px 0; 
  color: #ddd; 
}
.fs-details ul li::before { 
  content: "•"; 
  position: absolute; 
  left: 4px; 
  color: #d4af37; 
  font-weight: 900; 
}
.fs-note { 
  color: #bfbfbf; 
  font-size: 0.98rem; 
  margin-top: 6px; 
}

/* CTA below text on right */
.fs-cta { 
  margin-top: 18px; 
  display: flex; 
  flex-wrap: wrap; 
}
.fs-cta .btn, 
.fs-cta .btn-gold { 
  display: inline-block; 
  padding: 12px 20px; 
  background: #d4af37; 
  color: #fff; 
  font-weight: 800; 
  text-decoration: none; 
  border-radius: 8px; 
  transition: background .25s ease, transform .2s ease; 
}
.fs-cta .btn:hover { 
  background: #b98d1a; 
  transform: translateY(-1px); 
}

/* Responsive */
@media (max-width: 980px) {
  .fs-grid { grid-template-columns: 1fr; }
  .fs-media img { min-height: 260px; }
  .fs-content { padding: 20px; }
}
@media (max-width: 640px) {
  .fs-wrap { padding: 120px 16px 50px; }
  .fs-intro, .fs-details p { font-size: 1rem; }
  .fs-cta .btn { width: 100%; text-align: center; }
}


/* ---------- Free Clinics Detail (two-column) ---------- */
.clinic-wrap { 
  background: #0f1114; 
  color: #e9e9e9; 
  padding: 120px 20px 60px; /* top padding clears fixed nav */
}

.clinic-grid {
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1.2fr 1.8fr; /* media | content */
  gap: 28px; 
  align-items: start;
}

/* Left image */
.clinic-media { 
  border-radius: 16px; 
  overflow: hidden; 
  background: #0b0e11; 
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
}
.clinic-media img { 
  display: block; 
  width: 100%; 
  height: 100%; 
  min-height: 380px; 
  object-fit: cover; 
}

/* Right content */
.clinic-content { 
  background: #171a1d; 
  border: 1px solid rgba(212,175,55,.18); 
  border-radius: 16px; 
  padding: 24px; 
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.clinic-header h1 { 
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); 
  color: #d4af37; 
  margin: 0 0 8px; 
}
.clinic-intro { 
  color: #cfcfcf; 
  margin: 0 0 16px; 
  line-height: 1.6; 
}

.clinic-details h2 { 
  font-size: 1.25rem; 
  color: #fff; 
  margin: 10px 0 8px; 
}
.clinic-details p { 
  color: #cfcfcf; 
  line-height: 1.65; 
  margin-bottom: 10px; 
}
.clinic-details ul { 
  list-style: none; 
  margin: 10px 0 14px; 
  padding: 0; 
}
.clinic-details ul li { 
  position: relative; 
  padding-left: 20px; 
  margin: 8px 0; 
  color: #ddd; 
}
.clinic-details ul li::before { 
  content: "•"; 
  position: absolute; 
  left: 4px; 
  color: #d4af37; 
  font-weight: 900; 
}
.clinic-note { 
  color: #bfbfbf; 
  font-size: 0.98rem; 
  margin-top: 6px; 
}

/* CTA below text on right */
.clinic-cta { 
  margin-top: 18px; 
  display: flex; 
  flex-wrap: wrap; 
}
.clinic-cta .btn, 
.clinic-cta .btn-gold { 
  display: inline-block; 
  padding: 12px 20px; 
  background: #d4af37; 
  color: #fff; 
  font-weight: 800; 
  text-decoration: none; 
  border-radius: 8px; 
  transition: background .25s ease, transform .2s ease; 
}
.clinic-cta .btn:hover { 
  background: #b98d1a; 
  transform: translateY(-1px); 
}
.clinic-cta .note {
  width: 100%;
  margin-top: 8px;
  color: #bfbfbf;
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px) {
  .clinic-grid { grid-template-columns: 1fr; }
  .clinic-media img { min-height: 260px; }
  .clinic-content { padding: 20px; }
}
@media (max-width: 640px) {
  .clinic-wrap { padding: 120px 16px 50px; }
  .clinic-intro, .clinic-details p { font-size: 1rem; }
  .clinic-cta .btn { width: 100%; text-align: center; }
}


/* ---------- Camps Detail (two-column) ---------- */
.camp-wrap { 
  background: #0f1114; 
  color: #e9e9e9; 
  padding: 120px 20px 60px; /* top padding clears fixed nav */
}

.camp-grid {
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1.2fr 1.8fr; /* media | content */
  gap: 28px; 
  align-items: start;
}

/* Left image */
.camp-media { 
  border-radius: 16px; 
  overflow: hidden; 
  background: #0b0e11; 
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
}
.camp-media img { 
  display: block; 
  width: 100%; 
  height: 100%; 
  min-height: 380px; 
  object-fit: cover; 
}

/* Right content */
.camp-content { 
  background: #171a1d; 
  border: 1px solid rgba(212,175,55,.18); 
  border-radius: 16px; 
  padding: 24px; 
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.camp-header h1 { 
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); 
  color: #d4af37; 
  margin: 0 0 8px; 
}
.camp-intro { 
  color: #cfcfcf; 
  margin: 0 0 16px; 
  line-height: 1.6; 
}

.camp-details h2 { 
  font-size: 1.25rem; 
  color: #fff; 
  margin: 10px 0 8px; 
}
.camp-details p { 
  color: #cfcfcf; 
  line-height: 1.65; 
  margin-bottom: 10px; 
}
.camp-details ul { 
  list-style: none; 
  margin: 10px 0 14px; 
  padding: 0; 
}
.camp-details ul li { 
  position: relative; 
  padding-left: 20px; 
  margin: 8px 0; 
  color: #ddd; 
}
.camp-details ul li::before { 
  content: "•"; 
  position: absolute; 
  left: 4px; 
  color: #d4af37; 
  font-weight: 900; 
}
.camp-note { 
  color: #bfbfbf; 
  font-size: 0.98rem; 
  margin-top: 6px; 
}

/* CTA below text on right */
.camp-cta { 
  margin-top: 18px; 
  display: flex; 
  flex-wrap: wrap; 
}
.camp-cta .btn, 
.camp-cta .btn-gold { 
  display: inline-block; 
  padding: 12px 20px; 
  background: #d4af37; 
  color: #fff; 
  font-weight: 800; 
  text-decoration: none; 
  border-radius: 8px; 
  transition: background .25s ease, transform .2s ease; 
}
.camp-cta .btn:hover { 
  background: #b98d1a; 
  transform: translateY(-1px); 
}
.camp-cta .note {
  width: 100%;
  margin-top: 8px;
  color: #bfbfbf;
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px) {
  .camp-grid { grid-template-columns: 1fr; }
  .camp-media img { min-height: 260px; }
  .camp-content { padding: 20px; }
}
@media (max-width: 640px) {
  .camp-wrap { padding: 120px 16px 50px; }
  .camp-intro, .camp-details p { font-size: 1rem; }
  .camp-cta .btn { width: 100%; text-align: center; }
}

/* ---------- Private Training Detail (two-column) ---------- */
.private-wrap { 
  background: #0f1114; 
  color: #e9e9e9; 
  padding: 120px 20px 60px; /* top padding clears fixed nav */
}

.private-grid {
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1.2fr 1.8fr; /* media | content */
  gap: 28px; 
  align-items: start;
}

/* Left image */
.private-media { 
  border-radius: 16px; 
  overflow: hidden; 
  background: #0b0e11; 
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
}
.private-media img { 
  display: block; 
  width: 100%; 
  height: 100%; 
  min-height: 380px; 
  object-fit: cover; 
}

/* Right content */
.private-content { 
  background: #171a1d; 
  border: 1px solid rgba(212,175,55,.18); 
  border-radius: 16px; 
  padding: 24px; 
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.private-header h1 { 
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); 
  color: #d4af37; 
  margin: 0 0 8px; 
}
.private-intro { 
  color: #cfcfcf; 
  margin: 0 0 16px; 
  line-height: 1.6; 
}

.private-details h2 { 
  font-size: 1.25rem; 
  color: #fff; 
  margin: 10px 0 8px; 
}
.private-details p { 
  color: #cfcfcf; 
  line-height: 1.65; 
  margin-bottom: 10px; 
}
.private-details ul { 
  list-style: none; 
  margin: 10px 0 14px; 
  padding: 0; 
}
.private-details ul li { 
  position: relative; 
  padding-left: 20px; 
  margin: 8px 0; 
  color: #ddd; 
}
.private-details ul li::before { 
  content: "•"; 
  position: absolute; 
  left: 4px; 
  color: #d4af37; 
  font-weight: 900; 
}
.private-note { 
  color: #bfbfbf; 
  font-size: 0.98rem; 
  margin-top: 6px; 
}

/* CTA below text on right */
.private-cta { 
  margin-top: 18px; 
  display: flex; 
  flex-wrap: wrap; 
}
.private-cta .btn, 
.private-cta .btn-gold { 
  display: inline-block; 
  padding: 12px 20px; 
  background: #d4af37; 
  color: #fff; 
  font-weight: 800; 
  text-decoration: none; 
  border-radius: 8px; 
  transition: background .25s ease, transform .2s ease; 
}
.private-cta .btn:hover { 
  background: #b98d1a; 
  transform: translateY(-1px); 
}
.private-cta .note {
  width: 100%;
  margin-top: 8px;
  color: #bfbfbf;
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px) {
  .private-grid { grid-template-columns: 1fr; }
  .private-media img { min-height: 260px; }
  .private-content { padding: 20px; }
}
@media (max-width: 640px) {
  .private-wrap { padding: 120px 16px 50px; }
  .private-intro, .private-details p { font-size: 1rem; }
  .private-cta .btn { width: 100%; text-align: center; }
}

/* ---------- Unique Section ---------- */
/* Styles for the "What Makes Foundry Soccer Academy Unique?" section */
.unique-section {
    background: #111;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.unique-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.unique-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ccc;
}

.unique-section a.book-now {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.1rem;
    background: #d4af37;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.unique-section a.book-now:hover {
    background: #b98d1a;
    transform: scale(1.05);
}

/* ---------- Expected Results Section ---------- */
.expected-results {
    background-color: #222;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.expected-results h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.results-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #ccc;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.result-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
    text-align: left;
}

.result-item:hover {
    transform: scale(1.03);
}

.result-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.result-item h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin: 15px;
}

.result-item p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
    margin: 0 15px 20px;
}
.results-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.results-buttons .book-now {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.1rem;
    text-decoration: none;
    background: #d4af37;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.results-buttons .book-now:hover {
    background: #b98d1a;
    transform: scale(1.05);
}

/* ---------- Home Pricing Section ---------- */
.home-pricing-section {
    background: #222;
    color: white;
    padding: 60px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.home-pricing-left {
    flex: 1 1 60%;
    min-width: 300px;
}

.home-pricing-left .pricing-table {
    width: 100%;
    max-width: 550px;
    border-collapse: collapse;
    margin: 0;
}

.home-pricing-left .pricing-table th {
    background: #d4af37;
    color: white;
    font-size: 1.2rem;
    padding: 10px;
    border-bottom: 2px solid white;
}

.home-pricing-left .pricing-table td {
    font-size: 1rem;
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.home-pricing-left .session-info {
    font-size: 0.9rem;
    color: white;
    margin-top: 8px;
    font-style: italic;
}

.home-pricing-right {
    flex: 1 1 30%;
    min-width: 200px;
    text-align: center;
}

.home-pricing-right a {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 20px;
    background: #d4af37;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.home-pricing-right a:hover {
    background: #b98d1a;
    transform: scale(1.05);
}

/* ---------- Referral Section ---------- */
.referral-section {
    background: #222;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.referral-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.referral-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ccc;
}

.referral-table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.referral-table th {
    background: #d4af37;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-bottom: 2px solid white;
}

.referral-table td {
    font-size: 1.2rem;
    padding: 12px;
    border-bottom: 1px solid #444;
    color: #eee;
}

.referral-note {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 10px;
    font-style: italic;
}

/* Home page referral section styles */
.home-referral-section {
    background: #111;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.home-referral-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-referral-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ccc;
}

.home-referral-table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: #191e22;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.home-referral-table th {
    background: #d4af37;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-bottom: 2px solid white;
}

.home-referral-table td {
    font-size: 1.2rem;
    padding: 12px;
    border-bottom: 1px solid #444;
    color: #eee;
}

.home-referral-note {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 10px;
    font-style: italic;
}

/* ---------- Player Gallery Section ---------- */
.gallery-section {
    background: #222;
    color: white;
    padding: 40px 10% 80px;
    text-align: center;
}

.gallery-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 100px;
    text-align: center;
    padding-top: 40px;
}

.alt-section {
    background: #222;
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
    padding: 20px 0;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}


/* ---------- About & Qualifications Section ---------- */
.about-us {
    background: linear-gradient(to bottom, #000000, #111111); 
    color: white;
    padding: 80px 10% 40px;  
    margin-top: 40px;
    margin-bottom: 0;      
}

.qualifications {
    background: linear-gradient(to bottom, #000000, #111111); 
    color: white;
    padding: 80px 10% 40px;  
    margin-top: 40px;
}

.about-us h1, .qualifications h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: #f4f4f4;
    margin-bottom: 40px;
    position: relative;
}

.about-us h1::after, .qualifications h1::after {
    content: "";
    width: 120px;
    height: 4px;
    background-color: #e74c3c; 
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-container, .qualifications-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    padding: 20px 0;
}

.intro-image img, .license-image img {
    width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.intro-text, .qual-text, .future-text {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

/* ---------- Pricing Section ---------- */
.pricing {
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
    color: white;
}

.pricing-table {
    width: 100%;
    max-width: 600px;
    margin: auto;
    border-collapse: collapse;
}

.pricing-table th {
    background: #d4af37;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-bottom: 3px solid white;
}

.pricing-table td {
    font-size: 1.3rem;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.fine-print {
    font-size: 0.9rem;
    color: #bbb;
}

.session-info {
    font-size: 1rem;
    margin-top: 10px;
    color: #f4f4f4;
    font-style: italic;
}

/* Pricing: headline badge + subtext */
.pricing h1 {
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    color: #f4f4f4;
}
.pricing-highlight {
    display: inline-block;
    padding: 12px 24px;
    background: #d4af37;
    color: #111;
    font-weight: 800;
    border-radius: 12px;
    font-size: 1.6rem;
    margin: 8px 0 14px;
    box-shadow: 0 6px 18px rgba(212,175,55,.25);
}
.pricing-subtext {
    max-width: 900px;
    margin: 0 auto 28px;
    color: #ccc;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Plan cards container */
.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1100px;
    margin: 18px auto 0;
}

/* Individual plan card */
.plan-card {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 22px;
    text-align: left;
    box-shadow: 0 6px 22px rgba(0,0,0,.45);
    border: 1px solid rgba(212,175,55,.18);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,.55);
    border-color: rgba(212,175,55,.35);
}
.plan-card h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;          /* allow long titles to wrap cleanly */
    line-height: 1.25;        /* keep compact spacing like before */
}
.plan-card .tag {
    font-size: .75rem;
    text-transform: uppercase;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 999px;
    letter-spacing: .5px;
    border: 1px solid rgba(255,255,255,.15);
}
.plan-card ul {
    list-style: none;
    margin: 6px 0 16px;
    padding: 0;
}
.plan-card ul li {
    position: relative;
    padding-left: 20px;
    margin: 10px 0;
    color: #ddd;
    line-height: 1.5;
    word-break: break-word;   /* prevent overflow on long phrases */
    overflow-wrap: anywhere;  /* safe wrapping without affecting look */
}
.plan-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-size: .95rem;
    transform: translateY(2px);
}
.plan-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-top: 4px;
}
.plan-card .upfront {
    color: #bfbfbf;
    margin-top: 6px;
    font-size: 1rem;
}
.plan-card .save {
    color: #d4af37;
    font-weight: 700;
    margin-left: 6px;
}

/* Accents for featured cards */
.plan-card.popular {
    border-color: rgba(212,175,55,.6);
    box-shadow: 0 10px 28px rgba(212,175,55,.12), 0 6px 22px rgba(0,0,0,.45);
}
.plan-card.popular .tag {
    background: #d4af37;
    color: #111;
    border-color: transparent;
    font-weight: 800;
}
.plan-card.best .tag {
    background: #0d1a2f;
    border-color: #0d1a2f;
}

/* Session info chip row under cards (already styled globally) */
.pricing .session-info {
    margin-top: 26px;
}

/* Season chips bar below plan cards */
.season-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 12px 18px;
    margin: 26px auto 0;
    background: #101214;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.season-chips .chip {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e5e5e5;
    font-size: 1.02rem;
    line-height: 1.4;
    white-space: nowrap;
}
.season-chips .chip .icon {
    font-size: 1.1rem;
}
.season-chips .chip strong {
    color: #fff;
    letter-spacing: .3px;
}
.season-chips .chip em {
    color: #bfbfbf;
    font-style: normal;
    margin-left: 6px;
}
@media (max-width: 650px) {
    .season-chips {
        flex-direction: column;
        gap: 10px;
        border-radius: 18px;
        padding: 12px 14px;
        width: 100%;
        max-width: 520px;
    }
    .season-chips .chip { white-space: normal; }
}

/* Perk note under season chips */
.perk-note {
    max-width: 1000px;
    margin: 18px auto 0;
    padding: 12px 16px;
    text-align: center;
    color: #cfcfcf;
    font-size: 0.98rem;
    line-height: 1.6;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
@media (max-width: 650px) {
    .perk-note {
        font-size: 0.95rem;
        margin: 14px auto 0;
        padding: 10px 12px;
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .plans-container {
        grid-template-columns: 1fr;
    }
    .plan-card { text-align: left; }
    .pricing-highlight { font-size: 1.4rem; }
    .pricing-subtext { font-size: 1rem; }
}


/* ---------- Schedule & Calendar Section ---------- */
.schedule {
    text-align: center;
    padding: 80px 10% 40px;
    background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
    color: white;
}

.schedule h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #f4f4f4;
}


/* Modern dark UI calendar styles */
.calendar-container {
    max-width: 1000px;
    margin: auto;
    background: #161616;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: #f4f4f4;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: #0d0d0d;
    padding: 10px 20px;
    border-radius: 10px;
}

.calendar-header h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.calendar-header button {
    background: #d4af37;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #222;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    color: #ccc;
    border-bottom: 1px solid #333;
}

#calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    padding-top: 10px;
}

.date, .empty {
    background: #2a2a2a;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    min-height: 100px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.date:hover {
    background: #333;
}

.today {
    background: #0d1a2f;
    font-weight: bold;
}

.event {
    background: #ffcc00;
    color: #111;
    font-size: 0.9rem;
    border-radius: 5px;
    padding: 5px;
    margin-top: 8px;
}

.filler-section {
    height: 200px;
    background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
}

/* Calendar section button styles - consistent with site's dark theme */
.calendar-container {
    padding: 40px 0;
    text-align: center;
    color: white;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.calendar-container a {
    display: inline-block;
    padding: 15px 30px;
    background: #d4af37;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: none;
}

.calendar-container a:hover {
    background: #b98d1a;
    transform: scale(1.05);
}

/* --- Clean schedule display (no embedded calendar) --- */
.schedule-intro {
    max-width: 900px;
    margin: 0 auto 18px;
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 1.05rem;
}

.season-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    border-radius: 999px;
    margin: 10px auto 24px;
    box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.season-status .status-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #2ecc71; /* green for active season */
    box-shadow: 0 0 0 4px rgba(46,204,113,.15);
    display: inline-block;
}
.season-status .status-text {
    color: #eaeaea;
    letter-spacing: .2px;
    font-size: .98rem;
}

.current-times {
    max-width: 900px;
    margin: 0 auto 24px;
    background: #141414;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,.35);
    text-align: left;
}
.current-times h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: .3px;
}
.times-list {
    list-style: none;
    margin: 8px 0 8px;
    padding: 0;
}
.times-list li {
    position: relative;
    padding-left: 22px;
    margin: 10px 0;
    color: #ddd;
    line-height: 1.5;
}
.times-list li::before {
    content: "🕒";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(1px);
    font-size: 1rem;
    opacity: .95;
}
.location-note {
    margin-top: 8px;
    color: #bfbfbf;
    font-size: .98rem;
}

.season-cadence {
    max-width: 900px;
    margin: 10px auto 0;
    text-align: left;
    background: #101214;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.season-cadence h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: .3px;
}
.season-cadence ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.season-cadence li {
    position: relative;
    padding-left: 22px;
    margin: 8px 0;
    color: #dcdcdc;
}
.season-cadence li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: #d4af37;
    font-weight: 900;
}

/* responsive refinements */
@media (max-width: 720px) {
    .current-times, .season-cadence {
        padding: 16px;
    }
    .times-list li::before { transform: translateY(2px); }
}

/* ---------- Contact Section ---------- */
.contact-form {
    text-align: center;
    padding: 140px 10% 60px; 
    background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
    color: white;
}

.contact-form h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #f4f4f4;
}

.contact-form form {
    max-width: 500px;
    margin: auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #f4f4f4;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #0d1a2f;
    border-radius: 5px;
    font-size: 1.1rem;
    background: #222;
    color: white;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    background: #d4af37;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button[type="submit"]:hover {
    background: #b98d1a;
}

/* Contact Us Form Styles */
.contact-us-form {
    text-align: center;
    padding: 140px 10% 60px;
    background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
    color: white;
}

.contact-wrapper {
    max-width: 500px;
    margin: auto;
}

.contact-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-group label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #f4f4f4;
}

.contact-group input,
.contact-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-size: 1.1rem;
    background: #222;
    color: white;
}

.contact-group textarea {
    resize: vertical;
}

/* ---------- Signup Section ---------- */
.signup {
    background-color: #111;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.signup h1 {
    padding-bottom: 15px;
}

.signup form{
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 3px solid #d4af37;
}

.signup input, .signup select {
    width:100%;
    padding: 12px;
    margin:10px 0;
    border: 2px solid #0d1a2f;
    border-radius: 5px;
    background:#222;
    color:white;
    font-size: 1rem;
}

.signup label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    color:#f4f4f4;
    text-align: left;
}

.signup button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border:none;
    border-radius: 5px;
    background: #d4af37;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-bottom: 20px;
}

.signup button:hover {
    background: #b98d1a;
}

.signup .disclaimer {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

/* ---------- Footer Section ---------- */
footer {
    background: #161616;
    padding: 40px 0;
    color:white;
}

.footer-container { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 150px;
}

.footer-links h2{
    font-size: 1.5rem;
    text-decoration: underline;
    margin-bottom: 10px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-contact ul li {
    margin: 5px 0;
}

.footer-links a, .footer-contact a{
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #0d1a2f;
}

.footer-contact h2 {
    font-size: 1.5rem;
    text-decoration: underline;
    margin-bottom: 10px;
}
/* Styles for the "What Makes Foundry Soccer Academy Unique?" section */
.unique-section {
    background: #111;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.unique-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.unique-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ccc;
}

.home-pricing-section {
    background: #222;
    color: white;
    padding: 60px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.home-pricing-left {
    flex: 1 1 60%;
    min-width: 300px;
}

.home-pricing-left .pricing-table {
    width: 100%;
    max-width: 550px;
    border-collapse: collapse;
    margin: 0;
}

.home-pricing-left .pricing-table th {
    background: #d4af37;
    color: white;
    font-size: 1.2rem;
    padding: 10px;
    border-bottom: 2px solid white;
}

.home-pricing-left .pricing-table td {
    font-size: 1rem;
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.home-pricing-left .session-info {
    font-size: 0.9rem;
    color: white;
    margin-top: 8px;
    font-style: italic;
}

.home-pricing-right {
    flex: 1 1 30%;
    min-width: 200px;
    text-align: center;
}

.home-pricing-right a {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 20px;
    background: #d4af37;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.home-pricing-right a:hover {
    background: #b98d1a;
    transform: scale(1.05);
}


.referral-section {
    background: #222;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.referral-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.referral-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ccc;
}

.referral-table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.referral-table th {
    background: #d4af37;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-bottom: 2px solid white;
}

.referral-table td {
    font-size: 1.2rem;
    padding: 12px;
    border-bottom: 1px solid #444;
    color: #eee;
}

.referral-note {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 10px;
    font-style: italic;
}

/* Home page referral section styles */
.home-referral-section {
    background: #111;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.home-referral-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-referral-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ccc;
}

.home-referral-table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: #191e22;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.home-referral-table th {
    background: #d4af37;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-bottom: 2px solid white;
}

.home-referral-table td {
    font-size: 1.2rem;
    padding: 12px;
    border-bottom: 1px solid #444;
    color: #eee;
}

.home-referral-note {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 10px;
    font-style: italic;
}
/* Player Gallery Section Styles */
.gallery-section {
    background: #222;
    color: white;
    padding: 40px 10% 80px;
    text-align: center;
}

.gallery-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 100px;
    text-align: center;
    padding-top: 40px;
}

.alt-section {
    background: #222;
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
    padding: 20px 0;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}


/* ---------------- Buttons & Links ---------------- */
.hero-buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.learn-more {
    background: #0d1a2f;
}

.learn-more:hover {
    background: #0a1424;
    transform: scale(1.05);
}

.book-now {
    background: #d4af37;
}

.book-now:hover {
    background: #b98d1a;
    transform: scale(1.05);
}


/* ---------- Training Strips (scoped) ---------- */
#training-strips { 
  --bg: #0f1114;              /* page background for this section only */
  --card: #171a1d;            /* strip background */
  --text: #e9e9e9;
  --muted: #cfcfcf;
  --gold: #d4af37;            /* brand gold */
  --gold-900: #1f1a08;
  --ring: rgba(212, 175, 55, 0.18);
  background: var(--bg);
  color: var(--text);
}

#training-strips.container {
  max-width: 1200px; /* reduce side whitespace */
  margin: 0 auto;
  padding: 120px 24px 28px; /* top padding clears fixed nav */
}

/* Section Header */
#training-strips .strips-header { text-align: center; margin: 6px 0 20px; }
#training-strips .strips-header h2 { margin: 0 0 8px; font-size: 2rem; color: var(--gold); }
#training-strips .strips-header p { margin: 0; color: var(--muted); }

/* Strip Layout */
#training-strips .strip {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr 240px; /* media | text | ctas */
  gap: 28px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
  overflow: hidden; /* keep any inner glow rounded */
}

/* Soft gradient overlay for each card - new gold-side gradient */
#training-strips .strip::before {
  content: "";
  position: absolute; inset: 0; border-radius: 16px; pointer-events: none;
  /* default (gold) side washes; center left neutral for readability */
  background:
    linear-gradient(to right, rgba(212,175,55,.18) 0%, rgba(212,175,55,.10) 14%, transparent 32%),
    linear-gradient(to left,  rgba(212,175,55,.18) 0%, rgba(212,175,55,.10) 14%, transparent 32%);
}
/* Subtle vignette overlay to darken center/corners, keep middle neutral */
#training-strips .strip::after {
  content: "";
  position: absolute; inset: 0; border-radius: 16px; pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,.15) 0%, transparent 22%, transparent 78%, rgba(0,0,0,.15) 100%);
}
/* Make the whole card take on the program color by inspecting its media child (side gradients, stronger color) */
#training-strips .strip:has(.media-footskills)::before {
  background:
    linear-gradient(to right, rgba(220,60,60,.18) 0%, rgba(220,60,60,.10) 14%, transparent 32%),
    linear-gradient(to left,  rgba(220,60,60,.18) 0%, rgba(220,60,60,.10) 14%, transparent 32%);
}
#training-strips .strip:has(.media-clinic)::before {
  background:
    linear-gradient(to right, rgba(24,140,72,.20) 0%, rgba(24,140,72,.10) 14%, transparent 32%),
    linear-gradient(to left,  rgba(24,140,72,.20) 0%, rgba(24,140,72,.10) 14%, transparent 32%);
}
#training-strips .strip:has(.media-camps)::before {
  background:
    linear-gradient(to right, rgba(32,140,196,.20) 0%, rgba(32,140,196,.10) 14%, transparent 32%),
    linear-gradient(to left,  rgba(32,140,196,.20) 0%, rgba(32,140,196,.10) 14%, transparent 32%);
}
#training-strips .strip:has(.media-private)::before {
  background:
    linear-gradient(to right, rgba(180,68,130,.22) 0%, rgba(180,68,130,.11) 14%, transparent 32%),
    linear-gradient(to left,  rgba(180,68,130,.22) 0%, rgba(180,68,130,.11) 14%, transparent 32%);
}
#training-strips .strip:nth-of-type(1)::before {
  background:
    linear-gradient(to right, rgba(212,175,55,.18) 0%, rgba(212,175,55,.10) 14%, transparent 32%),
    linear-gradient(to left,  rgba(212,175,55,.18) 0%, rgba(212,175,55,.10) 14%, transparent 32%);
}

/* Colored outer glow + subtle border tint per variant -- stronger glow */
#training-strips .strip:has(.media-footskills) { box-shadow: 0 10px 28px rgba(0,0,0,.55), 0 0 20px rgba(220,60,60,.12); border-color: rgba(220,60,60,.45); }
#training-strips .strip:has(.media-clinic)     { box-shadow: 0 10px 28px rgba(0,0,0,.55), 0 0 20px rgba(24,140,72,.13);  border-color: rgba(24,140,72,.46); }
#training-strips .strip:has(.media-camps)      { box-shadow: 0 10px 28px rgba(0,0,0,.55), 0 0 20px rgba(32,140,196,.13); border-color: rgba(32,140,196,.46); }
#training-strips .strip:has(.media-private)    { box-shadow: 0 10px 28px rgba(0,0,0,.55), 0 0 20px rgba(180,68,130,.13); border-color: rgba(180,68,130,.48); }
#training-strips .strip:nth-of-type(1)         { box-shadow: 0 10px 28px rgba(0,0,0,.55), 0 0 20px rgba(212,175,55,.12); border-color: rgba(212,175,55,.45); }


#training-strips .strip-media {
  height: 380px;
  min-height: 380px;
  border-radius: 12px;
  background: #0b0e11;
  opacity: .85;
  overflow: hidden; /* ensure inner <img> stays inside the box and respects rounding */
}
#training-strips .strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fill the box without distortion */
  display: block;        /* remove inline-gap */
  border-radius: 12px;   /* match container radius so no corners peek */
}
#training-strips .strip-ctas {
  display: flex; flex-direction: column; gap: 12px;
  justify-content: flex-end; align-items: flex-end; height: 100%;
}
#training-strips .strip-ctas .btn-gold,
#training-strips .strip-ctas .btn-outline,
#training-strips .strip-ctas .btn-ghost { align-self: flex-end; }
#training-strips .media-footskills {
  background:
    linear-gradient(135deg, rgba(220,60,60,.18), rgba(220,60,60,.04)),
    radial-gradient(1200px 420px at 110% -40%, rgba(255,255,255,.07), transparent),
    repeating-linear-gradient(90deg, rgba(220,60,60,.08) 0 2px, transparent 2px 9px),
    #0b0e11;
}
#training-strips .media-clinic  { background: linear-gradient(135deg, rgba(34,197,94,.20),  rgba(34,197,94,.05)),  #0b0e11; }
#training-strips .media-camps   { background: linear-gradient(135deg, rgba(56,189,248,.20), rgba(56,189,248,.05)), #0b0e11; }
#training-strips .media-private { background: linear-gradient(135deg, rgba(244,114,182,.20), rgba(244,114,182,.05)), #0b0e11; }

/* Strip Body */
#training-strips .strip-body h3 { margin: .5rem 0 .6rem; font-size: 1.55rem; color: #fff; }
#training-strips .strip-body p  { margin: 0 0 .6rem; color: var(--muted); line-height: 1.55; }

/* Badge */
#training-strips .badge {
  display: inline-block; 
  background: var(--gold); 
  color: #111; 
  border-radius: 999px;
  padding: 5px 10px; 
  font-size: .8rem; 
  font-weight: 700; 
  letter-spacing: .3px;
}

/* Points List */
#training-strips .strip-points { margin: .4rem 0 1rem; padding-left: 1.1rem; color: #d9d9d9; }
#training-strips .strip-points li { margin: .35rem 0; }

/* CTAs */
#training-strips .strip-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
#training-strips .btn-gold,
#training-strips .btn-outline,
#training-strips .btn-ghost {
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 0 var(--gold-900) inset;
  border: none;
  transition: background 0.3s ease-in-out;
}
#training-strips .btn-gold:hover,
#training-strips .btn-outline:hover,
#training-strips .btn-ghost:hover {
  background: #b98d1a;
}


/* Foot Skills fallback: when an image is used instead of the old placeholder class */
#training-strips .strip:has(.strip-media img[src*="MainFootSkills"])::before {
  background:
    linear-gradient(to right, rgba(220,60,60,.18) 0%, rgba(220,60,60,.10) 14%, transparent 32%),
    linear-gradient(to left,  rgba(220,60,60,.18) 0%, rgba(220,60,60,.10) 14%, transparent 32%);
}
#training-strips .strip:has(.strip-media img[src*="MainFootSkills"]) {
  box-shadow: 0 10px 28px rgba(0,0,0,.55), 0 0 20px rgba(220,60,60,.12);
  border-color: rgba(220,60,60,.45);
}


/* Camps fallback: when an image is used instead of the old .media-camps placeholder */
#training-strips .strip:has(.strip-media img[src*="FirstCamp"])::before,
#training-strips .strip:has(.strip-media img[src*="SecondaryCamp"])::before {
  background:
    linear-gradient(to right, rgba(32,140,196,.20) 0%, rgba(32,140,196,.10) 14%, transparent 32%),
    linear-gradient(to left,  rgba(32,140,196,.20) 0%, rgba(32,140,196,.10) 14%, transparent 32%);
}
#training-strips .strip:has(.strip-media img[src*="FirstCamp"]),
#training-strips .strip:has(.strip-media img[src*="SecondaryCamp"]) {
  box-shadow: 0 10px 28px rgba(0,0,0,.55), 0 0 20px rgba(32,140,196,.13);
  border-color: rgba(32,140,196,.46);
}

/* Free Clinic fallback: when an image file is used instead of .media-clinic */
#training-strips .strip:has(.strip-media img[src*="FirstClinic"])::before,
#training-strips .strip:has(.strip-media img[src*="SecondClinic"])::before {
  background:
    linear-gradient(to right, rgba(24,140,72,.20) 0%, rgba(24,140,72,.10) 14%, transparent 32%),
    linear-gradient(to left,  rgba(24,140,72,.20) 0%, rgba(24,140,72,.10) 14%, transparent 32%);
}
#training-strips .strip:has(.strip-media img[src*="FirstClinic"]),
#training-strips .strip:has(.strip-media img[src*="SecondClinic"]) {
  box-shadow: 0 10px 28px rgba(0,0,0,.55), 0 0 20px rgba(24,140,72,.13);
  border-color: rgba(24,140,72,.46);
}

/* Private Training fallback: when an image file is used instead of .media-private */
#training-strips .strip:has(.strip-media img[src*="MainPrivateCoach"])::before,
#training-strips .strip:has(.strip-media img[src*="SecondaryPrivateCoach"])::before {
  background:
    linear-gradient(to right, rgba(180,68,130,.22) 0%, rgba(180,68,130,.11) 14%, transparent 32%),
    linear-gradient(to left,  rgba(180,68,130,.22) 0%, rgba(180,68,130,.11) 14%, transparent 32%);
}
#training-strips .strip:has(.strip-media img[src*="MainPrivateCoach"]),
#training-strips .strip:has(.strip-media img[src*="SecondaryPrivateCoach"]) {
  box-shadow: 0 10px 28px rgba(0,0,0,.55), 0 0 20px rgba(180,68,130,.13);
  border-color: rgba(180,68,130,.48);
}

/* Responsive */
@media (max-width: 880px) {
  #training-strips .strip { grid-template-columns: 1fr; padding: 22px; }
  #training-strips .strip-ctas { align-items: flex-start; margin-top: 8px; }
}

/* ---------------- Forms ---------------- */
/* (All form styles are already grouped in their respective sections above) */

/* ---------------- Media Queries ---------------- */

@media (max-width: 768px) {
    .hero {
        justify-content: center;
        text-align: center;
        padding-left: 0;
        padding-top: 180px;
        padding-bottom: 60px;
        height: auto;
    }
    .hero-content {
        max-width: 80%;
        z-index: 2;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content h2 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .nav-links {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: 1002;
    }
    .nav-links.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: white;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1100;
    }
    .contact-us-form {
        padding: 160px 5% 40px;
    }
    .contact-wrapper {
        max-width: 90%;
    }
    .benefits-container {
        flex-direction: column;
        align-items: center;
    }
    .benefit {
        width: 90%;
        margin-bottom: 20px;
    }
    .myself-container {
        flex-direction: column;
        text-align: center;
    }
    .myself-image {
        width: 80%;
    }
    .signup form {
        width: 90%;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo img {
        margin-bottom: 20px;
    }
    .footer-links ul, .footer-contact ul {
        padding: 0;
    }
    .training-intro {
        padding: 80px 5% 40px;
    }
    .training-intro-content {
        max-width: 100%;
    }
    .training-intro h1{
        font-size: 2rem;
    }
    .training-intro h2 {
        font-size: 1.5rem;
    }
    .training-intro p{
        font-size: 1rem;
    }
    .phase {
        flex-direction:column;
        text-align: center;
    }
    .phase-image img {
        width: 80%;
    }
    .about-container, .qualifications-container {
        flex-direction: column;
        align-items: center; 
        margin-bottom: 60px; 
    }
    .intro-image img, .license-image img {
        width: 80%;
        max-width: 350px; 
    }
    .intro-text, .qual-text, .future-text {
        text-align: center; 
        max-width: 90%; 
        padding: 10px; 
    }
    .pricing-table {
        width: 100%;
        max-width: 90%;
    }
    .pricing-table th, .pricing-table td {
        font-size: 1rem;
        padding: 10px;
    }
    .fine-print {
        font-size: 0.8rem;
    }
    .contact-form {
        padding: 160px 5% 40px;
    }
    .contact-form form{
        max-width: 90%;
    }
    .form-group input, .form-group textarea {
        font-size: 1rem;
    }
    .schedule {
        padding: 80px 5%;
    }
    .calendar-container {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .calendar-header {
        flex-direction: column;
        gap: 10px;
    }
    .calendar-header button {
        padding: 8px;
        font-size: 1rem;
    }
    .calendar-header h2 {
        font-size: 1.3rem;
    }
    .calendar-days {
        grid-template-columns: repeat(7, 1fr);
        font-size: 0.9rem;
    }
    #calendar-dates {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
        min-width: 600px;
    }
    .date, .empty {
        padding: 15px;
        font-size: 1rem;
    }
    .event {
        font-size: 0.7rem;
        padding: 2px;
        word-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }
    .home-pricing-section {
        flex-direction: column;
        text-align: center;
    }
    .home-pricing-left, .home-pricing-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .home-pricing-left .pricing-table th,
    .home-pricing-left .pricing-table td {
        font-size: 0.9rem;
    }
    .unique-section h2 {
        font-size: 2rem;
    }
    .unique-section p {
        font-size: 1rem;
    }
    .gallery-section {
        padding: 40px 5%;
    }
    .gallery-section h2 {
        font-size: 2rem;
    }
}

/* Gallery grid h3 styles for picture text */
.gallery-grid h3 {
    padding: 10px 0 30px;
    color: white;
    text-align: center;
    font-size: 1.2rem;
}

/* About the Coach Heading Styles */
.about-coach-heading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
}
/* Utility class for scroll margin on anchor links */
.scroll-margin-top {
    scroll-margin-top: 70px;
}

.hidden {
    display: none;
}

/* Calendar section button styles - consistent with site's dark theme */
.calendar-container {
    padding: 40px 0;
    text-align: center;
    color: white;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.calendar-container a {
    display: inline-block;
    padding: 15px 30px;
    background: #d4af37;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: none;
}

.calendar-container a:hover {
    background: #b98d1a;
    transform: scale(1.05);
}
/* Expected Results Section Styles */
.expected-results {
    background-color: #222;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.expected-results h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Updated Expected Results Section Styles */
.expected-results {
    background-color: #222;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.expected-results h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.results-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #ccc;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.result-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
    text-align: left;
}

.result-item:hover {
    transform: scale(1.03);
}

.result-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.result-item h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin: 15px;
}

.result-item p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
    margin: 0 15px 20px;
}
.results-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.results-buttons .book-now {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.1rem;
    text-decoration: none;
    background: #d4af37;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.results-buttons .book-now:hover {
    background: #b98d1a;
    transform: scale(1.05);
}
.unique-section a.book-now {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.1rem;
    background: #d4af37;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.unique-section a.book-now:hover {
    background: #b98d1a;
    transform: scale(1.05);
}
/* Referral Title Style */
.referral-title {
  font-size: 2.5rem;
  color: #d4af37;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

/* Introductory Paragraph Utility Class for Forms */
.intro-paragraph {
  text-align: center;
  padding-bottom: 20px;
}


/* --- Testimonials --- */
.testimonials {
    background: #111;
    color: #fff;
    padding: 56px 20px;
  }
  .testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .testimonials h2 {
    text-align: center;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 28px;
    letter-spacing: .5px;
  }
  
  .testimonial-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .testimonial-card {
    background: #1b1b1b;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
    padding: 22px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    border: 1px solid rgba(212,175,55,.18);
  }
  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #eaeaea;
  }
  .testimonial-quote::before {
    content: "“";
    font-size: 2.2rem;
    color: #d4af37;
    position: relative;
    top: .6rem;
    margin-right: 6px;
  }
  .testimonial-person {
    margin-top: 16px;
  }
  .testimonial-person strong {
    display: block;
    color: #fff;
    font-weight: 700;
  }
  .testimonial-person span {
    display: block;
    color: #bcbcbc;
    font-size: .9rem;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .testimonial-dots span {
    width: 8px; height: 8px; border-radius: 50%;
    background: #555;
  }
  
  @media (min-width: 900px) {
    .testimonial-track {
      overflow: visible;
      grid-auto-flow: initial;
      grid-auto-columns: initial;
      grid-template-columns: repeat(3, 1fr);
    }
  }