/* =================================================================
   HERO SECTION
   ================================================================= */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;

  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.3) brightness(0.8);
  }

  .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(41, 37, 34, 0.5) 0%,
      rgba(168, 161, 158, 0.3) 50%,
      rgba(243, 240, 232, 0.4) 100%
    );
    z-index: -1;
  }
}

.hero__content {
  text-align: center;
  color: var(--color-white);
  max-width: 600px;
  padding: 0 var(--spacing-md);
  animation: fadeInUp 1s ease;

  .hero__title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
}

.hero__scroll {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;

  .hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    opacity: 0.8;
    transition: var(--transition);

    &:hover {
      opacity: 1;
      transform: translateY(-2px);
    }
  }
}

.hero__scroll-text {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
