/* style.css — Camping-Vibe with Clearer Headlines */
@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Open+Sans&display=swap');

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1f2d24 0%, #3a5a40 100%);
  font-family: 'Open Sans', system-ui, sans-serif;
  color: #f0f4ef;
  padding: 1rem;
}

#container {
  background: rgba(38, 50, 39, 0.95);
  border: 1px solid #4f6f4a;
  border-radius: 0.75rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  max-width: 800px;
  width: 100%;
  padding: 2rem;
  position: relative;
}

h1 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  text-align: center;
  color: #e8eaed;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Enhanced headlines */
#summary h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 2.5rem;
  padding: 0.5rem;
  border-left: 4px solid #f4d35e;
  background-color: rgba(244, 211, 94, 0.15);
  color: #ffffff;
  line-height: 1.2;
}

#summary p {
  margin-top: 1rem;
  line-height: 1.6;
  color: #e8eaed;
}

#summary a {
  color: #f4d35e;
  text-decoration: none;
  border-bottom: 1px dashed #f4d35e;
}

#summary a:hover {
  color: #ffffff;
  border-bottom-style: solid;
}

#timestamp {
  margin-top: 2rem;
  font-size: 0.875rem;
  text-align: right;
  color: #b0b5af;
}

@media (max-width: 600px) {
  #container {
    padding: 1rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  #summary h2 {
    font-size: 1.6rem;
  }
}