/* Application Received Hero Section Styles */
/* 
 * This CSS file is part of the scholarship application received page structure:
 * - Used by: components/scholarship-application-received/hero/hero.php
 * - Assets loaded by: smart-scholarship-application-received-loader.php
 * - Following site-grid-rails.css for layout and style.css for colors/fonts
 */

/* Performance-optimized animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .application-received-hero__heading,
  .impact-icon {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.application-received-hero {
  background-color: var(--ica-green-deep) !important;
  min-height: 20vh;
  padding: var(--global-padding-desktop) 0 !important;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.application-received-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  gap: 1rem;
}

.application-received-hero__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.impact-icon {
  width: 250px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 0.8s ease-out 0.1s forwards;
}

.application-received-hero__heading {
  font-family: var(--font-ui) !important;
  color: var(--ica-lime);
  font-size: 45px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .application-received-hero {
    min-height: 150px;
    padding: 1rem 0;
  }
  
  .impact-icon {
    width: 200px;
    height: auto;
  }
  
  .application-received-hero__heading {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .application-received-hero {
    min-height: 120px;
  }
  
  .impact-icon {
    width: 150px;
    height: auto;
  }
  
  .application-received-hero__heading {
    font-size: 28px;
  }
}
