/*
Theme: Scheef Scroll (VOID Station) — pastel colours, Ford blue accents, skew items.
Recreated from the original void.st WordPress theme (style5152.css).
*/

:root {
  --ford-blue: #1C4FA1;
  --pastel-bg1: #F8F9FB;
  --pastel-bg2: #F1F7FA;
  --pastel-accent: #EAF4F8;
  --text: #2A2E35;
  --accent: #FFD8A8;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(180deg, var(--pastel-bg1) 0%, var(--pastel-bg2) 100%);
}

main {
  padding: 0 2rem;
}

a {
  color: var(--ford-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus { color: #163d7c; }

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.2rem 2em;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-branding {
  max-width: 960px;
  margin: 0 auto;
}

.site-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ford-blue);
  letter-spacing: -0.02em;
}

.site-title a { color: var(--ford-blue); }

.site-description {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.55);
}

.primary-navigation {
  margin-top: 1rem;
}

.primary-navigation .menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.primary-navigation .menu li a {
  color: var(--ford-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.primary-navigation .menu li a:hover,
.primary-navigation .menu li a:focus { color: #163d7c; }
.primary-navigation .menu li.current a { border-bottom: 2px solid var(--ford-blue); }

/* Container with side margins */
.container {
  max-width: 960px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

/* Skew scroll items */
.skew-scroll { overflow: visible; }

.skew-item {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 8px 24px rgba(28, 79, 161, 0.05);
  transform-origin: center top;
  transition: transform 0.45s cubic-bezier(.22, .9, .31, 1), box-shadow 0.3s ease;
}

.skew-item h2 {
  margin-bottom: 0.8rem;
  color: var(--ford-blue);
}

.skew-item h3 {
  margin: 1.2rem 0 0.6rem;
  color: var(--ford-blue);
}

.entry-content p { margin-bottom: 1rem; }
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.5rem 0;
}
.entry-content a { color: var(--ford-blue); }

.post-meta {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
  margin: -0.4rem 0 1rem;
  display: flex;
  gap: 1rem;
}

/* Accent badge */
.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #5a3e25;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Admin */
.admin-form {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.admin-form label { font-weight: 600; display: block; margin-bottom: 0.4rem; }
.admin-form input { margin-bottom: 0.6rem; }
.admin-form button {
  background: var(--ford-blue);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}
.hint { font-size: 0.85rem; color: rgba(0, 0, 0, 0.55); margin-bottom: 0.6rem; }
.flash {
  border-radius: 10px;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.flash.ok { background: var(--pastel-accent); color: var(--ford-blue); }
.flash.error { background: #ffe6e6; color: #8c2f2f; }

/* Footer */
.footer {
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  padding: 3rem 1rem 2rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 640px) {
  .site-title { font-size: 1.3rem; }
  .skew-item { padding: 1.2rem; margin: 1.5rem auto; }
  .container { padding: 0 1.2rem; }
  main { padding: 0 1.2rem; }
}
