/* HERO */
#hero {
  height: 80vh;
  min-height: 600px;
  margin: 15px;
  margin-top: 80px;
  border-radius: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  background-size: cover;
  background-image: url("../images/banner.jpg");
}

.hero-container {
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1rem;
  backdrop-filter: blur(8px);
  border-radius: 31px;
  border: 1px solid rgb(255 255 255 / 9%);
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  background: rgba(0, 180, 216, 0.2);
  color: var(--sky);
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 5px;
}

#hero .hero-btn-group {
  position: absolute;
  bottom: 1.25rem;
}

#hero .hero-btn-group .hero-caption {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0px;
  margin-top: 1.25rem;
}

#hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

#hero h1 span {
  color: #5fc6ff;
}

#hero h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #ffffff;
}

#hero p {
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: #fff;
  max-width: 560px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--sky);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* SCROLL DOWN */
@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.scroll-down {
  position: absolute;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.8rem;
  animation: bounce-down 1.6s ease-in-out infinite;
  transition: opacity 0.4s ease;
  z-index: 2;
  text-align: center;
  width: 100vw;
}

.scroll-down a {
  color: var(--white);
  text-decoration: none;
}

.scroll-down.hidden {
  opacity: 0;
}

/* STATS */
#stats {
  background: var(--navy);
  padding: 3rem 6%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sky);
}

.stat-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
