* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rothek Normal", "Rothek Normal Placeholder", sans-serif;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* prevents jump under navbar */
}

body {
  background: #121212;
}

nav {
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  padding: 1rem 0;
  z-index: 10;
}

.nav-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  width: 70px;
  height: auto;
  display: flex;
  align-items: center;
}

.logo-container img {
  width: 100%;
  height: 100%;
}

.navlist-container {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  gap: 0.4rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .logo-container {
    width: 50px;
  }

  .navlist-container {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navlist-container.active {
    max-height: none;
  }

  .navlist-container li {
    width: 100%;
    text-align: center;
    /* padding: 1rem 0; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  

  .navlist-container li a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    position: static;
  }
  #moreBtn{
    display: none;
  }
  .dropdown .active{
    display: block;
  }
  .dropdown .dropdown-menu {
    position: static;
    display: list-item;
  }
}
}

.nav-container li a {
  letter-spacing: 2px;
  text-decoration: none;
  color: white;
  font-size: 1.3rem;
  font-weight: 0;
  transition: color 0.3s ease;
}

/* Hero */
.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero img {
  width: 100%;
}

@media (max-width: 480px) {
  .hero img {
    width: 100%;
    height: 100%;
  }
  .footer {
    /* margin-bottom: 10px; */
    background-color: transparent;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active {
    display: flex;
  }
}
/* Fullscreen carousel */
.carousel-wrapper {
  min-width: 100vw;
  position: relative;
  overflow: hidden;
  /* height: auto; */
  /* box-shadow: 0 8px 32px rgba(0,0,0,0.15); */
  /* background: #fff; */
  /* border-radius: 16px; */
  background-color: #007bff;
}

.carousel {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  /* padding: 8px; */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7fafc;
}

.carousel video {
  object-fit: cover;
  width: 100vw;
  /* max-height: 100vw; */
  /* border-radius: 8px; */
  background: #000;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 30, 30, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.3rem;
  z-index: 1;
  outline: none;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: rgba(30, 30, 30, 0.8);
}

.nav-btn.prev {
  left: 8px;
}

.nav-btn.next {
  right: 8px;
}

.carousel-indicators {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
}

.carousel-indicators span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.4s;
}

.carousel-indicators .active {
  background: #007bff;
}

img {
  object-fit: cover;
  width: 100vw;
}

/* Mobile Styles */
@media (max-width: 600px) {
  .carousel-wrapper {
    /* max-width: 98vw; */
    min-width: 180px;
    /* border-radius: 10px; */
  }

  .carousel video {
    /* max-height: 38vw; */
    min-height: 50vw;
    width: 100vw;
  }

  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  

  .dropdown-menu {

    position: static;
    width: 100%;
  }
  .dropdown-menu li {
      position: static;
      width: 100%;
    }
}

/* Tablet Styles */
@media (min-width: 601px) and (max-width: 900px) {
  .carousel-wrapper {
    max-width: 480px;
    /* border-radius: 14px; */
  }

  .carousel video {
    max-height: 30vw;
  }
}

/* Desktop Styles */
@media (min-width: 901px) {
  .carousel-wrapper {
    max-width: 640px;
    /* border-radius: 16px; */
  }

  .carousel video {
    /* max-height: 340px; */
    height: auto;
  }
}

/* Hide inactive slides */

/* Custom Carousel Buttons */

.custom-btn.next {
  right: 40px;
}

/* Floating Transparent Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  color: white;
  text-align: center;
  padding: 1rem 0;

  z-index: 50;
  transition: background 0.3s ease;
}

.footer:hover {
  background: rgba(0, 0, 0, 0.7);
}

.footer-content p {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  padding: 5px;
  z-index: 999;
}

/* ================================= */

.navlist-container a {
  text-decoration: none;
  color: white;
  padding: 10px;
  display: block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  /* background: #333; */
  min-width: 160px;
  list-style: none;
}

.dropdown, .dropdown-menu a {
  color: #fff;
}
.dropdown:hover .dropdown-menu {
  /*display: block;*/
}
.dropdown.active .dropdown-menu {
  display: list-item;
}
