/* Hero Banner Styles */
.hero-banner-container {
  width: 100%;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Background with parallax effect */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/static/img/school/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(2px);
  transform: scale(1.05);
  z-index: -2;
}

/* Overlay gradient */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: -1;
}

/* Content positioning */
.min-vh-75 {
  min-height: 75vh;
}

.z-index-1 {
  z-index: 1;
}

/* Text content animations */
.text-content {
  padding-left: 2rem;
}

/* Image styling */
.school-image-container {
  position: relative;
  display: inline-block;
  margin-right: 2rem;
}

.school-image {
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 5px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.school-image:hover {
  transform: scale(1.02);
}

/* Floating badge */
.floating-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  border-radius: 15px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  max-width: 80%;
}

.badge-content {
  display: flex;
  align-items: center;
}

.badge-icon {
  font-size: 2rem;
  margin-right: 12px;
  color: #fad03d;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  color: #333;
  font-size: 1rem;
}

.badge-text span {
  color: #666;
  font-size: 0.8rem;
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Animation classes */
.animate__animated {
  animation-duration: 1s;
}

.animate__delay-1s {
  animation-delay: 0.5s;
}

.animate__delay-2s {
  animation-delay: 1s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-banner {
    min-height: auto;
  }
  
  .text-content {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
  
  .school-image {
    width: 80%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .floating-badge {
    right: 10%;
  }
  
  .d-flex.gap-3 {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    min-height: auto;
  }
  
  .school-image {
    width: 90%;
    max-width: 280px;
  }
  
  .floating-badge {
    padding: 8px 15px;
    right: 5%;
    bottom: 20px;
  }
  
  .badge-icon {
    font-size: 1.5rem;
  }
  
  .badge-text strong {
    font-size: 0.9rem;
  }
  
  .badge-text span {
    font-size: 0.7rem;
  }
}
