:root {
  --primary: #1a1a1a;
  --secondary: #f4f4f4;
  --accent: #d4af37; /* Gold for Hi-End feel */
  --text-main: #333333;
  --text-light: #777777;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

/* Custom Utilities */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Transition for images */
.hover-zoom img {
  transition: transform 0.5s ease;
}
.hover-zoom:hover img {
  transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes progressLine {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.5); }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.animate-ken-burns {
  animation: kenBurns 15s ease-out forwards;
}

.slide-progress {
  height: 2px;
  background: white;
  animation: progressLine 5s linear forwards;
}

/* Staggered text delays */
.delay-100 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 600ms !important; }
.delay-700 { transition-delay: 800ms !important; }

/* Swiper Active Slide Content Animations */
.hero-content-wrapper > div > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.swiper-slide-active .hero-content-wrapper > div > *,
.swiper-slide-duplicate-active .hero-content-wrapper > div > * {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Ken Burns */
.swiper-slide img {
    transform: scale(1);
    transition: transform 15s ease-out;
}

.swiper-slide-active img,
.swiper-slide-duplicate-active img {
    animation: kenBurns 20s ease-out forwards;
}

/* Transitions */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s ease;
}
.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

.slide-right-enter-active,
.slide-right-leave-active {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-right-enter-from,
.slide-right-leave-to {
    transform: translateX(100%);
}

.slide-left-enter-active,
.slide-left-leave-active {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-left-enter-from,
.slide-left-leave-to {
    transform: translateX(-100%);
}
