/* Hero Slider (Swiper.js) */
.psv-hero {
  position: relative;
  width: 100%;
  height: var(--psv-hero-height, 80vh);
  overflow: hidden;
}

.psv-hero .swiper-slide {
  position: relative;
  overflow: hidden;
}

.psv-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.psv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 49, 66, 0.8) 0%,
    rgba(45, 49, 66, 0.4) 50%,
    rgba(45, 49, 66, 0.2) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10vh;
}

.psv-hero__content {
  text-align: center;
  max-width: var(--container-max, 1200px);
  padding: 0 var(--container-pad, 1rem);
  animation: psv-fade-in-up 0.8s ease forwards;
}

.psv-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.psv-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--color-text-on-dark);
  opacity: 0.9;
  margin: 0 0 1.5rem;
}

.psv-hero__cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-on-dark);
  background-color: var(--color-accent-red);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-button);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.psv-hero__cta:hover,
.psv-hero__cta:focus {
  background-color: #A3172E;
  transform: translateY(-1px);
}

/* Swiper nav customization */
.psv-hero .swiper-button-prev,
.psv-hero .swiper-button-next {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.psv-hero .swiper-button-prev:hover,
.psv-hero .swiper-button-next:hover {
  color: #FFFFFF;
}

.psv-hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.psv-hero .swiper-pagination-bullet-active {
  background: var(--color-accent-red);
}

/* Mobile */
@media (max-width: 767px) {
  .psv-hero {
    height: var(--psv-hero-height, 60vh);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .psv-hero__content {
    animation: none;
  }
}

@keyframes psv-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
