/*
Theme Name: Dolo Ventures — One Page
Theme URI: https://doloventures.com
Author: Colm Dolan
Description: Ultra‑simple, single‑page WordPress theme inspired by minimalist capital sites. Sections: Hero, About, Thesis, Criteria, Portfolio, Contact.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dolo-onepage
Tags: one-page, minimal, business, landing
*/

:root {
  --bg: #0b0f17;        /* near-black slate */
  --ink: #e5e7eb;       /* light grey text */
  --muted: #94a3b8;     /* slate-400 */
  --accent: #38bdf8;    /* sky-400 */
  --card: #111827;      /* slate-900 */
  --max: 920px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: #fff; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(148,163,184,0.15);
  background: rgba(11,15,23,0.85); backdrop-filter: blur(6px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .02em; }
.brand img { width: 28px; height: 28px; }
.menu a { margin-left: 18px; color: var(--muted); }
.menu a:hover { color: #fff; }

.hero {
  padding: 120px 0 80px;
  text-align: center;
}
.kicker {
  color: var(--accent); letter-spacing: .14em; text-transform: uppercase; font-size: 12px; font-weight: 600;
}
h1 { font-size: 48px; line-height: 1.1; margin: 10px 0 8px; }
.lead { color: var(--muted); font-size: 18px; max-width: 720px; margin: 0 auto; }
.cta {
  margin-top: 24px; display: inline-block; padding: 10px 16px; border-radius: 999px;
  background: var(--accent); color: #001018; font-weight: 700;
}

.section { padding: 64px 0; border-top: 1px solid rgba(148,163,184,0.1); }
h2 { font-size: 28px; margin: 0 0 8px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 16px; }
.card { background: var(--card); border: 1px solid rgba(148,163,184,0.12); border-radius: var(--radius); padding: 18px; }
.card h3 { margin: 6px 0 6px; font-size: 18px; }
.small { color: var(--muted); font-size: 14px; }

.footer { padding: 40px 0 80px; text-align: center; color: var(--muted); }

.badge {
  display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius: 12px;
  border:1px solid rgba(148,163,184,0.2); background: rgba(17,24,39,0.6);
}
.badge svg { width:18px; height:18px; }
.separator { height: 1px; background: rgba(148,163,184,0.12); margin: 24px 0; }
