/* Hero styles */

.hero {
  width: 100vw;
  height: 100vh;
  padding: 0.25rem;
  margin-bottom: 2rem;
}

.hero-inner {
  width: 100%;
  height: 100%;
  padding: 1rem;
  inset: 0;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  z-index: 0;
  object-fit: cover;
}

.hero-video-container {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 120%;
}

.hero-video {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: var(--twilight-dark);
  background-image: linear-gradient(to top right, var(--teal-dark) 0%, var(--twilight-dark) 50%);
  opacity: 0.6;
}

.hero-content {
  padding-top: 2.5rem;
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-content h1 {
  color: var(--white);
}

.hero-content p {
  color: var(--grey-200);
  text-wrap: balance;
}

.hero-content span {
  color: var(--frost);
}

.hero-content .btn {
  margin-top: 0.6rem;
}

/* width >= 400px */
@media (min-width: 25rem) {
}

/* width >= 640px */
@media (min-width: 40rem) {
  .hero {
    padding: 0.5rem;
  }
}

/* width >= 768px */
@media (min-width: 48rem) {
  .hero {
    padding: 1rem;
  }
}

/* width >= 1024px */
@media (min-width: 64rem) {
}

/* width >= 1280px */
@media (min-width: 80rem) {
}

/* width >= 1536px */
@media (min-width: 96rem) {
}

/* width >= 1920px */
@media (min-width: 120rem) {
}
