body,
html {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
}

header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

#logo {
  flex-shrink: 0;
  padding-left: 10px;
}

#logo img {
  height: auto;
  width: 150px;
  max-width: 150%;
  margin-left: 20px;
}

nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.close {
  display: none;
}


.nav-links.active + .close {
  display: block;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px;
  border-radius: 5px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  padding: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 5px 10px;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  color: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out;
}

/* .hero-section {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  overflow: hidden;
} */
/* Existing styles remain unchanged */

/* Existing styles remain unchanged */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px; /* Adjust based on your header height */
}

.hero-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.content-wrapper {
  width: 90%;
  max-width: 1200px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
}

h1 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.video-item {
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid white;
  margin-left: 5px;
}

.video-item h3 {
  color: white;
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .content-wrapper {
    width: 95%;
    padding: 1rem;
  }

  .videos-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

footer {
  position: absolute;
  bottom: 30px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 20px);
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: cover;
}


.videos {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    padding: 20px;
    position: relative;
    z-index: 100;
    
  }
  
  .video {
    position: relative;
    width: 360px; 
    height: 200px; 
    background-color: #000000af;
  }
  
  .video video,

  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
  }
  
  .video:hover .play-button {
    opacity: 0.8;
  }

/* footer h4 {
  color: white;
} */

.social-media-icons img {
  width: 32px;
  height: 32px;
}

.social-media-icons a {
  margin: 0 10px;
}
.video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 20px;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.watch-on-youtube {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px 10px;
  border-radius: 5px;
}

.watch-on-youtube:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
  }

  #logo {
    margin-bottom: 10px;
  }

  #logo img {
    margin-left: 0;
    width: 140px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    padding: 5px 0;
  }

  .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    cursor: pointer;
    color: white;
    font-size: 2rem;
  }

  .hero-section {
    height: 100vh;
    padding: 20px;
  }

  .hero-section::before {
    background: rgba(0, 0, 0, 0.3);
  }

  .hero-content {
    padding: 20px 0;
  }

  .release img {
    width: 120px;
    height: 120px;
  }

  .social-media-icons {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #333;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  footer {
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .social-media-icons {
    margin-top: 10px;
  }

  .videos {
   flex-direction: column;
  }

}

@media (max-width: 480px) {
  header {
    padding: 10px;
  }

  #logo img {
    width: 120px;
  }

  nav ul li {
    padding: 5px 0;
  }

  .hero-section {
    height: 100vh;
  }

  .hero-content h1 {
    font-size: 1.5em;
  }


  .social-media-icons {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
