/* === Hero Section === */
.hero {
  position: relative;
  text-align: center;
  color: #333;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
}

.hero-text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #222;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1em 2em;
  border-radius: 8px;
}

.hero-image {
  width: 100%;
  height: 250px; /* adjust to crop more or less vertically */
  overflow: hidden;
  margin: 2rem 0;
  border-radius: 6px; /* optional: match your site's softness */
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* change this to top, bottom, or percentages */
  display: block;
  filter: grayscale(100%);
}

/* === Horizontal Rule === */
hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #ccc;
}

/* Apply to all unordered and ordered list items */
ul li, ol li {
  line-height: 1.7; /* Or use a unit like 24px if you prefer fixed spacing */
}

/* === Blockquote === */
blockquote {
  border-left: 4px solid #ccc;
  margin: 1em 0;
  padding: 0.5em 1em;
  color: #555;
  background-color: #f9f9f9;
}


/* === Footer === */
.site-footer {
  text-align: center;
  font-size: 0.9em;
  margin-top: 3em;
  padding-top: 2em;
  padding-bottom: 2em;
  border-top: 1px solid #ccc;
  color: #555;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background-color: white;
  color: #222;
  margin: 0;
  padding: 0;
}
a {
  color: #002b36;
}
p {
  line-height: 1.7;
  margin-bottom: 1.2em;
}
h1, h2, h3 {
  font-family: inherit;
  font-weight: normal;
  color: #222;
}
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
nav a {
  color: #002b36;
  text-decoration: none;
  margin: 0 0.5em;
}
.site-header {
  text-align: center;
  padding: 1em;
}
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
}
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
.column {
  flex: 1;
  min-width: 250px;
}
