/* Google Fonts Import: Inter & Playfair Display for headers */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Luxury Earthy Color Palette */
  --color-primary: #0B2B20;         /* Forest Emerald */
  --color-primary-dark: #05140F;    /* Deep Forest Black */
  --color-primary-light: #164234;   /* Sage Emerald */
  --color-secondary: #C5A059;       /* Brushed Gold */
  --color-secondary-light: #D4B675; /* Cream Gold */
  --color-bg-dark: #05120F;         /* Dark Forest Background */
  --color-bg-light: #F7F6F3;        /* Warm Cream/Beige Background */
  --color-card-bg: rgba(11, 43, 32, 0.08); /* Soft Glassmorphic Base */
  --color-card-hover: rgba(11, 43, 32, 0.15);
  --color-white: #FFFFFF;
  --color-text: #1F2B26;            /* Charcoal Forest (Dark) */
  --color-text-light: #ECE9E4;      /* Soft Warm Cream (Light) */
  --color-text-muted: #6A7B74;      /* Muted Sage Grey */
  --color-border: rgba(197, 160, 89, 0.25); /* Brushed Gold Border */
  --color-border-active: rgba(197, 160, 89, 0.55);
  
  /* Status Colors */
  --color-success: #5E7D63;         /* Sage Success */
  --color-warning: #D4B675;         /* Muted Gold Warning */
  --color-danger: #A64B44;          /* Terracotta Red Danger */
  --color-info: #4A6E8A;            /* Slate Blue Info */

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* System Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  
  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
  border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* Base Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.serif-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  color: var(--color-secondary);
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--color-card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  background: var(--color-card-hover);
  border-color: var(--color-border-active);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Standard Premium Gold Button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #A2821F 100%);
  color: var(--color-bg-dark);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.7rem 1.7rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

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

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

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

/* Badge tags */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-pending {
  background: rgba(241, 196, 15, 0.15);
  color: var(--color-warning);
  border: 1px solid rgba(241, 196, 15, 0.3);
}

.badge-approved {
  background: rgba(46, 204, 113, 0.15);
  color: var(--color-success);
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.badge-rejected {
  background: rgba(231, 76, 60, 0.15);
  color: var(--color-danger);
  border: 1px solid rgba(231, 76, 60, 0.3);
}
