/* css/hero.css */

.hero-section {
  position: relative;
  min-height: calc(100vh - 75px);
  min-height: calc(100svh - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  padding: clamp(32px, 6vw, 72px) 24px 32px;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5vh;
  color: #fff0d6;
  width: 100%;
  padding-inline: 16px;
}

.hero-logo {
  display: block;
  height: 55vh;
  max-height: 520px;
  max-width: 90vw;
  object-fit: contain;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: "Righteous", sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff0d6;
  margin: 0;
}

.hero-content h1 span {
  color: #3e014c;
  font-size: 42px;
  font-weight: 800;
}

.event-date {
  font-family: "Righteous", serif;
  font-size: min(100vw, 7vh);
  font-weight: 400;
  margin: 0;
  color: #fff0d6;
  line-height: 1.1;
}

@media (max-width: 1200px) {
  .hero-wave {
    object-position: center top;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: calc(100vh - 70px);
    min-height: calc(100svh - 70px);
    padding: 24px 20px 16px;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding-inline: 0;
    width: 100%;
  }

  .hero-logo {
    width: min(100%, 700px);
  }

  .event-date {
    font-size: clamp(32px, 6vw, 40px);
  }

  .hero-wave {
    object-position: center top;
  }
}

@media (max-width: 750px) {
  .hero-section {
    min-height: calc(100svh - 65px);
    padding: 24px 16px 8px;
  }

  .hero-logo {
    width: min(100%, 480px);
    max-height: 46vh;
  }

  .event-date {
    font-size: clamp(24px, 8vw, 32px);
  }
}

@media (max-width: 450px) {
  .hero-section {
    padding-top: 20px;
  }

  .hero-logo {
    width: min(100%, 360px);
    max-height: 40vh;
  }

  .event-date {
    font-size: clamp(22px, 8vw, 28px);
  }
}

@media (max-width: 360px) {
  .hero-logo {
    width: min(100%, 320px);
  }
}
