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

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

/* ------------------------------------------
   HEADER & NAV
------------------------------------------- */

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #e50914;
  flex-shrink: 0;
}

.logo a img {
  height: 35px;
  vertical-align: middle;
}

/* Desktop nav */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  overflow-x: auto;
  white-space: nowrap;
}

.main-nav li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  display: inline-block;
  padding: 10px 5px;
}

/* Hamburger toggle (hidden by default) */
.menu-toggle {
  display: none;
  font-size: 2em;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* ------------------------------------------
   HERO
------------------------------------------- */

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px;
  max-width: 100%;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
  position: absolute;
}

.hero-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.hero-description {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  font-size: 1em;
  padding: 10px 20px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
}

.btn.play {
  background-color: #fff;
  color: #000;
}

.btn.more-info {
  background-color: transparent;
  color: #ccc;
  text-decoration: none;
  border: none;
  padding-left: 8px;
}

.btn.more-info:hover {
  text-decoration: underline;
}

/* ------------------------------------------
   CAROUSELS
------------------------------------------- */

.carousel {
  padding: 15px 30px;
}

.carousel h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.video-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  white-space: nowrap;
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}

.video-row::-webkit-scrollbar {
  display: none;             /* Chrome/Safari */
}

.video-item {
  background: none;
  width: 320px;
  border-radius: 8px;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

.video-item img {
  border: none;
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.video-desc {
  padding: 8px;
  font-size: 0.95em;
  color: white;
}

/* ------------------------------------------
   VIDEO DETAIL PAGE
------------------------------------------- */

.video-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 100vh;
  padding: 0 60px;
  box-sizing: border-box;
}

.video-detail iframe,
.video-detail video,
.video-detail img {
  flex: 2;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.video-detail .desc {
  flex: 1;
  text-align: left;
  color: #ccc;
}

.desc {
  color: #666;
  line-height: calc(1em + 10px);
}

.vertical-videos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.vertical-videos video {
  flex: 1 1 30%;
  aspect-ratio: 9 / 16;
  height: auto;
  max-width: 40%;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
}

.video-player {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* ------------------------------------------
   ABOUT PAGE
------------------------------------------- */

.about {
  display: flex;
  flex-direction: row;           /* Ensures side-by-side layout */
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;             /* Allows page to grow if needed */
  padding: 100px 60px 60px;      /* Push down to clear fixed header */
  gap: 40px;
  box-sizing: border-box;
}

.about-image-wrapper {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.about-content {
  flex: 2;
  max-width: 50%;
  color: #ccc;
  font-size: 1.3em;
  line-height: 1.8;
  text-align: left;
}

/* ------------------------------------------
   MOBILE RESPONSIVE STYLES
------------------------------------------- */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    margin-left: auto;
    z-index: 2000;
  }

 .hero {
    height: auto;
    min-height: 30vh;
    margin-top: 80px;
  }

  .hero-bg {
    width: 100%;
    height: auto;
  }

  .hero-content {
    position: auto;
    top: calc(-10%);
    left: auto;
    transform: none;
    padding: 15px 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
  }

  .hero-title {
    font-size: 1.5em;
  }

  .hero-description {
    font-size: 1em;
    word-break: break-word;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 20px;
    border-radius: 8px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  .main-nav li a {
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 1em;
  }

  .main-nav li a:last-child {
    border-bottom: none;
  }

  .carousel {
    padding: 10px 15px;
  }

  .video-row {
    gap: 10px;
    padding-bottom: 15px;
  }

  .video-item {
    width: 80vw;
    max-width: 300px;
  }

  .video-item img,
  .video-item iframe {
    height: auto;
    aspect-ratio: 16/9;
  }

  .video-desc {
    font-size: 0.9em;
    padding: 6px;
  }
  
   .video-detail {
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    gap: 20px;
  }

  .video-detail video {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  .video-detail .desc {
    width: 100%;
    margin-top: 10px;
    text-align: left;
  }
  
.video-detail .image-wrapper img {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.image-wrapper img {
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

  .page-content {
    padding-top: 50px;
  }

  .about {
    flex-direction: column;
    padding: 80px 20px 20px;
    height: auto;
  }

  .about-image-wrapper,
  .about-content {
    max-width: 100%;
  }

  .about-content {
    font-size: 1em;
  }
}