* {
  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: 60px;
  }

  .navlist-container {
    position: absolute;
    top: 70px;
    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: 300px;
  }

  .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: relative;
  }
}

.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 {
  min-width: 100vw;
  /* width: 100%; */
  height: 100vh;
  overflow: hidden;
  position: relative;
  /* perspective: 1500px; */
}

.carousel-inner {
  /* height: 100%; */
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  transition: transform 0.9s ease, scale 2s ease;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  /* position: absolute; */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ccc;
  /* inset: 0; */
  /* transition: transform 2s ease, opacity 1s ease;
  transform-origin: center center; */
}

.carousel-inner video {
  width: 100%;
  /* height: 100vh; */
  object-fit: cover;
  /* transform: scale(1.1); */
  /* transition: transform 2s ease; */
  /* border-radius: 10px; //--- */
  background: #000;
}

/* Zoom out + reveal side slides */
.zoom-out .carousel-item.active video {
  transform: scale(0.7);
  filter: brightness(0.9);
}

.zoom-out .carousel-item.prev-slide video {
  transform: scale(0.85) translateX(-15%);
  opacity: 0.8;
}

.zoom-out .carousel-item.next-slide video {
  transform: scale(0.85) translateX(15%);
  opacity: 0.8;
}

/* Hide inactive slides */
.carousel-item:not(.active) {
  opacity: 0;
  pointer-events: none;
}

.carousel-item.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Overlay for cinematic look */
.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.2)
  );
  pointer-events: none;
}

/* Custom Carousel Buttons */
.custom-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px 10px;
  border-radius: 50%;

  z-index: 1;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.custom-btn.prev {
  left: 40px;
}

.custom-btn.next {
  right: 40px;
}
.carousel-indicators {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  bottom: 12px;
}
.carousel-indicators span {
  width: 9px;
  display: inline-block;
  margin: 0 4px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.4s;
  cursor: pointer;  
}
.carousel-indicators .active {
  background: #007bff;
}

/* 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;
}
