html {
  scroll-behavior: smooth;  /* enables smooth scrolling for anchor links */
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px; /* Adds 3px space between characters */
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-align: center;
}

section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 850px;
  margin: 0 auto 20px auto;
}


/* Navbar base */
.navbar {
  position: sticky;     /* stays fixed in place */
  top: 0;              /* stick to the very top */
  left: 0;
  z-index: 1000;       /* keep it above other content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 10px 20px;
  color: #fff;
  border-bottom: 5px solid #fff; /* ✅ white underline */
}

.navbar .logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.5px; /* Adds 3px space between characters */
  display: flex;
  flex-direction: column-reverse;
  margin-left: 2.5%;
}

.navbar img {
  position: relative;
  width: 15%;
  margin-bottom: 4%;
}

.small-logo {
  position: absolute;
  font-size: 1rem;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: 1%;
  white-space: nowrap;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover {
  background: #a40202;
  color: #fff;
  border-radius: 4px;
}

/* Book Now CTA */
.book-now {
  background: #a40202;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 1.25rem;
  white-space: nowrap;
}

.book-now:hover {
  background-color: #a40202;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* hidden by default */
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .navbar .logo img {
    width: 35%;
    margin-bottom: 5%;
  }

  .navbar .small-logo {
    font-size: 0.5rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex; /* show when toggled */
  }

  .hamburger {
    display: block; /* show hamburger on mobile */
  }

  .book-now {
    margin-left: 10px;
    text-align: center;
    white-space: nowrap;
  }
}


/* Section One (Hero Image with Overlay) */
section#one {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
}

section#one img {
  width: 100%;
  height: 100vh;        /* full viewport height */
  object-fit: cover;    /* crop nicely */
  display: block;
  margin-top: 0;
  
}


/* Dark overlay */
section#one::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7); /* semi-transparent black */
  z-index: 0;                  /* sits behind text */
}

/* Overlay text */
section#one h1,
section#one a, section#one p {
  position: absolute;
  z-index: 1;                  /* above overlay */
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

section#one h1 {
  top: 15%;
  font-size: 3rem;
}

section#one a {
  top: 40%;
  background: #a40202;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 1.25rem;
}



section#one p {
  top: 52.5%;
  font-size: 1.5rem;
}

section#one p .firstline {
  display: block;
  text-align: center;
}

section#one a:hover {
  background-color: #a40202;
  box-shadow: 0 8px 20px rgb(255, 255, 255);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section#one img {
    height: 70vh;
  }
  section#one h1 {
    top: 15%;
    font-size: 1.7rem;
    font-weight: bolder;
  }
  section#one a {
    top: 45%;
    font-size: 1rem;
    padding: 12px 18px;
    white-space: nowrap;
  }
  section#one p {
    font-size: 0.95rem;
    width: 90%;
    top: 58%;
  }
}

section#bookings {
  position: relative;
  background-color: white;
  min-height: 700px; /* MATCH widget height */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  justify-items: center;
  
}

/* Dark overlay */
/*section#bookings::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* adjust darkness here */
  /*z-index: 1;
}

/* Content stays ABOVE overlay */
.bookings-content {
  position: relative;
  z-index: 2;
  width: 85%;
}





@media (max-width: 768px) {
  section#bookings {
    min-height: 0 !important; /* Removes the minimum height constraint */
    height: 750px; /* Sets a specific shorter height */
  }

  .bookings-content {
    margin-top: 10%;
  }
 
}



/* PROGRAMS SECTION */
.programs {
  padding: 6rem 1.5rem;
  background-color: #f5f5f5;
}

.programs-header {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.programs-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.programs-header p {
  font-size: 1.05rem;
  color: #444;
}

/* GRID */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* PROGRAM CARD */
.program-card {
  background-color: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 14px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Red accent bar */
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #a40202;
}

/* Group training slight contrast */
.program-card.group {
  background-color: #eaeaea;
}

/* Hover effect */
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Text styles */
.program-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.program-tagline {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 500;
}

.program-card ul {
  padding-left: 1.1rem;
  margin-bottom: 1.5rem;
}

.program-card ul li {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #222;
}

.best-for {
  font-size: 0.9rem;
  color: #333;
}

/* PROGRAM BUTTON */
.program-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  background-color: #a40202;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.program-btn:hover {
  background-color: #a40202;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.pricing-section {
  position: relative;
  padding: 80px 20px;
  background: url('/images/warriorbackground.png') center/cover no-repeat;
  color: white;
  text-align: center;
}

