/* ===================================
   HERO SECTION - SIMPLIFIED & OPTIMIZED
   No floating elements, better mobile performance
   =================================== */

/* Main hero container */
.hero {
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(135deg, 
    rgba(203, 188, 163, 0.3) 0%, 
    rgba(214, 207, 196, 0.4) 50%, 
    rgba(199, 184, 161, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  border-bottom: 2px solid var(--color-accent);
}

/* Soft gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, 
    rgba(253, 252, 250, 0.85) 0%, 
    rgba(248, 247, 244, 0.75) 100%);
  z-index: 1;
}

/* Container for hero text */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--spacing-8);
}

/* Main hero heading */
.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-6);
  color: var(--text-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

/* Subtitle text */
.hero-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-8);
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.7);
}

/* Call-to-action button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-4) var(--spacing-10);
  background: var(--color-button-bg);
  color: var(--color-button-text);
  text-decoration: none;
  border-radius: var(--border-radius-2xl);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-lg);
  font-family: var(--font-body);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-button-bg);
  letter-spacing: 0.02em;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
  background: var(--color-hover);
  color: var(--color-warm-white);
}

.cta-icon {
  transition: transform var(--transition-normal);
}

.cta-button:hover .cta-icon {
  transform: translateX(4px);
}

/* Simple fade in animations */
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}

.animate-bounce-in {
  animation: bounceInSubtle 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

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

@keyframes bounceInSubtle {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  60% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===================================
   DARK MODE
   =================================== */
@media (prefers-color-scheme: dark) {
  .hero {
    background: linear-gradient(135deg, 
      rgba(38, 38, 38, 0.9) 0%, 
      rgba(26, 26, 26, 0.95) 50%, 
      rgba(30, 30, 30, 0.9) 100%);
  }
  
  .hero::before {
    background: radial-gradient(circle at center, 
      rgba(26, 26, 26, 0.7) 0%, 
      rgba(26, 26, 26, 0.9) 100%);
  }
  
  .hero-title {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
                 0 4px 16px rgba(0, 0, 0, 0.6) !important;
  }
  
  .hero-subtitle {
    color: #E8E6E3 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
  }
}

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

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 400px;
    margin-top: 70px;
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .cta-button {
    padding: var(--spacing-3) var(--spacing-8);
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
    min-height: 350px;
    margin-top: 60px;
  }
  
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-sm);
  }
  
  .hero-content {
    padding: 0 var(--spacing-4);
  }
}