@font-face {
  font-family: "Inter";
  src: url("https://fonts.gstatic.com/s/inter/v3/KFOkCnqEu92Fr1Mu51xIIzIfKw.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("https://fonts.gstatic.com/s/rubik/v14/1cXxaUPXBpj2rGoU7C9WiHGF6UU.woff2")
    format("woff2");
  font-display: swap;
}

body {
  font-family: "Inter", Arial, sans-serif;
}

h1,
h2 {
  font-family: "Rubik", Arial, sans-serif;
}

/* === SNOW BACKGROUND LAYER === */
.snow-bg:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: url("https://library.elementor.com/resources/christmas-snow-effect/s1.png"),
    url("https://library.elementor.com/resources/christmas-snow-effect/s2.png"),
    url("https://library.elementor.com/resources/christmas-snow-effect/s3.png"),
    url("https://library.elementor.com/resources/christmas-snow-effect/s1.png"),
    url("https://library.elementor.com/resources/christmas-snow-effect/s2.png"),
    url("https://library.elementor.com/resources/christmas-snow-effect/s3.png");
  animation: snow 15s linear infinite;
}

@keyframes snow {
  0% {
    background-position:
      0px 0px,
      0px 0px,
      0px 0px,
      20px 20px,
      20px 20px,
      20px 20px;
  }
  50% {
    background-position:
      500px 500px,
      100px 200px,
      -100px 150px,
      900px 900px,
      500px 800px,
      -400px 00px;
  }
  100% {
    background-position:
      500px 1000px,
      200px 400px,
      -100px 300px,
      700px 1200px,
      400px 600px,
      -200px 100px;
  }
}

/* === SPINNING SNOWFLAKES LAYER === */

/* Container for flakes */
.snow-bg {
  position: relative;
}

.snowflake {
  position: absolute;
  top: -50px;
  width: 20px;
  height: 20px;
  background-image: url("https://library.elementor.com/resources/christmas-snow-effect/s3.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
  animation: fall 4s linear infinite, spin 3s linear infinite;
}

/* Falling animation */
@keyframes fall {
  from { transform: translateY(-50px); }
  to { transform: translateY(120vh); }
}

/* Rotation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Create multiple flakes automatically */
.snowflake:nth-child(1) { left: 10%; animation-duration: 6s, 4s; width: 25px; height: 25px; }
.snowflake:nth-child(2) { left: 30%; animation-duration: 5s, 3s; }
.snowflake:nth-child(3) { left: 50%; animation-duration: 7s, 6s; width: 30px; height: 30px; }
.snowflake:nth-child(4) { left: 70%; animation-duration: 4s, 2s; }
.snowflake:nth-child(5) { left: 90%; animation-duration: 6s, 5s; width: 22px; height: 22px; }

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*.snow-bg {*/
/*  position: relative;*/
/*}*/

/*.snow-bg:after {*/
/*  content: "";*/
/*  display: block;*/
/*  position: absolute;*/
/*  z-index: 2;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  pointer-events: none;*/
/*  background-image: url("https://library.elementor.com/resources/christmas-snow-effect/s1.png"),*/
/*    url("https://library.elementor.com/resources/christmas-snow-effect/s2.png"),*/
/*    url("https://library.elementor.com/resources/christmas-snow-effect/s3.png");*/
/*  animation: snow 10s linear infinite;*/
/*}*/

/*@keyframes snow {*/
/*  0% {*/
/*    background-position:*/
/*      0px 0px,*/
/*      0px 0px,*/
/*      0px 0px;*/
/*  }*/
/*  50% {*/
/*    background-position:*/
/*      500px 500px,*/
/*      100px 200px,*/
/*      -100px 150px;*/
/*  }*/
/*  100% {*/
/*    background-position:*/
/*      500px 1000px,*/
/*      200px 400px,*/
/*      -100px 300px;*/
/*  }*/
/*}*/
/** {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*}*/
.align {
  display: flex;
  justify-content: center;
  align-items: center;
}
html {
  font-size: 62.5%;
}

body {
  font-family: "rubik", sans-serif;
  color: #444;
  line-height: 1;
  font-weight: 400;
}
/* HERO SECTION */

.hero-section {
  position: relative;
  width: 100%;
  height: 90vh; /* Adjusted height */
  overflow: hidden; /* Prevents scrollbars */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: ""; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(128, 8, 8, 0.8),
    rgba(128, 8, 8, 0.6)
  );
  z-index: 1; /* Sits above the video but below the content */
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0; /* Places it behind the overlay and content */
}

.hero-content {
  position: relative; /* Ensures content appears above video and overlay */
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/*  */
.cta-img-box {
  display: block;
  justify-content: center;
  align-items: center;
}
/*Your other CSS rules remain unchanged */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center; /* Optional: if you want to center it vertically too */
  width: 100%;
  padding: 0; /* Ensure no padding */
  margin: 0; /* Ensure no margin */
  z-index: 1;
}

.hero-text {
  margin-top: 10px;
  margin-left: 10px;
  text-align: center;
  color: white;
  z-index: 1;
}
.btn.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-gofundme {
  background-color: #ffcc00; /* gold/yellow for contrast */
  color: #800000; /* deep red text */
  border: 2px solid #800000;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.btn-gofundme:hover {
  background-color: #ffd633;
  color: #660000;
}

/* Optional pulse animation for attention */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 204, 0, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 204, 0, 0);
  }
}
.workshop-list {
  padding-left: 20px;
  margin: 10px 0;
}
.workshop-list li {
  margin-bottom: 8px;
}
.space-under-heading {
  margin-bottom: 50px;
}

