/* styles.css */

/* -------------------------------
   Reset & Box Sizing
--------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* -------------------------------
   Base HTML
--------------------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* -------------------------------
   Body Global
--------------------------------- */
body {
  font-family: 'Poppins', sans-serif;
  background: black;
  color: white;
  overflow: hidden;
}

/* -------------------------------
   Logo
--------------------------------- */
.logo {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.logo img {
  height: 50px;
}

/* -------------------------------
   Burger Menu
--------------------------------- */
.burger-menu {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-menu.open span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.burger-menu.open span:nth-child(2) {
  opacity: 0;
}

.burger-menu.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* -------------------------------
   Menu
--------------------------------- */
.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu.open {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
}

/* -------------------------------
   Sections Container
--------------------------------- */
.sections-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

/* -------------------------------
   Section
--------------------------------- */
.section {
  position: relative;
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  box-sizing: border-box;
  transition: background-image 0.5s ease;
}

/* -------------------------------
   Text Container & Content
--------------------------------- */
.text-container {
  max-width: 500px;
  text-align: left;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: 100%;
  max-width: 900px;
  text-align: left;
  margin: 0 auto 20px auto;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 10px;
}

.co-production {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.co-production img {
  height: 25px;
}

.info {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* -------------------------------
   Indicator
--------------------------------- */
.indicator {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.indicator span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease;
}

.indicator span.active {
  background: white;
}