/* Hero Section Styles */

.hero-section {
  background-color: #0e3880e6;
  color: #ffffff;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.hero-title .rotating-text {
  display: inline-block;
  min-width: 150px;
  text-decoration: underline;
  text-decoration-color: #F9B233;
  text-underline-offset: 8px;
  transition: opacity 0.5s ease;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
  background-color: #0e3880e6;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: #ffffff;
  color: #0e3880;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Search Box */
.hero-search-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-search-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.btn-search {
  background-color: #ffffff;
  color: #0e3880;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
}

.btn-search:hover {
  background-color: #F9B233;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-search i {
  font-size: 1.25rem;
}

/* Hero Popular Searches */
.hero-popular-searches {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.popular-searches-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.popular-search-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.3rem 0.63rem;
  border-radius: 18px;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.popular-search-badge:hover {
  background-color: #F9B233;
  color: #ffffff;
  border-color: #F9B233;
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-hero {
    width: 100%;
    padding: 0.875rem 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-title .rotating-text {
    min-width: 100px;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
}
