:root {
  --primary-color: #1a1a1a;
  --secondary-color: #555;
  --accent-color: #0060df;
  /* WordPress-like blue links or neutral */
  --bg-color: #ffffff;
  --text-color: #2c3338;
  --header-bg: #ffffff;
  --nav-link-color: #111;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  /* WordPress default stack */
  --font-heading: 'Merriweather', Georgia, serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background-color: var(--header-bg);
  padding: 2rem 2rem;
  /* More spacious */
  text-align: center;
  /* WordPress sites often center header */
  border-bottom: 1px solid #ddd;
}

.site-branding {
  margin-bottom: 1.5rem;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: #000;
  margin: 0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.site-description {
  color: #666;
  font-size: 1rem;
  margin-top: 0.5rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

nav a {
  text-decoration: none;
  color: var(--nav-link-color);
  font-weight: 500;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.7;
  color: #000;
}

main {
  max-width: 800px;
  /* Standard blog width */
  margin: 3rem auto;
  padding: 0 1.5rem;
  background: white;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

article {
  margin-bottom: 4rem;
}

.hero-section {
  text-align: left;
  /* Blogs usually align left */
  padding: 0 0 2rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 3rem;
}

.contact-info {
  background: #f9f9f9;
  padding: 2rem;
  border: 1px solid #eee;
  margin-top: 2rem;
}

footer {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #f7f7f7;
  color: #666;
  font-size: 0.9rem;
  margin-top: 4rem;
  border-top: 1px solid #eee;
}

footer p {
  margin: 0.5rem 0;
}

footer a {
  color: #444;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .site-title {
    font-size: 1.75rem;
  }
}

/* Home Page Navigation Cards */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.nav-card {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.nav-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.nav-card-content {
  padding: 1.5rem;
}

.nav-card h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #000;
}

.nav-card p {
  color: #666;
  margin-bottom: 0;
}