/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh; /* actual height doesn't matter because GSAP controls scroll */
}

.hero2 {
    position: relative;
    height: 600px; /* actual height doesn't matter because GSAP controls scroll */
    background-image: url(public/external/Privacy.png);
    background-size: cover;
    background-repeat: no-repeat;
}


video {
  z-index: 0;
}

.overlay {
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

/* VIDEO */
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* 50% black */
  z-index: 1;
  pointer-events: none; /* allows clicks through */
}

/* NEXT SECTION */
.next {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}


/* HERO */
.hero {
    overflow: hidden;
    background-image: url(../../rasool-main/public/external/Privacy.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
  max-width: 800px;
}

/* INITIAL STATE (ZOOM OUT) */
.title-1,
.title-2,
.subtitle,
.btn {
  opacity: 0;
  transform: scale(0.8);
}

/* TEXT */
.title-1,
.title-2 {
  font-size: 3rem;
}

.subtitle {
  margin: 20px 0;
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
}

.primary {
  background: #fff;
  color: #000;
}

.secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/* NEXT SECTION */
.next {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
