/* ================================================
   ENHANCED HERO SECTION STYLES - Mauno Rental
   ================================================ */

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
  color: #ffd700;
  font-size: 1rem;
}

/* Hero Main Title */
.hero-main-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 1rem 0;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 1.5rem 0 2rem 0;
  max-width: 600px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Features List */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 10px 18px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-feature-item i {
  color: #4ade80;
  font-size: 1.1rem;
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.4);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #0d1b2e 0%, #1a365d 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 54, 93, 0.5);
  color: white;
}

.btn-hero-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26, 54, 93, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

.btn-hero-secondary:active {
  transform: translateY(-1px);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Tablet */
@media (max-width: 991px) {
  .hero-main-title {
    font-size: 2.8rem;
  }

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

  .hero-features {
    gap: 1rem;
  }

  .hero-feature-item {
    font-size: 0.95rem;
    padding: 8px 16px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-badge {
    font-size: 0.85rem;
    padding: 6px 16px;
  }

  .hero-badge i {
    font-size: 0.9rem;
  }

  .hero-main-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }

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

  .hero-features {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-feature-item {
    font-size: 0.9rem;
    padding: 8px 14px;
    width: 100%;
    justify-content: center;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-main-title {
    font-size: 1.8rem;
  }

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

  .hero-feature-item {
    font-size: 0.85rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

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

@media print {
  .hero-badge,
  .hero-features,
  .hero-cta-group {
    display: none;
  }

  .hero-main-title {
    color: #000;
    text-shadow: none;
  }

  .hero-subtitle {
    color: #333;
    text-shadow: none;
  }
}

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

/* Focus states for keyboard navigation */
.btn-hero-primary:focus,
.btn-hero-secondary:focus {
  outline: 3px solid #ffd700;
  outline-offset: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-main-title,
  .hero-subtitle,
  .hero-features,
  .hero-cta-group {
    animation: none;
  }

  .hero-feature-item:hover,
  .btn-hero-primary:hover,
  .btn-hero-secondary:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .hero-badge,
  .hero-feature-item {
    border-width: 2px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    border-width: 3px;
  }
}
