/* Home page container styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: #000000;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Sequential sections - stacked like Column children */
section.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Tall enough for scroll animation */
  margin: 0;
  padding: 0;
  background-color: transparent;
  z-index: 1;
}

section.content-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 2rem 0;
  background-color: transparent;
  color: #FFFFFF;
  display: flex;
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* Video container - starts as pill, becomes fullscreen, then morphs to star */
section.hero-section .video-container {
  position: absolute;
  top: 0.5rem;
  left: calc(50vw - 150px);
  width: 300px;
  height: 60px;
  border-radius: 50px;
  overflow: hidden;
  background-color: #000000;
  z-index: 10;
}

section.hero-section .video-wrapper {
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

section.hero-section .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000000;
}

section.hero-section .video-container .hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Radial gradient for glow: dark center fading to transparent edges */
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 35%);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  text-align: center;
}

section.hero-section .video-container .hero-overlay img {
  width: 150px;
  height: auto;
  margin-bottom: 0.5rem;
}

section.hero-section .video-container .hero-overlay h1 {
  font-family: 'Mona Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.1;
}

section.hero-section .video-container .hero-overlay p.large {
  font-family: 'Mona Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0.5rem 0 0 0;
}