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

.hero-about {
  background-image: url("../images/1.0_about_hero.jpg");
  /* background-position: top right; */
  background-position: 80% 0;
}

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

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

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

.hero-about, .hero-meet, .hero-guide, .hero-cyto {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  text-align: left; 
  color: #fff;
  /* padding-left: 10%; */
  min-width: 393px;
}

/* Black overlay */
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36); /* black with 36% opacity */
}
/* Page specific values */
.page-about .hero .overlay { background: rgba(0, 0, 0, 0.37); }
.page-team .hero .overlay { background: rgba(0, 0, 0, 0.44); }
.page-guide .hero .overlay { background: rgba(0, 0, 0, 0.25); }

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

.disclaimer-text p {
  position: absolute;
  bottom: 0;
  right: 10%;
  font-size: 13px;
  padding: 20px;

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

.hero-meet .hero-content {
  max-width: 800px;
}
.hero-guide .hero-content {
  max-width: 720px;
}
.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'; */
  font-weight: 500;
  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;
}

/* home page specific animation */
.hero-content .fancy-button {
  opacity: 0;
  animation: slideInFadeIn 0.8s ease-in-out forwards;
  animation-delay: 0.9s;
}
.hero-content .fancy-button:hover {
  background: linear-gradient(90deg, #fbbf24, #ea580c); /* slightly brighter on hover */
  transform: scale(1.05);
}



@media (max-width: 768px) {
  .hero-content {
    text-align: center
  }
  .hero-content h1 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 0.9rem;
  }
  .hero-content p {
    font-size: 20px;
    line-height: 26px;
    align-items: flex-start;
  }
  .disclaimer-text p {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 15px;
    padding: 20px;
    text-align: center;
  }
}


/* Animations */

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

@keyframes fadeIn {
  from {
    opacity: 0;
    /* transform: translateX(20px); */
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}