/* Simple, clean styles for Wespenwald site */

:root {
  --bg: #0f1115;
  --panel: #151821;
  --text: #e6eaf2;
  --muted: #a7b0c0;
  --accent: #79b8ff;
  --accent-strong: #4aa3ff;
  --border: #242938;
  --radius: 10px;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Base */
html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Layout */
main, header { max-width: 880px; margin: 0 auto; padding: 0 20px; }

/* Centered landing */
.center { min-height: 100vh; display: grid; place-content: center; gap: 18px; text-align: center; padding: 40px 20px; }
.center h1 { font-size: 36px; margin: 0 0 8px; letter-spacing: 0.6px; }
.center p { color: var(--muted); margin: 0; }

/* Header */
header { padding: 28px 20px 10px; }
header h1 {
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 16px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
nav a:hover { color: var(--text); background: rgba(121,184,255,0.1); }

/* Sections */
section { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin: 18px 0; box-shadow: var(--shadow); }
section h2, section h3 { margin-top: 0; }
section p { color: var(--muted); }

/* Linktree */
.linktree { display: grid; gap: 14px; width: min(520px, 92vw); margin-inline: auto; }
.link-item {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}
.link-item:hover { transform: translateY(-1px); background: #1a1f2b; box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.link-item:active { transform: translateY(0); }
.link-item.primary { background: linear-gradient(180deg, rgba(121,184,255,0.12), rgba(74,163,255,0.10)); border-color: #2a3850; }
.link-item.disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }

/* Download link as button */
a[download] {
  display: inline-block;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #08111f;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(74,163,255,0.35);
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}
a[download]:hover { transform: translateY(-1px); filter: brightness(1.03); box-shadow: 0 6px 20px rgba(74,163,255,0.45); }
a[download]:active { transform: translateY(0); }

/* Links */
a { color: var(--accent); }
a:hover { color: var(--accent-strong); }

/* Responsive */
@media (max-width: 560px) {
  header { padding-top: 22px; }
  header h1 { font-size: 24px; }
  section { padding: 18px; }
}