/* 

.hero{
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 9;
	transition: all 1.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.hero.scrolled{
	transform: translate3d(0, -100%, 0) scale(.75);
	opacity: 0;
}
.hero-inner{
		background-image: url('https://images.unsplash.com/photo-1442188950719-e8a67aea613a?fit=crop&fm=jpg&h=975&q=80&w=1925');
		background-size: cover;
	background-position: center;
	display: table;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
}
.hero-title{
	display: table-cell;
	vertical-align: middle;	
	text-align: center;
}
h1, h2, h3, h4, h5, h6{
	font-family: montserrat;
}
.font-2{
	font-family: 'josefin sans';
	font-weight: 700;
}
.title{ letter-spacing: .3em; text-transform: uppercase; }
.text-light{ color: #fff }
.font-alt{
	font-family: 'georgia';
	font-style: italic;
	color: #666;
}
.hero{
	overflow: hidden;
	z-index: 1;
}
.content{
	position: relative;
	background-color: #fff;
	border-top: 10px solid black;
	padding: 0;	
	margin: 0;
	transition: all 1.6s cubic-bezier(0.86, 0, 0.07, 1);
	transform: translate3d(0, 20px, 0) scale(.75);
	opacity: 0;
}
.content.scrolled{
	transform: translate3d(0, 0, 0) scale(1);	
	opacity: 1;
}
.sd{
	color: #fff;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
}
.sd:hover, .sd:focus{
	color: #fff;
	opacity: .7;
	text-decoration: none;
}




 */










 .hero {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9;
  transition: all 1.6s cubic-bezier(0.86, 0, 0.07, 1);
  overflow: hidden;
}

.hero.scrolled {
  transform: translate3d(0, -100%, 0) scale(.75);
  opacity: 0;
}

.hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* make sure it's below the text */
  pointer-events: none; /* disables any interaction with video */
}

.hero-title, 
.sd {
  position: relative;
  z-index: 2; /* ensures they appear above the video */
}




.font-2 {
  /* font-family: 'josefin sans'; */
  font-weight: 700;
  font-size: 52px;
   color: #ffffff !important;
}

.title { 
  letter-spacing: .3em; 
  text-transform: uppercase; 
}

.text-light { color: #ffffff !important; }

.font-alt {
  font-family: 'georgia';
  font-style: italic;
  color: #666;
}

.content {
  position: relative;
  background-color: #fff;
  border-top: 10px solid black;
  padding: 0;	
  margin: 0;
  transition: all 1.6s cubic-bezier(0.86, 0, 0.07, 1);
  transform: translate3d(0, 20px, 0) scale(.75);
  opacity: 0;
}

.content.scrolled {
  transform: translate3d(0, 0, 0) scale(1);	
  opacity: 1;
}

.sd {
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.sd:hover, .sd:focus {
  color: #fff;
  opacity: .7;
  text-decoration: none;
}
















































/************************ Slider ******************/

.video-slider {
  position: relative;
  padding: 80px 0;
  background: #fff;
}

.section-header .title span {
 
 
  
  text-transform: uppercase;
}



.slider__container {
  cursor: grab;
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  /* padding: 0 10%; */
}

.slider__container.dragging {
  scroll-behavior: auto;
  cursor: grabbing;
}

.slider__item {
  flex: 0 0 40%;
  max-width: 40%;
  margin: 0 20px;
  text-align: center;
  transition: transform 0.3s ease;
}




.video-box {
  position: relative;
  overflow: hidden;
 
  transition: transform 0.3s ease;
}


.video-box video {
  width: 100%;
  height: auto;

}

.video-title {
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-color);
  text-transform: uppercase;
}

.video-desc {
  font-size: 15px;
  color: #555;
  margin-top: 8px;
}

.slider__control {
  font-size: 16px;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  /* border-radius: 50%; */
  color: #ffffff;
  background: var(--accent-color);
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
 
}

.slider__control:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.slider__control.prev { left: 20px; }
.slider__control.next { right: 20px; }

@media (max-width: 992px) {
  .slider__item { flex: 0 0 70%; max-width: 70%; }
}

@media (max-width: 768px) {
  .slider__item { flex: 0 0 90%; max-width: 90%; }
}




.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  
}

