body {
  font-family: 'Georgia', serif;
  background: #fdfaf6;
  color: #3b2f2f;
  padding: 40px;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-top: 60px;
  color: #594f3b;
  border-bottom: 2px solid #d6c9b3;
  padding-bottom: 10px;
}

.entry {
  background: #fffdf8;
  border: 1px solid #ece0d1;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 25px;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.entry:hover {
  transform: scale(1.01);
}

.entry img {
  max-width: 10em;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  max-height: 350px;
}

.date {
  font-weight: bold;
  color: #7d5a50;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.journal-text {
  white-space: pre-wrap;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #2e2b29;
    color: #eee7df;
  }

  .entry {
    background: #3c3835;
    border-color: #5a524a;
  }

  h2 {
    color: #e2d6c4;
    border-color: #726659;
  }

  .date {
    color: #d0bfae;
  }
}