:root {
  --bg: #0b0b0b;
  --text: #f2f2f2;
  --accent: #f6a11a;
  --muted: #777;
}

body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #111;
  border-bottom: 2px solid var(--accent);
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.25rem;
}
.pfp { width: 40px; border-radius: 50%; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: .9rem;
  color: var(--muted);
  border-top: 1px solid #222;
}

/* Blog */
.blog-index { padding: 2rem; }
.blog-index h1 { color: var(--accent); text-align: center; margin-bottom: .5rem; }
.intro { text-align: center; color: var(--muted); margin-bottom: 2rem; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.post_card {
  background: #111;
  padding: 1.5rem;
  border-radius: .5rem;
  border: 1px solid #222;
  transition: all .2s ease;
}
.post_card:hover { transform: translateY(-3px); border-color: var(--accent); }
.post_card h2 { color: var(--accent); margin: 0 0 .5rem; font-size: 1.25rem; }
.post_card .excerpt { color: var(--text); margin-bottom: .5rem; }
.post_card .meta { color: var(--muted); font-size: .8rem; }

/* Blog Post */
.blog-post {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.blog-post h1, .blog-post h2, .blog-post h3 { color: var(--accent); }
.blog-post a { color: var(--accent); text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
  .site-header { flex-direction: column; gap: .5rem; }
  .post_card { padding: 1rem; }
}
/* Hero section */
.hero {
  background: #111;
  padding: 4rem 1.5rem;
  text-align: center;
  border-bottom: 2px solid var(--accent);
}
.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero p {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn-primary:hover {
  background: #ffbb33;
}

/* Socials */
.socials {
  text-align: center;
  padding: 3rem 1rem;
}
.socials h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-icons a {
  color: var(--text);
  border: 1px solid var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-icons a:hover {
  background: var(--accent);
  color: #000;
}

/* Latest posts on home */
.latest-posts {
  padding: 3rem 1rem;
  border-top: 1px solid #222;
}
.latest-posts h2 {
  color: var(--accent);
  text-align: center;
  margin-bottom: 1.5rem;
}
.post-image img {
  width: 100%;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
}

.post_card .thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: .5rem;
  margin-bottom: .75rem;
}
.post-header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.post-header h1 {
  color: var(--accent);
  margin-bottom: .5rem;
  font-size: 2rem;
}
.post-excerpt {
  color: var(--muted);
  font-size: 1.1rem;
}
