/* ===== MODERN HERO SECTION ===== */

.hero-modern {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Hero Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-md);
  animation: heroFadeIn 1.2s ease-out;
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.3s forwards;
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.6s forwards;
}

.hero-description {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.8s ease-out 1.2s forwards;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), #f4d03f);
  color: var(--text-dark);
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--font-size-lg);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  color: var(--text-dark);
  text-decoration: none;
}

.hero-btn-secondary {
  background: transparent;
  color: var(--white);
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--font-size-lg);
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator-hero {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator-hero a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-base);
}

.scroll-indicator-hero a:hover {
  color: var(--white);
  text-decoration: none;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-xs);
  transition: all var(--transition-base);
}

.scroll-arrow::after {
  content: '↓';
  font-size: var(--font-size-lg);
}

.scroll-indicator-hero:hover .scroll-arrow {
  border-color: var(--white);
  transform: translateY(3px);
}

/* Floating Elements */
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

/* Animations */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-modern {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .hero-description {
    font-size: var(--font-size-lg);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .scroll-indicator-hero {
    bottom: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 var(--space-sm);
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-base);
  }
}