/* Base layout */
body {
  background-color: #f8f8f8;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 2rem;
  line-height: 1.6;
  text-align: center;
}

/* Logo image */
.logo {
  max-width: 250px;
  display: block;
  margin: 0 auto 1rem auto;
}

/* Subtitle under site title */
.subtitle {
  font-style: italic;
  color: #f26d5b; /* soft coral for branding */
  margin-bottom: 2rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9em;
  color: #999;
}

/* Links and paragraph */
p,
a {
  color: #2b6c6f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Optional: Make header image responsive */
header img {
  display: block;
  margin: 0 auto;
  max-width: 250px; /* Matches logo class, acts as backup */
}
