/* ====================================
   HERO SECTION STYLES
   ==================================== */

/* Main content wrapper */
#main-content {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  margin: 0;
  padding: 0;
  z-index: 1;
  overflow: visible;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.45) 0%, rgba(0, 82, 163, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 100px 20px;
  text-align: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-tagline {
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 30px 0;
  line-height: 1.4;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-description {
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-button {
  display: inline-block;
  background-color: #ffffff;
  color: #0066CC;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Hero Section */
@media screen and (max-width: 1024px) {
  .hero-background {
    background-attachment: scroll;
  }
  
  .hero-content {
    padding: 80px 20px;
    min-height: 550px;
  }
  
  .hero-title {
    font-size: 48px;
    margin-bottom: 15px;
  }
  
  .hero-tagline {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .hero-description {
    font-size: 17px;
    padding: 0 15px;
  }
  
  .hero-button {
    padding: 16px 35px;
    font-size: 17px;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }
  
  .hero-content {
    padding: 60px 15px;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .hero-tagline {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .hero-description {
    font-size: 16px;
    padding: 0 10px;
    margin-bottom: 30px;
  }
  
  .hero-button {
    padding: 15px 30px;
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    min-height: 450px;
  }
  
  .hero-content {
    padding: 50px 10px;
    min-height: 450px;
  }
  
  .hero-title {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .hero-tagline {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 15px;
    padding: 0 5px;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .hero-button {
    padding: 14px 25px;
    font-size: 15px;
  }
}

@media screen and (max-width: 360px) {
  .hero-section {
    min-height: 400px;
  }
  
  .hero-content {
    padding: 40px 5px;
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-tagline {
    font-size: 16px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .hero-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}
