/* Hero Section Styles */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Ensure particles don't overflow */
  background-image: url('../img/hero-bg6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background implementations - for future compatibility */
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('../img/hero-bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Video background support (for future implementation) */
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none; /* Hidden by default, enable when video is added */
}

/* Particle canvas styling */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Allow clicks to pass through */
}

/* Overlay for the background image */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 2;
}

/* Content Container */
.hero__content {
  position: relative;
  z-index: 3; /* Above overlay and particles */
  max-width: 90%;
  padding: 0 20px;
}

/* Main Title */
.hero__title {
  font-family: 'Arimo', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #FFFFFF;
}

/* Subtitle */
.hero__subtitle {
  font-family: 'Arimo', sans-serif;
  font-size: 1.1rem;
  font-weight: 100;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

/* Call to Action Button */
.hero__cta {
  display: inline-block;
  padding: 12px 32px;
  background-color: #C1A875;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero__cta:hover {
  background-color: transparent;
  border-color: #C1A875;
  color: #C1A875;
  transform: translateY(-2px);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll-arrow {
  color: #FFFFFF;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hero__scroll-arrow:hover {
  color: #C1A875;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.25rem;
  }
  
  .hero__cta {
    padding: 16px 40px;
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
  
  .hero__content {
    max-width: 80%;
  }
}

@media screen and (min-width: 1200px) {
  .hero__title {
    font-size: 3rem;
  }
  
  .hero__content {
    max-width: 70%;
  }
}