/* Frontend styles for the hero section */
.hero-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-section-bg {
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-section h2 {
  font-size: 6.94vw;
  font-weight: 700;
  margin: 0;
  color: white;
  text-transform: capitalize;
}

.hero-section img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-section a {
  font-family: "Poppins", sans-serif;
  background: var(--theme-button-light);
  font-weight: 600;
  color: white;
  padding-bottom: 20px;
  padding: 13px 54px;
  border: 3px solid var(--theme-button-border);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section h2 {
    font-size: 28px;
    padding-top: 20px;
  }

  .hero-section a {
    font-size: 14px;
    padding: 8px 30px;
    border: 1px solid var(--theme-button-border);
    margin-top: 30px;
  }
}
