/* Ostbloggen - Stilmall */

:root {
  --primary: #e0a500;
  --primary-dark: #b98200;
  --cream: #fdf6e3;
  --dark: #3a2f1b;
  --text: #4a4033;
  --muted: #8a7d68;
  --white: #fffdf7;
  --border: #eaddc4;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Sidhuvud */
header {
  background-color: var(--dark);
  color: var(--cream);
  padding: 2rem 1rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
}

header h1 a {
  color: var(--cream);
}

header p.tagline {
  color: var(--primary);
  font-style: italic;
  margin-top: 0.4rem;
}

/* Navigering */
nav {
  background-color: var(--primary-dark);
  text-align: center;
  padding: 0.8rem;
}

nav a {
  color: var(--white);
  margin: 0 1rem;
  font-weight: bold;
  font-size: 1.05rem;
}

nav a:hover {
  color: var(--cream);
  text-decoration: underline;
}

/* Innehåll */
main {
  max-width: 800px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.hero p {
  color: var(--muted);
  font-size: 1.15rem;
}

/* Blogginlägg-kort */
article.post-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.6rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

article.post-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

article.post-card .meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 0.8rem;
}

article.post-card p {
  margin-bottom: 1rem;
}

.read-more {
  font-weight: bold;
}

/* Enskilt inlägg */
article.full-post h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

article.full-post .meta {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

article.full-post h3 {
  color: var(--primary-dark);
  margin: 1.5rem 0 0.5rem;
}

article.full-post p {
  margin-bottom: 1.2rem;
}

article.full-post ul {
  margin: 0 0 1.2rem 1.5rem;
}

/* Sidorutor */
aside.related {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1.6rem;
  margin-top: 2rem;
}

aside.related h4 {
  color: var(--dark);
  margin-bottom: 0.6rem;
}

aside.related ul {
  list-style: none;
}

aside.related li {
  margin-bottom: 0.4rem;
}

/* Sidfot */
footer {
  background-color: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

footer a {
  color: var(--primary);
}

footer .footer-links {
  margin-bottom: 0.8rem;
}

footer .footer-links a {
  margin: 0 0.8rem;
}
