/* ============================================
   HERO FULLSCREEN COMPONENT
   - Full viewport hero with background image
   - Overlay and centered content
   - Responsive design
   ============================================ */

.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-fullscreen--hero-1 {
  background-image: url('../../images/hero-1.png');
}

.hero-fullscreen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(26, 43, 60, 0.9) 0%, 
    rgba(26, 43, 60, 0.7) 50%, 
    rgba(26, 43, 60, 0.85) 100%);
  z-index: 1;
}

.hero-fullscreen__container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.hero-fullscreen__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--color-secondary-30);
  border-radius: 9999px;
}

.hero-fullscreen__title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero-fullscreen__title-highlight {
  color: var(--color-secondary);
  display: block;
  font-style: italic;
}

.hero-fullscreen__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-fullscreen__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-fullscreen__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.hero-fullscreen__scroll:hover {
  opacity: 1;
}

.hero-fullscreen__scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-fullscreen__scroll-icon {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .hero-fullscreen__title {
    font-size: 4.5rem;
  }

  .hero-fullscreen__description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-fullscreen__title {
    font-size: 5.5rem;
  }

  .hero-fullscreen__label {
    font-size: 0.875rem;
  }
}

@media (max-width: 767px) {
  .hero-fullscreen {
    min-height: 100svh; /* Use svh for mobile browsers */
  }

  .hero-fullscreen__title {
    font-size: 2.5rem;
  }

  .hero-fullscreen__description {
    font-size: 1rem;
  }

  .hero-fullscreen__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-fullscreen__actions .btn {
    width: 100%;
  }
}
