
/* ==========================================================================
   Banner / Hero Section — Ananke Full-Screen Parallax Style
   ========================================================================== */

.banner-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  z-index: 1;
}

/* Parallax background image */
.banner-section .parallax-bg {
  position: absolute;
  left: 0;
  top: -15%;
  width: 100%;
  height: calc(100% + 30%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
  z-index: 1;
}

/* Dark overlay for text contrast */
.banner-section .overlay-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Hero content container — centered vertically and horizontally */
.banner-section .hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 200;
  padding: 0 20px;
}

/* Main hero title — .big-text (Ananke: Sifonn-Basic 60px white uppercase) */
.banner-section .big-text {
  font-family: 'Sifonn-Basic', sans-serif;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}

.banner-section .big-text span {
  border-top: 1px dashed rgba(255, 255, 255, 0.6);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
  padding-top: 15px;
  padding-bottom: 25px;
  display: inline-block;
}

/* Subtitle — .small-text */
.banner-section .small-text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

/* Hero subtitle — below the main heading */
.banner-section .hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
  margin-bottom: 25px;
}

/* Hero industries list */
.banner-section .hero-industries {
  font-family: 'OpenSans-Light-webfont', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

/* CTA button group */
.banner-section .hero-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.banner-section .hero-cta .cta-link {
  color: #fff;
  font-size: 16px;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 5px;
}

.banner-section .hero-cta .cta-link:hover {
  color: var(--theme-color);
  border-bottom-color: var(--theme-color);
}

/* Scroll-down button — positioned at bottom center */
.banner-section .scroll-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -30px;
  opacity: 0.8;
  font-family: 'OpenSans-Light-webfont', 'Open Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  width: 60px;
  z-index: 3900;
  transition: all 0.35s ease-in-out;
  text-decoration: none;
  display: block;
}

.banner-section .scroll-btn span {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.banner-section .scroll-btn i {
  display: block;
  font-size: 20px;
  animation: scrollArrow 2s infinite;
}

.banner-section .scroll-btn:hover {
  opacity: 1;
  color: #fff;
}

@keyframes scrollArrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}
