@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Montserrat:wght@400;600;700&family=Lora:wght@400;500;700&display=swap');

:root {
  --bg: #0a0e13;
  --surface: #111825;
  --surface-2: #1a2334;
  --text: #e8eef5;
  --text-muted: #a8b5c7;
  --text-faint: #6b7587;
  --accent: #e8e8e8;
  --accent-dim: #b8b8b8;
  --accent-glow: rgba(232, 232, 232, 0.2);
  --border: rgba(232, 232, 232, 0.08);
  --divider: rgba(232, 238, 245, 0.05);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lora', serif;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Limelight', serif;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 8vw, 4rem); }
h2 { font-size: clamp(1.75rem, 5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 3.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
}

blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Lora', serif;
}

cite {
  font-style: normal;
  color: var(--text-muted);
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
