/**
 * Hero Banner Component
 */


.hero-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Background image */
.hero-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-banner__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark overlay for text readability */
.hero-banner__overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(54, 90, 140, 0.85) 0%, rgba(102, 143, 195, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Content container */
.hero-banner__container {
  max-width: var(--block-container-contain);
  margin: 0 auto;
  padding: var(--space-16) var(--space-6);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Heading */
.hero-banner__heading {
  font-size: var(--text-5xl);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: var(--space-6);
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-banner__heading > div {
  margin: 0;
  padding: 0;
}

/* Tagline */
.hero-banner__tagline {
  font-size: var(--text-xl);
  font-family: var(--font-base);
  line-height: 1.6;
  color: white;
  margin-bottom: var(--space-10);
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-banner__tagline > div {
  margin: 0;
  padding: 0;
}

/* Call-to-Action Buttons Container */
.hero-banner__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

/* Base button styles */
.hero-banner__actions a {
  padding: var(--space-2);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-base);
  text-decoration: none !important;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-lg);
  border: 2px solid white;
  white-space: nowrap;
  cursor: pointer;
  min-width: 180px;
}

/* Remove any link underlines and pseudo-elements */
.hero-banner__actions a::before,
.hero-banner__actions a::after {
  display: none !important;
  content: none !important;
}

.hero-banner a::before,
.hero-banner a::after {
  display: none !important;
}

/* Primary button (solid white) */
.hero-banner__primary-btn {
  background: white;
  color: var(--color-primary-dark);
  border-color: white;
}

.hero-banner__primary-btn:hover {
  background: var(--color-accent-grey);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.hero-banner__primary-btn:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* Secondary button (outline) */
.hero-banner__secondary-btn {
  background: transparent;
  color: white !important;
  border-color: white;
}

.hero-banner__secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-banner__secondary-btn:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Focus states for accessibility */
.hero-banner__actions a:focus {
  outline: 3px solid white;
  outline-offset: 4px;
}

/* Responsive - Large Tablet */
@media (max-width: 1024px) {
  .hero-banner__container {
    padding: var(--space-14) var(--space-6);
  }
  
  .hero-banner__heading {
    font-size: var(--text-4xl);
  }
  
  .hero-banner__actions a {
    padding: var(--space-3) var(--space-8);
    font-size: var(--text-base);
    min-width: 160px;
  }
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .hero-banner {
    min-height: 450px;
  }
  
  .hero-banner__container {
    padding: var(--space-12) var(--space-6);
  }
  
  .hero-banner__heading {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-5);
  }
  
  .hero-banner__tagline {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
  }
  
  .hero-banner__actions {
    gap: var(--space-3);
    margin-top: var(--space-6);
  }
  
  .hero-banner__actions a {
    padding: var(--space-3);
    font-size: var(--text-base);
    min-width: 150px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 400px;
  }
  
  .hero-banner__container {
    padding: var(--space-10) var(--space-4);
  }
  
  .hero-banner__heading {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
  }
  
  .hero-banner__tagline {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
  }
  
  .hero-banner__actions {
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-6);
  }
  
  .hero-banner__actions a {
    width: 10