/*
Theme Name: Vilbrun Clean
Theme URI: https://vilbrun.com/
Author: Vilbrun
Description: A clean WordPress theme that leaves the native WordPress login and registration pages untouched for compatibility testing.
Version: 1.1
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: vilbrun-clean
*/

:root{
  --bg:#07111f;
  --panel:#0e1b2f;
  --text:#eef5ff;
  --muted:#9fb0c6;
  --accent:#3b82f6;
  --accent2:#8b5cf6;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:linear-gradient(135deg,#050b15,#0b1930);
  color:var(--text);
}
a{color:inherit}
.site-header{
  padding:18px 24px;
  border-bottom:1px solid rgba(255,255,255,.12);
  background:rgba(5,11,21,.92);
}
.wrap{max-width:1100px;margin:auto}
.brand{font-size:28px;font-weight:800}
.hero{
  padding:80px 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  align-items:center;
}
.card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:28px;
}
h1{font-size:clamp(44px,7vw,76px);line-height:1;margin:0 0 18px}
p{color:var(--muted);line-height:1.7}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
}
.btn-primary{background:linear-gradient(135deg,var(--accent),var(--accent2));color:#fff}
.btn-secondary{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14)}
.posts{padding:20px 24px 70px}
.post-card{margin-bottom:16px}
.site-footer{padding:28px 24px;border-top:1px solid rgba(255,255,255,.1);color:var(--muted)}
@media(max-width:800px){.hero-grid{grid-template-columns:1fr}}