.heading-primary {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 1px;
}
.location {
  font-size: 3rem;
  padding-bottom: 2rem;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  padding-bottom: 1rem;
  letter-spacing: 0.4px;
  padding-left: 2rem;
  /* max-width: 40%; */
}
.cfk-main-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically if container has height */
  flex-direction: column; /* Ensures items stack if needed */
}
.cfk-hero-text {
  font-size: 2.4rem;
  margin-top: 10px;
  margin-left: 10px;
  text-align: center;
  color: white;
  z-index: 1;
  max-width: 90%;
}
.cfk-hero-description {
  font-size: 2rem;
  line-height: 2;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.4px;
  padding-left: 2rem;
  max-width: 100%;
}
.btn:link,
.btn:visited {
  background-color: rgb(128, 8, 8);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 400;
  padding: 14px 14px;
  cursor: pointer;
  margin-bottom: 1rem;
  /* margin-left: 4rem; */
  border-radius: 9px;
  box-shadow: 0 20px 30px rgba(82, 81, 81, 0.267);
  transition: 0.35s;
}

.btn:hover,
.btn:active {
  background-color: rgb(168, 10, 10);
}

/* .btn, */
.btn-sections {
  margin-left: 4rem;
}

/* NAVBAR */
.navbar {
  background-color: rgb(129, 10, 10);
  /*margin-bottom: 2rem;*/
  margin-bottom: 0rem;
}

.main-nav-list {
  font-size: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  text-align: center;
  margin-left: 5rem; /*changed from 10rem*/
  margin-right: 5rem; /*changed from o*/
}

li.nav-item.px-5 {
  padding-right: 20px !important;
  padding-left: 20px !important;
}
.active {
  color: #fff;
}
a.nav-link:link,
a.nav-link:visited {
  color: white;
  padding-right: 10rem;
  text-decoration: none;
}
a.nav-link:hover,
a.nav-link:active {
  color: white;
  padding-right: 10rem;
  text-decoration: none;
}
/* CLASSES SECTIONS */
.subheading {
  text-align: center;
  display: block;
  font-size: 4.4rem;
  font-weight: 500;
  color: rgb(188, 8, 8);
  text-transform: uppercase;
  margin: 1.6rem 2rem;
  letter-spacing: 0.7px;
}
.heading-secondary {
  color: rgb(188, 8, 8);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  margin-left: 4rem;
}
.heading-holiday {
  color: #444;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.holiday-section {
  margin: 7px;
}
.holiday-hero {
  margin-bottom: 20px;
}
.general-description {
  font-size: 2rem;
  color: #444;
  padding-bottom: 2rem;
  margin-left: 4rem;
}
.general-description-link {
  font-size: inherit;
  color: #dc3545;
  padding-bottom: 2rem;
  text-decoration: none; /* Remove underline */
}

.general-description-link:visited {
  color: #dc3545; /* Override visited link color */
}

.general-description-link:hover,
.general-description-link:focus {
  color: #336699; /* Slightly darker on hover/focus for feedback */
  text-decoration: none; /* Optional: Add underline on hover */
}

.text-danger {
  text-decoration: none;
}
.safeguarding-para {
  padding-right: 5rem;
}
.general-gymnastics {
  padding: 4rem 4rem;
  margin-bottom: 2rem;
}

.general-img,
.bg-video__content {
  max-height: 40rem;
  max-width: 40rem;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Keeps images stacked */
  align-items: center; /* Centers images horizontally */
}
.iga-heading-secondary {
  color: #fff;
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  margin-left: 4rem;
}
.iga-general-description {
  font-size: 2rem;
  color: #fff;
  padding-bottom: 2rem;
  margin-left: 4rem;
}

.adv-heading-secondary {
  color: #fff;
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  margin-left: 4rem;
}
.adv-general-description {
  font-size: 2rem;
  color: #fff;
  padding-bottom: 2rem;
  margin-left: 4rem;
}

.freeG-btn:link,
.freeG-btn:visited {
  background-color: #fff;
  color: rgb(128, 8, 8);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 400;
  padding: 14px 14px;
  cursor: pointer;
  display: inline-block;
  border-radius: 9px;
  box-shadow: 0 20px 30px rgba(82, 81, 81, 0.267);
  transition: 0.35s;
  margin-left: 4rem;
  margin-right: 0;
}

.freeG-btn:hover,
.freeG-btn:active {
  background-color: rgb(187, 185, 185);
}
.circus {
  padding: 4rem 4rem;
  margin-bottom: 2rem;
}

