#home-show > main {
  max-inline-size: none;
  padding-inline: 0;
}

.home-hero {
  display: grid;
  grid-template-areas: "hero";
  min-block-size: 80vh;
  overflow: hidden;

  .bg {
    animation: home-hero-zoom 30s ease-in-out infinite alternate;
    block-size: 100%;
    grid-area: hero;
    inline-size: 100%;
    object-fit: cover;
  }

  .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    grid-area: hero;
    z-index: 1;
  }

  .content {
    color: #fff;
    grid-area: hero;
    justify-content: center;
    padding-block: var(--wa-space-2xl);
    padding-inline: var(--wa-space-l);
    text-align: center;
    z-index: 2;
  }

  .logo {
    block-size: 100px;
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.4));
  }

  .title {
    color: var(--wa-color-orange-50);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow:
      0 2px 12px rgba(255, 165, 0, 0.3),
      0 2px 8px rgba(0, 0, 0, 0.6);
  }

  .tagline {
    font-size: var(--wa-font-size-xl);
    font-weight: 300;
    letter-spacing: 0.08em;
    opacity: 0.85;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
  }

  .description {
    font-size: var(--wa-font-size-l);
    line-height: 1.6;
    max-inline-size: 550px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  }
}

@keyframes home-hero-zoom {
  from {
    scale: 1;
  }
  to {
    scale: 1.1;
  }
}

.home-sections {
  margin-inline: auto;
  max-inline-size: 960px;
  padding-block: var(--wa-space-2xl);
  padding-inline: var(--wa-space-l);

  .heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  }
}

.feature-card {
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;

  &:hover {
    box-shadow: var(--wa-shadow-l);
    transform: translateY(-4px);
  }

  .title {
    color: var(--wa-color-orange-50);
  }
}

.home-cta {
  background-color: color-mix(in srgb, var(--wa-color-surface-default) 80%, transparent);
  border-radius: var(--wa-border-radius-l);
  padding: var(--wa-space-2xl);

  .text {
    font-size: var(--wa-font-size-l);
    opacity: 0.8;
  }
}
