.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background-color: #000000;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 50%;
  color: #FFFFFF;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 1rem 1rem 1rem 0;
}

.hero-button.primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.hero-button.primary:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--glow-color);
}

.hero-button.secondary {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-button.secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.hero-slider {
  width: 45%;
  position: relative; /* Needed for overlay positioning */
}

.swiper-container {
  width: 100%;
  padding: 50px 0;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: auto;
  height: 450px;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  position: relative; /* Needed for overlay positioning */
}

.swiper-slide-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.swiper-slide:hover .slide-overlay {
    opacity: 1;
}

.slide-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.slide-overlay p {
    margin: 0;
    font-size: 0.9rem;
}

.text-brand {
  color: #00BFFF
}

.text-yellow-500, .fill-yellow-500 {
  color: yellow;
}

.hero-foot {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: calc(0.25rem * 8);
  opacity: 80%;
  margin-top: 0.5rem;
}

.hero-foot-text {
  gap: calc(0.25rem * 2);
  display: flex;
  align-items: center;
}


@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }

  .hero-slider {
    width: 100%;
  }

  .swiper-slide {   
    height: 350px;
    opacity: inherit;
  }
}
