/**
 * Dynamic Hero Section CSS
 * Add this file to your css folder and enqueue it
 */

/* Hero Section Styles */
.aura-hero-section {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px; /* Account for fixed header */
  overflow: hidden;
}

.aura-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.aura-hero-section .container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
  padding: 0 2rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-button {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: 2px solid var(--primary-gold);
}

.hero-button:hover {
  background: transparent;
  color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  border-color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .aura-hero-section {
    min-height: 50vh;
    margin-top: 70px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-content {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .aura-hero-section {
    min-height: 45vh;
    margin-top: 70px;
  }

  .aura-hero-section .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-content {
    padding: 2rem 0;
  }

  .hero-button {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .aura-hero-section {
    min-height: 40vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* Animation Effects */
.hero-content {
  animation: heroFadeInUp 1s ease-out;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  animation: heroTitleSlide 1.2s ease-out;
}

@keyframes heroTitleSlide {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  animation: heroSubtitleFade 1.5s ease-out;
}

@keyframes heroSubtitleFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}

.hero-button {
  animation: heroButtonBounce 1.8s ease-out;
}

@keyframes heroButtonBounce {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Admin Styles */
.hero-image-upload .no-image {
  background: #f1f1f1;
  border: 2px dashed #ccc;
  padding: 2rem;
  text-align: center;
  color: #666;
  border-radius: 4px;
  max-width: 300px;
}

.hero-image-preview img {
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
