/* Layout Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  background-color: #fffdf6;
  color: #3e3e3e;
  padding: 1em;
}

.container {
  max-width: 960px;
  margin: auto;
}

header {
  background-color: #ffebee;
  text-align: center;
  padding: 2em 1em;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header h1 a {
  text-decoration: none;
  color: #b71c1c;
  font-size: 2.5em;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 1em;
}

nav a {
  text-decoration: none;
  color: #d84315;
  font-weight: bold;
}

main {
  padding: 2em 0;
}

article {
  margin-bottom: 3em;
}

.post-date {
  font-size: 0.9em;
  color: #757575;
  margin-bottom: 0.5em;
}

.post-content h2 {
  font-size: 1.6em;
  color: #4e342e;
  margin-bottom: 1em;
}
figure {
  margin: 1em 0;
  text-align: center;
}
figure img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
figcaption {
  font-size: 0.9em;
  color: #616161;
  margin-top: 0.5em;
}
iframe {
  display: block;
  margin: 2em auto;
  max-width: 100%;
}
footer {
  background-color: #fce4ec;
  padding: 1em;
  text-align: center;
  border-radius: 8px;
}
footer a {
  text-decoration: none;
  color: #ad1457;
  font-weight: bold;
}
