/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: white;
  overflow-x: hidden;
}

/* SIDEBAR */
.sidebar {
  width: 260px;
  height: 100vh;
  background: #0d0d0d;
  padding: 40px 25px;
  position: fixed;
  top: 0;
  left: 0;
  border-right: 1px solid #222;
  transition: transform 0.35s ease;
  z-index: 999999;
}

.sidebar h1 {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 35px;
}

.nav-item {
  display: block;
  margin: 12px 0;
  text-decoration: none;
  color: #ddd;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: 0.2s;
}

.nav-item:hover {
  color: white;
}

/* HAMBURGER */
.hamburger {
  display: none;
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 1000000;
  font-size: 28px;
  background: #000000aa;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  margin-left: 260px;
  width: calc(100% - 260px);
  height: 100vh;
  position: relative;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.hero-text h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 2px;
}

.hero-text p {
  margin-top: 8px;
  font-size: 16px;
  opacity: 0.85;
}

/* -------------------------- */
/* ⭐ SCROLL INDICATOR FIX ⭐ */
/* -------------------------- */

.scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;       /* ABOVE VIDEO */
  opacity: 0.9;
}

.mouse {
  width: 22px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 14px;
  margin: 0 auto 6px auto;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: wheelMove 1.3s infinite;
}

@keyframes wheelMove {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* STORY SECTION */
.story-panel {
  margin-left: 260px;
  padding: 80px 40px;
  background: #111;
  min-height: 50vh;
  position: relative;
  z-index: 1;
}

/* MOBILE */
@media (max-width: 850px) {
  .hamburger {
    display: block;
  }

  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.active {
    transform: translateX(0);
  }

  .hero {
    margin-left: 0;
    width: 100%;
  }

  .story-panel {
    margin-left: 0;
  }
}
