@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter&display=swap');

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

  h1, h2, .pricing-title, .schedule-container .overlay-content a{
    font-family: 'Bebas Neue', sans-serif;
    text-wrap: balance;
  }
  
  body, p, li .schedule-container{
    font-family: 'Inter', sans-serif;
  }

  .navbar {
    font-family: 'Inter', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    color: #1ee81e;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
  }
  
  /* Class to hide navbar */
  .navbar.hide {
    transform: translateY(-100%);
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  /* Hide checkbox */
  #menu-toggle {
    display: none;
  }
  
  /* Hamburger menu */
  .menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #1ee81e;
    cursor: pointer;
  }
  
  /* Nav links */
  .nav-links {
    font-family: 'Roboto', sans-serif;
    margin-top: 14px;
    display: flex;
    gap: 20px;
    

  }
  
  .nav-links a {
    font-family: 'Roboto', sans-serif;
    color: #1ee81e;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    color: #a5f4b1;
    font-size: 1.1rem;
  }

  .logo img {
    height: 80px; /* or adjust based on your design */
    width: auto;
  }
  
  .hero-video {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
  }
  
  .background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .overlay-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 2rem;
  }
  
  .overlay-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 10px #000;
  }
  
  .overlay-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 8px #000;
  }
  
  .overlay-content .cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 1.8rem;
    background-color: rgba(0, 255, 0, 0.8);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #7e7e7e;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: 
      background-color 0.3s ease,
      box-shadow 0.4s ease,
      transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .overlay-content .cta:hover {
    background-color: #1ee81e;
    transform: translateY(-1px);
  }


  .experience {
    background-color: #F5F0F0;
    padding: 80px 20px;
    text-align: center;
  }
  
  .experience .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .experience h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #111;
  }
  
  .experience p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }

  .cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 1.8rem;
    background-color: #5aef5a;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #f9faf8;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(10, 103, 38, 0.15);
    transition: 
      background-color 0.3s ease,
      box-shadow 0.4s ease,
      transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button:hover {
    background-color: #1ee81e;
    transform: translateY(-1px);
  }


  /* Weekly Schedule Section */

  .weekly-schedule {
    background-color: #f5f0f0;
    padding: 80px 20px;
    text-align: center;
  }
  
  .schedule-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .schedule-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #222;
  }
  
  .carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scroll-behavior: smooth;
  }
  
  .slide {
    flex: 0 0 80%;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    max-width: 300px;
  }
  
  .slide h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
    font-weight: 800;
    text-shadow: #1ba04c 0.5px 0.5px 0.5px;
  }
  
  .slide ul {
    list-style: none;
    padding: 0;
    color: 222;
    text-align: left;
  }
  
  .slide ul li {
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
  }


/* Pricing Section */   
  
  .pricing__carousel {
    background-color: #222;
    color: #fff;
    font-family: 'Arial', sans-serif;
    padding: 50px 20px;
    text-align: center;
  }
  
  .pricing_carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .carousel-slides {
    display: flex;
    background: #222;
    min-height: 200px;
  }
  
  .carousel-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 30px;
    box-sizing: border-box;
    background-color: #222;
    border-radius: 10px;
  }
  
  .carousel-slide h3 {
    font-size: 24px;
    color: #1ee81e;
    margin-bottom: 15px;
  }
  
  .carousel-slide p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .carousel-slide small {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ccc;
  }
  
  input[type="radio"] {
    display: none;
  }
  
  #slide1:checked ~ .carousel-slides { transform: translateX(0%); }
  #slide2:checked ~ .carousel-slides { transform: translateX(-100%); }
  #slide3:checked ~ .carousel-slides { transform: translateX(-200%); }
  #slide4:checked ~ .carousel-slides { transform: translateX(-300%); }
  #slide5:checked ~ .carousel-slides { transform: translateX(-400%); }
  
  .controls {
    display: none;
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .controls label {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid #1ee81e;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
  }


/* Coaches Section */
.coaches-section {
    background: #222;
    padding: 60px 20px;
    margin: 0 auto;
  }
  
  .coaches-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #1ee81e;
  }
  
  .coach {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  
  .coach img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .coach-info {
    flex: 1;
    min-width: 250px;
  }
  
  .coach-info h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #1ee81e;
  }
  
  .coach-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .coach {
      flex-direction: column;
      text-align: center;
    }
  
    .coach img {
      width: 100%;
      max-width: 400px;
    }
  
    .coach-info {
      padding-top: 20px;
    }
  }


