:root {
  --bg: #faf8f5;
  --fg: #1a1612;
  --accent: #8b6914;
  --muted: #6b5c4a;
}

body {
  font-family: "Inter", sans-serif;
  /* background: var(--fg); */
  color: var(--fg);
  overflow-x: hidden;
}

/* Hero Swiper */
.hero-section {
  height: 100vh;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

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

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}

.swiper-slide-active .slide-image {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 8%;
  max-width: 600px;
  color: white;
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s ease 0.3s;
}

/* .swiper-slide-active .slide-content {
        opacity: 1;
        transform: translateY(0);
      } */

.slide-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.slide-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.slide-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 450px;
}

.slide-image {
  transform: none;
  transition: none;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.slide-btn:hover {
  background: var(--fg);
  color: white;
  gap: 1rem;
}

.slide-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.slide-btn:hover svg {
  transform: translateX(4px);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: white;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  color: white;
  font-weight: 600;
  transition: color 0.3s ease;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: var(--fg);
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 40px !important;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 60px;
  background: white;
}

/* Progress Bar */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: white;
  width: 0;
  z-index: 10;
}

.swiper-slide-active .slide-progress {
  animation: progress 4s linear forwards;
}

@keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: white;
  z-index: 20;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: white;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .hero-section {
    border: none;
    padding: 0;
  }

  .slide-content {
    left: 5%;
    right: 5%;
    bottom: 20%;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 640px) {
  .slide-desc {
    display: none;
  }

  .v2 {
    padding: 10px !important;
  }

  .hero-section {
    max-height: 450px;
  }

  .header-logo {
    max-width: 200px;
  }

  .slide-title {
    font-size: 2rem;
  }
}
