/* Global Variables */
:root {
  --bg: #f7f4ee;
  --card-bg: #ffffff;

  --midnight: #0f1b2d;
  --midnight-2: #16263c;

  --gold: #d4af37;
  --gold-soft: #f1d47a;

  --text: #101828;
  --muted: #667085;

  --border: rgba(15, 27, 45, 0.12);
  --shadow: 0 10px 30px rgba(15, 27, 45, 0.08);

  --radius: 18px;
  
  --font-serif: 'Georgia', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--midnight);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gold { color: var(--gold); }
.text-midnight { color: var(--midnight); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

.hidden { display: none !important; }

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

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}