/* Testimonials Section */

.testimonial-section {
    background-color: #f5f0f0;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif; /* Matches your light sections */
  }
  
  .testimonial-section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #222;
  }
  
  .testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    scrollbar-width: thin;
  }
  
  .testimonial {
    padding: 10px 0;
  }
  
  .testimonial p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 5px;
  }
  
  .testimonial span {
    display: block;
    font-weight: bold;
    color: #666;
  }
  
  .testimonial-box hr {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 12px 0;
  }
  
  /* Optional: Smooth scrolling */
  .testimonial-box {
    scroll-behavior: smooth;
  }

  .stars {
    color: #f4c542; /* golden yellow */
    font-size: 1.2rem;
    margin: 5px 0;
    letter-spacing: 2px;
  }




/* Contact Section */

.contact-section {
    background: #222;
    padding: 60px 20px;
    color: #1ee81e;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .contact-info {
    flex: 1 1 300px;
    font-family: 'Bebas Neue', sans-serif;
  }

  .contact-info h2{
    flex: 1 1 300px;
    color: #1ee81e;
    size: 1.5rem;
  }

  .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fbf9f9;
  }


  .map-container {
    flex: 1 1 100%;
    margin: none;
  }
  
  .map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: 1px solid #ccc;
  }
  .map-fullwidth {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .map-fullwidth iframe {
    width: 100vw;      /* full viewport width */
    height: 400px;     /* or adjust as needed */
    display: block;
    border: none;
  }


  .contact-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .contact-btn {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  

  .call-btn {
    background-color: #a7f0aa;
    color: #000;
  }
  
  .call-btn:hover {
    background-color: #1ccb54;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
 
  .whatsapp-btn {
    background-color: #48e872;
    color: #000;
  }
  
  .whatsapp-btn:hover {
    background-color: #1ba04c;
    font-size: 1.2rem;
    cursor: pointer;
  }
  



















 .container_footer {
    background-color:#111;
    height: 40px;
    text-align: end;
    margin: 0 auto;
    padding: 0 20px;
  }
  .container_footer p {
    margin: 0;
    line-height: 40px;
    font-size: 0.9rem;
    color: #1ee81e;
  }



  /* Mobile */
  @media (max-width: 768px) {
    .menu-icon {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background:#111   ;
      color: #399548;
      position: absolute;
      top: 70px;
      right: 0;
      width: 100%;
      padding: 1rem;
      box-shadow: 5px 5px 5px rgba(218, 205, 205, 0.2);
      border-radius: 0 0px 10px 10px;
    }
    .nav-links a {
      color:#1ee81e;
      border: #2d2d2d 0.1px solid;
      margin: 0.1rem 0.1rem;
      border-radius: 5px;
      padding: 0.5rem;
      font-size: 1rem;
      box-shadow: #9c9999 0.5px 0.5px 0.5px;
    }

    .nav-links a:hover {
        color:#6cee84;
        margin: 0.2rem 0;
        font-size: 1.2rem;
      }
  
    #menu-toggle:checked + .menu-icon + .nav-links {
      display: flex;
    }
    .logo img {
        height: 60px;
    }

  }


  
  /* Content sections for testing */
  main section {
    padding: 80px 20px;
    border-bottom: 1px solid #ccc;
  }
  

  .carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  text-align: center;
  background-color: #222;
  border-radius: 10px;
}

.carousel-slide h3 {
  font-size: 24px;
  color: #1ee81e;
  margin-bottom: 15px;
}

.carousel-slide p {
  font-size: 18px;
  line-height: 1.6;
}

.carousel-slide small {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 232, 30, 0.2);
  color: #1ee81e;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(30, 232, 30, 0.5);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}