/* Reset and luxury variables */
:root {
  --radius: 0.75rem;
  --background: #0e1411;
  --foreground: #f3f5f4;
  --ivory: #f3f5f4;
  --emerald-deep: #123d2b;
  --emerald-glow: #2bb87a;
  --gold: #dfc17b;
  --gold-soft: #c4a96b;
  --card: #16221c;
  --border: rgba(223, 193, 123, 0.12);
  
  --gradient-hero: radial-gradient(
      ellipse at 20% 10%,
      rgba(43, 184, 122, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 90%,
      rgba(223, 193, 123, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #0e1411 0%, #17241f 100%);

  --gradient-gold: linear-gradient(135deg, #efe0b9, #c4a96b);
  --gradient-emerald: linear-gradient(135deg, #123d2b, #2bb87a);

  --shadow-luxe: 0 30px 80px -20px rgba(0,0,0,0.6), 0 8px 24px -12px rgba(0,0,0,0.4);
  --shadow-gold: 0 20px 50px -15px rgba(223, 193, 123, 0.35);
  --shadow-glow: 0 0 60px rgba(43, 184, 122, 0.2);
}

body {
  background-color: var(--background) !important;
  color: var(--foreground) !important;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.01em;
}

/* Glassmorphism */
.glass {
  background: rgba(22, 34, 28, 0.6) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border: 1px solid rgba(223, 193, 123, 0.12) !important;
}

.hairline {
  border: 1px solid rgba(223, 193, 123, 0.2) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-gradient-gold {
  background: var(--gradient-gold) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block;
}

.bg-gradient-hero {
  background: var(--gradient-hero) !important;
}

.bg-gradient-gold {
  background: var(--gradient-gold) !important;
}

.bg-gradient-emerald {
  background: var(--gradient-emerald) !important;
}

.shadow-luxe {
  box-shadow: var(--shadow-luxe) !important;
}

.shadow-gold {
  box-shadow: var(--shadow-gold) !important;
}

.shadow-glow {
  box-shadow: var(--shadow-glow) !important;
}

/* Underline link shimmers */
.link-shimmer {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.link-shimmer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.link-shimmer:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.float-slow {
  animation: float 8s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(223, 193, 123, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(223, 193, 123, 0);
  }
}

.pulse-gold {
  animation: pulse-gold 3s ease-in-out infinite;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee_scroll 40s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

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

.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--ivory) 0%,
    var(--gold) 50%,
    var(--ivory) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text_shimmer 6s linear infinite;
}

@keyframes text_shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0e1411;
}
::-webkit-scrollbar-thumb {
  background: #25332d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-soft);
}
