/* Luxury Spaceorra Theme Custom Styles */

:root {
  --color-luxury-cream: #FDFBF7;
  --color-luxury-beige: #F5EFEB;
  --color-luxury-gold: #C5A880;
  --color-luxury-goldLight: #E5D6C0;
  --color-luxury-goldDark: #A68B62;
  --color-luxury-charcoal: #1E1E1E;
  --color-luxury-charcoalLight: #2D2D2D;
  --color-luxury-bronze: #8C7A6B;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--color-luxury-cream);
  color: var(--color-luxury-charcoal);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: "Playfair Display", serif;
}

.font-accent {
  font-family: "Outfit", sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
  background: #C5A880;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #A68B62;
}

/* Gold Gradient Utilities */
.gold-gradient {
  background: linear-gradient(135deg, #C5A880 0%, #A68B62 100%);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #C5A880 0%, #A68B62 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover Zoom effect */
.hover-zoom {
  overflow: hidden;
}
.hover-zoom img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-zoom:hover img {
  transform: scale(1.08);
}

/* Timeline Custom Styles */
.timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #C5A880;
  border-radius: 50%;
}

/* Scroll Reveal Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes scaleUp {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.animate-fade-in-up {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-down {
  animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-up {
  animation: scaleUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}
