/* ==========================================================================
   FUGLELYDE.DK — SHARED DESIGN SYSTEM (NATURE POSTER)
   ========================================================================== */

:root {
  /* Colors */
  --bg:          #fafaf8;
  --bg-card:     #ffffff;
  --text:        #111111;
  --text-mid:    #555555;
  --text-light:  #999999;
  
  --green:       #1a3a2a;
  --green-mid:   #2d5a3d;
  --green-light: #4a7c5c;
  
  --border:      #e4e4e0;
  --border-dark: #c8c8c0;
  --accent:      #c9a96e; /* Gold-ish accent */
  --yellow:      #fdf1c0; /* For highlighting */

  /* Typography */
  --font-main:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:  'JetBrains Mono', 'SF Mono', 'Menlo', monospace;

  /* Layout & Utils */
  --max-width:   820px;
  --radius:      4px;
  --radius-sm:   2px;
  --shadow:      0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.08);
}

/* ── Reset Enhancements ─────────────────────────────────────────────────── */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Poster Typography ───────────────────────────────────────────────────── */
h1, h2, h3, .poster-title {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.mono {
  font-family: var(--font-mono);
}

/* ── Common Components ───────────────────────────────────────────────────── */

/* Cards as "Plates" */
.poster-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* Buttons */
.btn-poster {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: var(--radius);
  text-decoration: none;
}

.btn-poster:hover {
  background: var(--green);
  color: white;
}

.btn-poster--primary {
  background: var(--green);
  color: white;
}

.btn-poster--secondary {
  border-color: var(--border-dark);
  color: var(--text-mid);
}

.btn-poster--secondary:hover {
  background: var(--bg);
  border-color: var(--green);
  color: var(--green);
}
