/* DFW Lawn Care Pros - Blog Styles */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Inter:wght@400;500&display=swap');

:root {
  --lime: #b8ff52;
  --bg: #0a0a0a;
  --card: #141414;
  --border: #1e1e1e;
  --text: #e0e0e0;
  --text-muted: #888;
  --text-dim: #555;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV BAR */
.blog-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-nav a.logo {
  color: var(--lime);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.blog-nav .nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.blog-nav .nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.blog-nav .nav-links a:hover { color: #fff; }
.blog-nav .nav-cta {
  background: var(--lime);
  color: #0a0a0a;
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
}

/* BLOG INDEX */
.blog-hero {
  padding: 10rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.blog-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.blog-hero h1 span { color: var(--lime); }
.blog-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.blog-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.blog-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.blog-card:first-child { border-top: 1px solid var(--border); }
.blog-card:hover { opacity: 0.7; }
.blog-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.blog-card .card-tag {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.blog-card .card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.blog-card .card-date {
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ARTICLE */
.article-header {
  padding: 10rem 2rem 3rem;
  max-width: 720px;
  margin: 0 auto;
}
.article-header .tag {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.article-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.article-header .meta {
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.article-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1rem;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.8rem;
}
.article-body p {
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 1rem;
}
.article-body a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CALLOUT BOX */
.callout {
  background: var(--card);
  border-left: 3px solid var(--lime);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}
.callout p { margin-bottom: 0; color: var(--text-muted); }
.callout strong { color: #fff; }

/* CTA BANNER */
.blog-cta {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border-radius: 4px;
}
.blog-cta h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.blog-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.blog-cta a.cta-btn {
  display: inline-block;
  background: var(--lime);
  color: #0a0a0a;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
}

/* FOOTER */
.blog-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.blog-footer a { color: var(--lime); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 640px) {
  .blog-nav { padding: 0 1rem; }
  .blog-nav .nav-links { gap: 0.8rem; }
  .blog-nav .nav-links a { font-size: 0.7rem; }
  .blog-hero { padding: 8rem 1.2rem 3rem; }
  .blog-grid { padding: 0 1.2rem 4rem; }
  .blog-card { grid-template-columns: 1fr; gap: 0.5rem; }
  .blog-card .card-date { order: -1; }
  .article-header { padding: 8rem 1.2rem 2rem; }
  .article-body { padding: 0 1.2rem 3rem; }
}
