/* root.css - Global CSS variables and reset */
:root {
  /* Colors */
  --gold: #d5a851;
  --gold-dark: #b8943a;
  --gold-light: #e8c97a;
  --dark: #0c0c0c;
  --dark-light: #1a1a1a;
  --text-strong: #f0ede4;
  --text-muted: #848461;
  --text-body: #c4c1b0;
  
  /* Shadows */
  --shadow-sm: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 12px 48px rgba(213,168,81,0.08);
  
  /* Border radius */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text-body);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility classes */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-strong { color: var(--text-strong); }
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-8 { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.section-padding {
  padding: 80px 0;
}

.bg-dark-light {
  background: var(--dark-light);
}

/* Loading Overlay */
#loadingOverlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
#loadingOverlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--gold);
  margin-bottom: 20px;
}
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(213,168,81,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -1000px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus {
  top: 20px;
}