html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
}

.hero-fullscreen {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: black;
}

.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 20% center;
  display: block;
}

/* Background image for the hero section */
.hero-tagline {
  position: absolute;
  top: 35%;
  left: 38%;
  transform: translate(-50%, -50%);
  text-align: right;
  color: white;
  z-index: 2;
}

.tagline-main {
  font-size: 2rem;
  font-family: 'Aptos-Light';
}

.tagline-sub {
  font-size: 1rem;
  font-family: 'Aptos-Light';
  margin-top: 10px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  font-family: 'Aptos-Light';
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 3;
  text-decoration: none;
}

.scroll-indicator span {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.arrow-down {
  width: 24px;
  height: 24px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  margin: 0 auto;
}

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


  body {
    opacity: 0;
    animation: fadeIn 1.2s ease-in forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }