

/* Hero Section */
.hero {
  position: relative;
  height: 800px;
  background-image: url("../images/0.0_homepage.png");
  background-size: cover;
  background-position: 50% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-about {
  background-image: url("../images/1.0_about_hero.png");
}

.hero-meet {
  background-image: url("../images/3.0_meet_team.png");
}

.hero-guide {
  background-image: url("../images/4.0_guide.png");
}

.hero-cyto {
  background-image: url("../images/5.0_cyto_hq.png");
}

.hero-about, .hero-meet, .hero-guide, .hero-cyto {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  text-align: left; 
  color: white;
  padding-left: 10%;
}

/* Black overlay */
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* black with 60% opacity */
}

/* Text and button */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
  margin-top: 80px;
}

.hero-content h1 {
  /* font-size: 3rem; */
  margin-bottom: 1rem;
  font-family: 'Azo_Sans_Regular', 'sans-serif';
  
  font-size: 75px;
  line-height: 86px;
  text-align: left;
  color: #ffffff;

  /* animation */
  opacity: 0;
  animation: slideInFadeIn 0.8s ease-in-out forwards;
  animation-delay: 0.3s;
}

.hero-content .hero-title-video {
  text-align: center;
}

.hero-content p {
  /* font-size: 1.25rem; */
  margin-bottom: 2rem;
  font-family: 'Azo_Sans_Regular', 'sans-serif';
  align-items: flex-start;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;

  /* animation */
  opacity: 0;
  animation: slideInFadeIn 0.8s ease-in-out forwards;
  animation-delay: 0.6s;
}

.hero-about button {
  display: none;
}

.hero-content button {
  background: linear-gradient(90deg, #f0ca6c, #EC8313); /* yellow → orange */
  color: black;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Azo_Sans_Bold', 'sans-serif';
  text-transform:uppercase;
  /* animation */
  opacity: 0;
  animation: slideInFadeIn 0.8s ease-in-out forwards;
  animation-delay: 0.9s;
}



/* Optional hover effect */
.hero-content button:hover {
  background: linear-gradient(90deg, #fbbf24, #ea580c); /* slightly brighter on hover */
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-content h1 {
  font-size: 25px;
  margin-bottom: 0.9rem;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.5rem;
  align-items: flex-start;
}
}


/* Animations */

@keyframes slideInFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}