:root {
  --bg:           #0d150d;
  --bg-raised:    #111a11;
  --bg-card:      #152215;
  --border:       #2a4a2a;
  --text:         #e0ece0;
  --text-muted:   #7a9a7a;
  --green:        #2d7a3a;
  --green-light:  #3d9a4a;
  --green-dim:    #1f5528;
  --white:        #ffffff;
  --radius:       6px;
  --max-width:    900px;
  --font:         system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
}

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

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--bg-raised);
  border-bottom: 2px solid var(--green);
  padding: 0.85rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-light);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.site-title:hover { color: var(--white); }

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.site-nav a:hover { color: var(--green-light); }

/* ─── Main ───────────────────────────────────────────────────────────────── */
.page-content {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1 {
  color: var(--white);
  font-size: 1.9rem;
  margin: 0 0 0.4rem;
  line-height: 1.2;
}

h2 {
  color: var(--green-light);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 2rem 0 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.3rem;
}

p { margin: 0.75rem 0; }

a { color: var(--green-light); text-decoration: none; }
a:hover { color: var(--white); text-decoration: underline; }

ul { padding-left: 1.4rem; margin: 0.5rem 0; }
li { margin: 0.3rem 0; }

img { max-width: 100%; height: auto; border-radius: var(--radius); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  margin-bottom: 2.5rem;
}

.hero .subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

/* ─── Session cards ──────────────────────────────────────────────────────── */
.sessions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
  .sessions { grid-template-columns: 1fr; }
}

.session-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}

.session-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.session-card .day {
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
}

.session-card p {
  font-size: 0.93rem;
  color: var(--text);
  margin: 0.4rem 0;
}

.session-card a {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 1rem;
  background: var(--green-dim);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.session-card a:hover { background: var(--green); text-decoration: none; }

/* ─── Links section ──────────────────────────────────────────────────────── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.link-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.link-item a { color: var(--text); }
.link-item a:hover { color: var(--green-light); text-decoration: none; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
