/* --- Reset & Globals --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0a0a0a;
  color: #fdfdfd;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
  padding: 4rem 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  color: #fdfdfd;
}

h1 {
  font-size: 3.5rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  border-bottom: 1px solid #333333;
  padding-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  max-width: 65ch; /* Optimal reading width */
}

a {
  color: #fdfdfd;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* --- Header & Footer --- */
.site-header,
.site-footer {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.site-title {
  font-weight: 600;
  letter-spacing: 1px;
}

.site-header nav a {
  margin-left: 2rem;
}

.site-footer {
  text-align: center;
  color: #888;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 2rem;
}

/* --- Page Specific --- */
.homepage-title {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tombstone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tombstone {
  border: 1px solid #333333;
  padding: 2rem;
  text-align: center;
}

.tombstone-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tombstone-details {
  font-size: 0.9rem;
  color: #aaa;
}

.tombstone-details p {
  margin-bottom: 0.5rem;
}