.pricing-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.9));
  z-index: 0;
}

.pricing-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  z-index: 1;
  color: white;
}

.pricing-title span {
  font-size: 2rem;
  color: white;
}

.pricing-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

.card {
  background: linear-gradient(180deg, #8b0000, #1a0000);
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
}

.card.featured {
  transform: scale(1.05);
  border: 2px solid #ff1e1e;
}

.card-header h2 {
  margin-bottom: 10px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: white;
}

.card span {
  display: block;
  opacity: .8;
}

.card small {
  display: block;
  margin-top: 5px;
  font-weight: 600;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.card ul li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff2a2a;
}

.card button {
  background: linear-gradient(to right, #ff1e1e, #b30000);
  border: none;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}

.card button:hover {
  opacity: .9;
}

/* ELITE ADD-ON */
.addon {
  position: relative;
  max-width: 600px;
  margin: 60px auto;
  padding: 25px;
  background: linear-gradient(180deg, #a30000, #2b0000);
  border-radius: 16px;
  z-index: 1;
}

.addon-price {
  font-size: 2.2rem;
  font-weight: bold;
  color: white;
}

.addon ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.addon ul li::before {
  content: "✔ ";
  color: #ff2a2a;
}

/* FOOTER */
.pricing-footer {
  position: relative;
  margin-top: 40px;
  font-size: 1rem;
  z-index: 1;
}

.pricing-footer p {
  color: white;
}

@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }

  .card.featured {
    transform: none;
  }
}



/* Section */
#locations {
  padding: 80px 20px;
  background-color: #f9f9f9; /* light background for maps */
  font-family: 'Oswald', sans-serif;
  color: #1c1c1c;
  text-align: center;
}

#locations h2 {
  font-size: 2.5rem;
  color: #a40202; /* Red Army Red */
  margin-bottom: 10px;
}

#locations .intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Locations Grid */
.locations-wrapper {
  display: grid;
  gap: 40px;
  margin: 0 auto;          /* centers the grid itself */
  justify-items: center;  /* centers the card inside the grid */

}

/* Location Cards */
.location-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 750px;
  width: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Location Title */
.location-card h4 {
  color: #a40202; /* Red Army branding */
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Map Container */
.map-container {
  width: 100%;
  aspect-ratio: 16 / 9; /* keeps map proportional */
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #a40202; /* red accent border */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Adjustments */
@media(max-width:768px){
  #locations {
    padding: 60px 15px;
  }

  .location-card h4 {
    font-size: 1.2rem;
  }
}


/* Coach Section General */
#coach {
  padding: 75px 20px;
  background-color: #0f0f0f; /* Dark background for bold contrast */
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

#coach h2 {
  font-size: 2.8rem;
  color: white; /* Red Army branding */
  margin-bottom: 15px;
}

#coach .subtitle {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 50px;
}

#coach .subtitle a {
  color: #d80101;
  text-decoration: underline;
}

#coach .subtitle a:hover {
  color: #b10202;
}

/* Coach Photos */
.coach-photos.single {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.coach-photos.single .photo {
  max-width: 400px; /* controls size */
}

.coach-photos.single img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}


.coach-photos .photo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px #a40202; /* subtle red glow */
}

/* Highlight Tapes */
.highlight-tapes {
  margin-bottom: 60px;
}

.highlight-tapes p {
  color: white;
}

.highlight-tapes .highlight-header {
  font-size: 2rem;
  color: white;
  margin-bottom: 30px;
  font-weight: bold;
}

.tapes-wrapper {
  display: flex;
  justify-content: center;
  gap: 0px;
}

