

html {
  scroll-behavior: smooth;
}


body {
  transition: scroll 0.5s ease-in-out;
    margin: 0;
    padding: 0;

    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: .4px;
    line-height: 1.6em;
    color: rgba(28,28,28,.9)
  }

  strong{
    font-weight: 500;
  }

  h1{
    font-size: 36px;
  }


.top-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Set the height of the slider container to 80% full viewport height */
  overflow: hidden;
  background-color: #000; 
}
  .slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
  

  
  .slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 5;
  }
  
  .slider-indicators {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 5;
  }
  
  .slider-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    cursor: pointer;
    z-index: 5;
  }
  
  .slider-indicator.active {
    background-color: #333;
  }
  
  .slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s;
  }

  .slider-item.active {
    opacity: 1;
  }
  
  .slider-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
  }
  
  .video {
    width: 100%;
    height:80vh;
    object-fit: cover;
    z-index: 1;
  }
  

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('media/curtain-2-overlay.png');
    background-size: cover;
    background-position: center center;
    pointer-events: none;
    z-index: 2;
  }

  .action-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    letter-spacing: 3px;
    transition: 0.1s background-color linear, 0.1s color linear
  }
  .action-button:hover{
    background-color:   #e4d6a2;
    border-color:   #e4d6a2;
    color:#000;
  }
  

.bodyimage{

  border-radius: 8px;
}

  .hero-section {
    font-style: normal;
    font-weight: 300;
    font-size: 26px;
    line-height: 1.3em;
    letter-spacing: 0px;
    text-transform: none;

    width:0 auto;

    background-image: linear-gradient(rgba(0, 0, 0, 0.834), rgba(0, 0, 0, 0.858)), url('media/mainb/m04.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #e4d6a2;
    padding: 20px;
  }


  .info1-section {
    font-style: normal;
    font-weight: 300;
    font-size: 26px;
    line-height: 1.3em;
    letter-spacing: 0px;
    text-transform: none;

    width:0 auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0.834), rgba(0, 0, 0, 0.858)), url('media/starsblue.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #e4d6a2;
    padding: 20px;

  }

  .info2-section {
    font-style: normal;
    font-weight: 300;
    font-size: 26px;
    line-height: 1.3em;
    letter-spacing: 0px;
    text-transform: none;

    width:0 auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0.834), rgba(0, 0, 0, 0.858)), url('media/starsblue.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #e4d6a2;
    padding: 20px;

  }

   .infocontent{
    margin: 1.5em auto .3em;
    max-width: 920px;
  }

  .info1-section .herocontent{
    margin: 1.5em auto .3em;
    max-width: 920px;
  }

  .coaching-section{
    font-style: normal;
    font-weight: 350;
    font-size: 26px;
    line-height: 1.3em;
    letter-spacing: 0px;
    text-transform: none;

    width:0 auto;
    background-image: linear-gradient( rgba(128, 119, 68, 0.846), rgba(255, 191, 54, 0.807)), url('media/stars.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #000000;
    padding: 20px;
  }


  .contact-section,
  .call-to-action-section {
    padding: 50px;
    background-color: rgb(189, 153, 75);
    border-bottom: 1px solid #ddd;
  }
  

  .contact-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  

  .contact-section li {
    margin-bottom: 20px;
  }
  

  .contact-section h1,
  .call-to-action-section h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  
  .contact-section p,
  .call-to-action-section p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  

  
  .call-to-action-section button:hover {
    background-color: #555;
  }

  .menu-container {
    position: fixed;
    top: -10px;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20% 4px 20%;

  }

  .menu.menu-background {
    background-color: rgba(0, 0, 0, 0.647);
    transition: 2.5s background-color linear, 2.5s color linear
  }
  
  .menu li {
    list-style: none;
    margin-right: 10px;

  }
  
  .menu a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
  }
  
  .menu a:hover{
    color: #cbcbcb;
    text-shadow: 0 0  10px #000000;
  }

  .logo {
    width: 200px; 
    height: auto;
    margin: 0 10px; 
}
  


  .video-section {
    aspect-ratio: 16/9; 
    width: 100%;
    height: auto;
    background-color: #333;
  }


  .video-placeholder {
    position: absolute;
    width: 100%;
    background-color: #333;
  }
  
  .video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: contain;
    z-index:2;
  
  }


  .video-promo {
    position: absolute;
    z-index:1;
    width: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s;
  }
  
  .video-promo.playing {
    opacity: 1;
    z-index:11;
  }





  footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  footer h5 {
    color: #fff;
    margin-bottom: 10px;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  footer li {
    margin-bottom: 10px;
  }
  
  footer a {
    color: #fff;
    text-decoration: none;
  }
  
  footer a:hover {
    color: #ccc;
  }
  
  footer .social-media {
    display: flex;
    justify-content: center;
  }
  
  footer .social-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(189, 153, 75);
    color:#000;
    text-align: center;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  footer .social-button i {
    font-size: 24px; 
    font-family: 'Font Awesome 5 Brands';
  }
  
  footer .social-button:hover {
    background-color: rgb(189, 153, 75);
  }
  
  footer .fa {
    margin-right: 10px;
  }

  form{
    width:360px;
    margin: 40px auto;
  }

input{
  width:300px;
  float:right;
}

textarea{
  width:300px;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.popup-link {
  cursor: pointer;
}


.popup:target {
  display: block;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.close-popup a {
  text-decoration: none;
  color: inherit;
}

.close-popup:hover {
  color: #ccc;
}





  
  @media (max-width: 768px) {
    .top-slider {
 
    }
  
    .hero-section {
     
    }
  
    .coaching-section,
    .contact-section,
    .call-to-action-section {
      padding: 20px;
    }

    .menu {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      background-color: rgba(157, 0, 63, 0.5);
      position: fixed;
      top: 20px;
      left: -120%;
      height: 60%;
   
      transition: left 0.3s ease-in-out;
    }
  
    .menu.open {
      left: 0;
    }
  
    .menu-toggle {
      display: block;
      position: absolute;
      top: 30px;
      right: 10px;
      cursor: pointer;
      font-size: 24px;
      color: #fff;
      transition: color 0.3s ease-in-out;
    }
  
    .menu-toggle:hover {
      color: #ccc;
    }
  
    .menu li {
      margin-right: 0;
      margin-bottom: 10px;
    }
  
    .menu a {
      display: block;
      padding: 10px;
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease-in-out;
    }
  
    .menu a:hover {
      color: #ccc;
    }


    .gallery {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .popup {
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
  }



  }
  

  @media (max-width: 480px) {
    .top-slider {
      width: auto;
      height:60vh;
    }
    .slider-item{
        height:60vh;
    }

    .hero-section {
        
    }

    .coaching-section, .contact-section, .call-to-action-section {
        padding: 10px;
    }

    .gallery {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }




}