.advanced-gymnastics {
  padding: 7rem 4rem;
  margin-bottom: 5rem;
  background-image: linear-gradient(
      to right,
      rgba(128, 8, 8, 0.8),
      rgba(128, 8, 8, 0.6)
    ),
    url("/imgs/adv-bridges.webp");
  background-size: cover;
}

.holiday-camps {
  padding-top: 3rem;
  margin-bottom: 0;
}

/* PRICE AND TIMES */

.section-pricing {
  padding: 9.6rem;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.plan-name {
  color: rgb(128, 8, 8);
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 1rem;
}

.pricing-plan {
  display: grid;
  border-radius: 11px;
  width: 85%;
  justify-self: end;
  padding: 4.2rem;
  background-color: #f7f5f5;
  margin: 1rem;
  padding-bottom: 1rem;
  box-shadow: 10px 5px 15px #f0efefc5;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}
.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}
.plan-text {
  padding: 0.5rem 0 3.5rem 0;
  color: #6f6f6f;
  font-size: 1.8rem;
  line-height: 1.8;
}

.list {
  list-style: none;
  margin-bottom: 4.8rem;
}

.list-item {
  line-height: 1.2;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1rem;
}

.btn-end:link,
.btn-end:visited {
  align-self: flex-end;
  background-color: rgb(128, 8, 8);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 32px;
  cursor: pointer;
  display: inline-block;
  border-radius: 9px;
  box-shadow: 0 20px 30px rgba(82, 81, 81, 0.267);
  transition: 0.35s;
  margin-left: 4rem;
}

.btn-end:hover,
.btn-end:active {
  background-color: rgb(188, 8, 8);
}

/* CAROUSEL */
.header-container {
  text-align: center;
}
.testimonial-carousel {
  margin: 2rem;
}

#carouselExampleCaptions {
  width: 100%;
}

.carousel-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(63, 45, 45);
  opacity: 0.45;
}

.carousel-caption h2 {
  padding-bottom: 2rem;
}

/* CALL TO ACTION */

.section-cta {
  padding: 1.8rem 0 8.8rem 0;
  margin-left: 2rem;
  margin-right: 2rem;
}
.cta {
  display: grid;
  grid-template-columns: 2fr, 1fr; /* Ensure this is correct */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  background-image: linear-gradient(90deg, rgb(128 8 8), #e67e22);
  overflow: hidden;
}

.cta-img-box {
  background-image: linear-gradient(
      90deg,
      rgba(128, 8, 8, 0.75),
      rgba(230, 125, 34, 0.35)
    ),
    url("/imgs/circus-bridge2.webp");
  background-size: cover;
  background-position: center;
}
/* this block controls the color of the font in the form labels */
.cta-text-box {
  color: #fff;
  padding: 2.8rem 2.4rem 2.4rem 2.4rem;
}
/* ...................... */
.cta .heading-secondary {
  color: #fff;
  margin-bottom: 2.2rem;
}
.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2.2rem;
  row-gap: 2.4rem;
}
.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  /* color: inherit; */
}
.cta-form input::placeholder {
  color: #aaa;
}
.btn--form {
  background-color: rgb(129, 10, 10);
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}
.btn--form:hover {
  background-color: #fff;
  color: #555;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

#address {
  grid-column: 1 / 3;
}

#flexRadioDefault1,
#flexRadioDefault2 {
  width: 0;
}

#message {
  padding-bottom: 10rem;
}

#medical {
  margin-bottom: 2rem;
}

.message-send .btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
.footer {
  padding: 1rem 0;
  border-top: 1px solid #eee;
  background-color: #f7f5f5;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  margin-top: 4rem;
}

.logo-footer {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  display: block;
  margin-bottom: 0;
  margin-top: 0;
}
.footer-link:link,
.footer-nav:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #76767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}
.socials-block {
  display: inline-block;
  margin-left: 3rem;
}
a.social-links:link,
a.social-links:visited {
  color: #444;
  padding-right: 2.4rem;
  text-decoration: none;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #76767676;
  margin-top: auto;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

a.footer-link:link,
a.footer-link:visited {
  color: #444;
  text-decoration: none;
  padding-right: 0;
}

.footer-nav {
  text-decoration: none;
}
/* ABOUT AND JOBS PAGE */
.job {
  margin-bottom: 7rem;
}
.about {
  margin-bottom: 2rem;
}
.kit-section {
  margin-top: 6rem;
  color: #fff;
}
.kit-form {
  display: grid;
  /* grid-template-columns: 2fr 1fr; */
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  background-image: linear-gradient(90deg, rgb(128 8 8), #e67e22);
  overflow: hidden;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
}
.kit-form .heading-secondary {
  color: #fff;
}
.kit-form .general-description {
  color: #fff;
}
.leo-text a {
  color: rgb(252, 3, 3);
  text-decoration: none;
}

/* ABOUT PAGE */
.about {
  padding: 4rem;
}
.vacancies {
  padding: 4rem;
}

/* HOLIDAY ACTIVITIES */
.holiday-activities {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
/* cfk-container {
  max-width: 70%;
} */
