/* ===== WAVE 12 CAMPAIGN BANNER ===== */

.wave-banner {
  position: relative;
  width: 100%;
  /* Softer purple gradient with subtle overlay for more sophisticated look */
  background: linear-gradient(135deg, #702283 0%, #a78bfa 100%);
  padding: 0;
  overflow: hidden;
  z-index: 900;
  margin-top: 72px;
}

.wave-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.wave-banner-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Icon Section */
.wave-banner-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  /* More subtle background with better contrast */
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.wave-banner-icon i {
  font-size: 2rem;
  color: white;
}

/* Text Section */
.wave-banner-text {
  flex: 1;
  min-width: 0;
}

.wave-banner-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.375rem 0;
  line-height: 1.3;
}

.wave-banner-subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.625rem 0;
  line-height: 1.5;
}

.wave-banner-dates {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.wave-banner-dates i {
  font-size: 0.875rem;
}

/* CTA Section */
.wave-banner-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.wave-banner-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: white;
  /* Using softer purple that matches site better */
  color: #7c3aed;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wave-banner-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #f8fafc;
}

.wave-banner-button i {
  transition: transform 0.2s ease;
  font-size: 0.875rem;
}

.wave-banner-button:hover i {
  transform: translateX(3px);
}

.wave-banner-time {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 500;
}

.wave-banner-time i {
  font-size: 0.75rem;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
  .wave-banner {
    margin-top: 68px;
  }

  .wave-banner-container {
    padding: 1.5rem 1.5rem;
  }

  .wave-banner-content {
    gap: 1.5rem;
  }

  .wave-banner-title {
    font-size: 1.5rem;
  }

  .wave-banner-subtitle {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .wave-banner {
    margin-top: 64px;
  }

  .wave-banner-container {
    padding: 1.25rem 1rem;
  }

  .wave-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .wave-banner-icon {
    width: 64px;
    height: 64px;
  }

  .wave-banner-icon i {
    font-size: 1.75rem;
  }

  .wave-banner-title {
    font-size: 1.375rem;
  }

  .wave-banner-subtitle {
    font-size: 0.875rem;
  }

  .wave-banner-dates {
    justify-content: center;
    font-size: 0.8125rem;
  }

  .wave-banner-cta {
    width: 100%;
    align-items: center;
  }

  .wave-banner-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .wave-banner-title {
    font-size: 1.25rem;
  }

  .wave-banner-subtitle {
    font-size: 0.8125rem;
  }

  .wave-banner-button {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }
}

/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
  .wave-banner-button {
    transition: none;
  }

  .wave-banner-button:hover {
    transform: none;
  }

  .wave-banner-button i {
    transition: none;
  }

  .wave-banner-button:hover i {
    transform: none;
  }
}

/* ===== PRINT STYLES ===== */

@media print {
  .wave-banner {
    display: none;
  }
}
