@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes moveRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.mist-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 15;
  pointer-events: none;
}

.mist-track {
  position: absolute;
  width: 200%;
  height: 100%;
  display: flex;
  will-change: transform;
}

.mist-shape {
  width: 50%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.mist-shape::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(55px);
}

.track-1 {
  bottom: 0;
  animation: moveLeft 40s linear infinite;
  z-index: 1;
  opacity: 0.4;
}

.track-1 .mist-shape::after {
  width: 120%;
  height: 300px;
  left: -10%;
  bottom: -20px;
}

.track-2 {
  bottom: 100px;
  animation: moveRight 25s linear infinite;
  opacity: 0.3;
  z-index: 2;
}

.track-2 .mist-shape::after {
  width: 90%;
  height: 180px;
  left: 5%;
  bottom: 0;
}

.track-3 {
  bottom: -50px;
  animation: moveLeft 15s linear infinite;
  opacity: 0.35;
  z-index: 3;
}

.track-3 .mist-shape::after {
  width: 140%;
  height: 250px;
  left: -20%;
  bottom: 0;
}

.hero-description-text {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(35, 35, 38, 0.9) 0%,
    rgba(35, 35, 38, 0.4) 40%,
    rgba(35, 35, 38, 0.5) 100%
  );
  z-index: 10;
}

.text-glow {
  text-shadow:
    0 0 40px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 0, 0, 0.3);
}

.experience-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.glass-card {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.scrolled-nav {
  background-color: rgb(48, 48, 51) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

::selection {
  background-color: #d4af37;
  color: white;
}

.swiper-pagination-bullet-active {
  background-color: #d4af37 !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.5);
  opacity: 0.6;
  transition: 0.3s;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  filter: invert(0);
}

body {
  background-color: #f3f1ec;
}

.nav-scrolled {
  background-color: #303033 !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #d4af37 !important;
}
.swiper-pagination-bullet-active {
  background-color: #d4af37 !important;
}

.breadcrumb-separator::before {
  content: "/";
  margin: 0 0.5rem;
  color: #d4af37;
}

@keyframes scroll-left-right-infinite {
  0% {
    transform: translateX(-33.333%);
  }
  100% {
    transform: translateX(0);
  }
}

.animate-infinite-scroll {
  animation: scroll-left-right-infinite 30s linear infinite;
  display: flex;
  width: max-content;
}

.group:hover .animate-infinite-scroll {
  animation-play-state: paused;
}


.map-filter {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.map-filter:hover {
  filter: grayscale(0%);
}


.bg-radial-dark {
  background: radial-gradient(circle at center, #4a4a4d 0%, #232326 100%);
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

p, li, span {
  font-family: 'Urbanist', sans-serif;
}


.price-badge {
  display: inline-block;
  background-color: #f97316; 
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
  transition: transform 0.3s ease;
}

.price-badge:hover {
  transform: scale(1.05);
}


@keyframes sr-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.92); opacity: 0.75; }
}

@keyframes sr-dot-bounce {
  0%, 80%, 100% { transform: translateY(0);   opacity: 0.4; }
  40%           { transform: translateY(-8px); opacity: 1;   }
}

#sr-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a2e1a 0%, #243524 60%, #2c3e1f 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
  opacity: 1;
  visibility: visible;
}

#sr-preloader.sr-preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sr-preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.sr-preloader__logo {
  width: 140px;
  height: auto;
  animation: sr-pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.35));
}

.sr-preloader__dots {
  display: flex;
  gap: 10px;
}

.sr-preloader__dots span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4af37;
  opacity: 0.4;
  animation: sr-dot-bounce 1.3s ease-in-out infinite;
}

.sr-preloader__dots span:nth-child(2) { animation-delay: 0.2s; }
.sr-preloader__dots span:nth-child(3) { animation-delay: 0.4s; }