.play-btn:hover {
 
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: pulse 1.5s infinite ease-in-out;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.play-btn i {
  font-size: 28px;
  color: var(--accent-color, #ff4444);
}



.slider-progress {
  position: relative;
  width: 60%;
  height: 6px;
  margin: 40px auto 0;
  background: #ddd;
  border-radius: 3px;
  overflow: hidden;
}

.slider-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accent-color, #000);
  width: 0%;
  border-radius: 3px;
  transition: width 0.5s ease;
}



/* Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.918);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

#modalVideo {
  width: 100%;
  height: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 40px !important;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
   user-select: none;
  background:transparent !important;
  border-radius: 50%;
  padding: 10px;
  z-index: 1050 !important;
}

.close-btn:hover {
  color: rgb(63, 63, 63);
}



/***************************** become a member*********************************/
.hero-section {
  position: relative;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;  
  
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;  
  padding: 2rem !important;
  box-sizing: border-box; 
  padding-top: 2.2rem !important;
 
}

.hero-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 36px;
}

.hero-content h2 {
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: white !important;
  font-size: 3rem;  
}

.hero-content p {
  color: #ddd;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.btn-join {
  background-color: #C5A992;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s;
  color: white;
}

.btn-join:hover {
  background-color: #c5a9926b;
}

@media (max-width: 768px) {
  .hero-section {
    height: 100vh; 
  }

  .hero-content h2 {
    font-size: 2rem; 
  }

  .hero-logo {
    width: 70px;
    height: 70px;
  }

  .hero-content p {
    font-size: 0.85rem; 
  }
}







/**************************** top videos ***************************/





  .top-videos {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      /* height: 100vh; */
      gap: 10px;
     
    }

    .left-video,
    .right-videos > div {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: 12px;
	  
    }

    .left-video {
      flex: 0 0 60%;
     
	  height: 60vh;
    }

    .right-videos {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
     
	  height: 60vh;
    }

    .right-videos > div {
      flex: 1;
    }

    .thumbnail-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .left-video:hover .thumbnail-video,
    .right-videos > div:hover .thumbnail-video {
      transform: scale(1.05);
    }

    .video-overlay {
      position: absolute;
      bottom: 2%;
      left: 0;
      right: 0;
      
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 15px;
      font-weight: 500;
    }

	
	.video-title-top{
		color: white !important;
		font-size: 22px;
		font-weight: bold;
		text-transform: uppercase;
	}
    

    @media (max-width: 992px) {
      .top-videos {
        flex-direction: column;
        height: auto;
      }

      .left-video {
        flex: 1;
        height: 60vh;
      }

      .right-videos {
        flex-direction: row;
        height: 40vh;
      }
    }

    @media (max-width: 768px) {
      .right-videos {
        flex-direction: column;
        height: auto;
      }
    }






.topvideomodal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.918);
  justify-content: center;
  align-items: center;
}

.topvideomodal-content {
  position: relative;
  padding: 20px;
  max-width: 800px;
  width: 100%;
  margin: auto;
 
  
  text-align: center;
}

/* Close button */
.topvideomodal-close-btn {
  color: #fff;
  position: absolute;
  right:40px !important;
  top: 10px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 1050 !important;
}

.topvideomodal-close-btn:hover {
  color: rgb(63, 63, 63);
}






















.hero h1 {
    
    font-size: clamp(30px, 10vw, 110px);
    font-weight: 700;
    letter-spacing: 5px !important;
    margin-bottom: 20px;
    opacity: 0;
    animation: titleReveal 1.5s ease forwards 0.8s;
    color: #fff;
    text-shadow: 
        0 0 40px rgba(120, 100, 110, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        letter-spacing: 30px;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 18px;
    }
}





.hero p {
    
  
    letter-spacing: 1px !important;
    
    opacity: 0;
    animation: titleReveal 2s ease forwards 1s;
    color: #fff;
    
    
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        letter-spacing: 30px;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 18px;
    }
}