/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.7) 0%, rgba(184, 153, 104, 0.6) 100%),
              url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?w=1600&q=80') center/cover;
  overflow: hidden;
}

/* Animated background overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(232, 220, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(2rem, 2rem) scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 60rem;
  padding: var(--spacing-md);
  width: 100%;
  text-align: center;
}

.hero-quote {
  color: var(--white);
  font-style: italic;
  position: relative;
  opacity: 0;
  animation: fadeInScale 1.2s ease-out 0.3s forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-quote p {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  font-weight: 400;
  text-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.4);
  font-family: 'Georgia', serif;
  padding: 0 var(--spacing-md);
}

/* Quote marks */
.hero-quote p::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -2rem;
  left: 0;
  color: var(--beige);
  opacity: 0.5;
  font-family: Georgia, serif;
}

.hero-quote cite {
  display: block;
  font-size: var(--font-size-lg);
  font-style: normal;
  color: var(--beige);
  font-weight: 500;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.4);
  margin-top: var(--spacing-sm);
}

.hero-quote cite::before {
  content: '— ';
  color: var(--beige);
}

/* Responsive */
@media (max-width: 48em) {
  .hero {
    min-height: 80vh;
  }

  .hero-quote p::before {
    font-size: 3rem;
    top: -1.5rem;
  }

  .hero-quote p {
    padding: 0;
  }
}

@media (max-width: 30em) {
  .hero {
    min-height: 70vh;
  }
}
