/* reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0b0f1a;
  color: white;
}

/* hero section fills viewport */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* swiper container – full size */
.hero .swiper {
  width: 100%;
  height: 100%;
}

/* each slide: positioned for parallax layers */
.hero .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Parallax background layer */
/* .parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */


.parallax-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.parallax-bg picture,
.parallax-bg img {
  width: 100%;
  height: 100%;
}

.parallax-bg img {
  object-fit: cover;
}



/* dark overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background 0.3s ease;
}

/* text content container - also parallax (optional depth) */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 2rem 3rem;
  text-align: center;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 12vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  /* margin-bottom: 1.5rem; */
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: clamp(.9rem, 4vw, 1.8rem);
  margin-bottom: 0;
  /* no button, so remove extra space */
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* fade up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* navigation & pagination custom styling */
.hero .swiper-button-prev,
.hero .swiper-button-next {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: background 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.hero .swiper-button-prev:after,
.hero .swiper-button-next:after {
  font-size: 1.5rem;
  font-weight: bold;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero .swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
  width: 12px;
  height: 12px;
  transition: all 0.2s;
}

.hero .swiper-pagination-bullet-active {
  opacity: 1;
  background: white;
  width: 30px;
  border-radius: 8px;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    display: none;
  }
}

/* small loader styling (optional, appears only while fetching) */
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.2);
}