@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
  color: #222;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #fafafa;
  
  line-height: 1.6;
}
a { color: #c00; text-decoration: none; }
a:hover { text-decoration: underline; }
.site-top-bar { background: #000;  font-size: 0.85rem; }
.site-top-bar .container { display: flex; justify-content: flex-end; gap: 1rem; padding: 0.5rem 0; }
header { background: #fff; border-bottom: 1px solid #ddd; }
.site-branding { padding: 1rem 0; text-align: center; }
.site-branding h1 { margin: 0; font-size: 1.5rem; }
nav.primary-nav .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; padding: 0.75rem 0; }
nav.primary-nav a { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; color: #222; }
.container { max-width: 900px; margin: 0 auto; padding: 1rem; }
.featured-post { position: relative; height: 60vh; background-size: cover; background-position: center; display: flex; align-items: flex-end; margin-bottom: 2rem; }
.featured-post .overlay { background: rgba(0,0,0,0.5); width: 100%; padding: 2rem; }
.featured-post .overlay h1 { margin: 0;  font-size: 2.5rem; line-height: 1.1; }
.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.post-card {
  width: 100%;
}
.post-card { background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.1); border-radius: 4px; overflow: hidden; }
.post-card img { width: 100%; height: auto; }
.post-card h2 { font-size: 1.2rem; margin: 0.75rem; }
.post-card p { font-size: 0.95rem; margin: 0 0.75rem 1rem; }
footer { background: #fff; border-top: 1px solid #ddd; text-align: center; padding: 1rem 0; font-size: 0.85rem; }

/* Contact form styling */
.contact-form-container {
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.contact-form-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
}
.contact-form-container input[type="submit"] {
  background: #c00;
  
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 3px;
  cursor: pointer;
}
.contact-form-container input[type="submit"]:hover {
  opacity: 0.9;
}
