* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: black;
  color: white;
  overflow-x: hidden;
}

/* SCENE */
.scene {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.scene.active {
  opacity: 1;
}

/* TITLE */
.scene h1 {
  position: absolute;
  bottom: 12%;
  font-weight: 300;
  letter-spacing: 2px;
  z-index: 2;
}

/* IMAGE */
.visual {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 45%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  cursor: pointer;
  z-index: 1;
  transition: transform 0.4s ease;
}

.visual:hover {
  transform: translateX(-50%) scale(1.05);
}

/* INFO PANEL */
#info {
  position: fixed;
  right: -420px;
  top: 0;
  width: 380px;
  height: 100%;
  background: rgba(0,0,30,0.92);
  padding: 30px;
  transition: right 0.5s ease;
  z-index: 10;
}

#info.active {
  right: 0;
}

#info button {
  margin-top: 20px;
  background: none;
  border: 1px solid white;
  color: white;
  padding: 8px 14px;
  cursor: pointer;
}

/* TIMELINE */
#timeline {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

#timeline span {
  font-size: 12px;
  color: #aaa;
  cursor: pointer;
}

#timeline span:hover {
  color: white;
}
