/* Custom properties and base styles */
:root {
  --color-gold: #D4AF37;
  --color-gold-light: #F3E5AB;
  --color-gold-dark: #AA8C2C;
  --color-luxury-black: #0A0A0A;
  --color-luxury-charcoal: #1A1A1A;
  --color-luxury-gray: #2D2D2D;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-luxury-black);
  color: white;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-luxury-black);
}
::-webkit-scrollbar-thumb {
  background: var(--color-luxury-gray);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Glassmorphism Utilities */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.glass-card-hover {
  transition: all 0.3s ease;
}
.glass-card-hover:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
}

/* Text Gradients */
.text-gradient {
  background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.bg-gradient-gold {
  background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold));
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 0.5rem;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* Hide scroll progress by default, shown via JS */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--color-gold);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s ease;
}