.tape {
  width: 100%;        /* take full available width */
  max-width: 800px;   /* increase max width */
}

.tape iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 12px;
  border: 3px solid #a40202; /* Red Army highlight */
  transition: transform 0.3s ease;
}

.tape iframe:hover {
  transform: scale(1.03);
}

/* CTA Button */
.cta {
  text-align: center;
  margin-top: 30px;
}

.coach-btn-primary {
  background-color: #a40202;
  color: #fff;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.coach-btn-primary:hover {
  background-color: #bb0606;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px){
  .coach-photos {
    flex-direction: column;
    gap: 20px;
  }

  .tape iframe {
    max-width: 100%;
    height: 220px;
  }

  .tapes-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}


/* General Section Styles */
#training {
  padding: 100px 20px;
  background: url('/images/warriorbackground.png') center/cover no-repeat;
  font-family: 'Arial', sans-serif;
}

.trainingsect {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

/* DARK OVERLAY */
.training-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.9)
  );
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.trainingsect .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

/* TEXT STYLING */
.trainingsect h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.trainingsect .intro {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* MOBILE */
@media (max-width: 768px) {
  .trainingsect {
    padding: 70px 20px;
  }

  .trainingsect h2 {
    font-size: 2rem;
  }
}


#training h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: white;
}

#training .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: white;
  font-size: 1.1rem;
}

/* Pillars Grid */
.training-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.pillar {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.pillar p {
  color: #555;
  line-height: 1.6;
}

/* Training Flow Diagram */
.training-flow {
  text-align: center;
  margin-bottom: 60px;
}

.training-flow h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: white;
}

.flow-diagram {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.flow-step {
  flex: 1 1 200px;
  background-color: #3498db;
  color: #fff;
  padding: 20px 15px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  transition: transform 0.3s ease;
}

.flow-step:hover {
  transform: scale(1.05);
}

.fundamentals { background-color: #8b0000; }
.advanced     { background-color: #1c1c1c; }
.gameplay     { background-color: #525252; color: white; }
.elite        { background-color: #8d8d8d; }

/* CTA Button */
.cta {
  text-align: center;
}

.btn-primary {
  background-color: #8b0000;
  color: #fff;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: white;
  color: black;
}

/* Responsive */
@media(max-width:768px){
  #training {
    padding: 60px 15px;
  }

  .pillar h3 {
    font-size: 1.3rem;
  }

  .flow-step {
    flex: 1 1 150px;
    font-size: 0.95rem;
  }
}


#faq {
  background: #ffffff;
  padding: 4rem 1.5rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

#faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
}

/* Question */
.faq-item summary {
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

/* Remove default marker */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Plus / minus icon */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: #a40202;
  transition: transform 0.3s ease;
}

/* Open state */
.faq-item[open] summary::after {
  content: "–";
}

/* Answer */
.faq-item p {
  margin-top: 0.75rem;
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 600px) {
  #faq h2 {
    font-size: 1.7rem;
  }
}


#contact {
  background: #0f0f0f;
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

#contact h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-subtext {
  font-size: 1rem;
  color: white;
  margin-bottom: 2.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-btn {
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
  transition: all 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  background: #222;
}

.contact-btn.primary {
  background: #a40202;
  border: none;
}

.contact-btn.primary:hover {
  background: #a40202;
}

.disclaimer {
  color: white;
  margin-top: 5%;
}

.contact-location {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: white;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  #contact h2 {
    font-size: 1.8rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
  }
}


/* CTA Button */
.cta {
  margin-top: 20px;
}

.book-btn {
  display: inline-block;
  background: #a40202;       /* bright blue accent */
  color: white;
  padding: 14px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #a40202;       /* darker blue on hover */
}


.footer-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-slogan {
  font-size: 0.95rem;
  margin-bottom: 22px;
  color: white;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 26px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-links img {
  width: 40px;
  height: 40px;
  filter: invert(1);
  color: black;
}

.social-links a:hover {
  transform: scale(1.15);
  opacity: 0.85;
}


.footer-copy {
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: white;
}

