@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=EB+Garamond:wght@400;500&display=swap');

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

body {
  font-family: 'EB Garamond', serif;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #f5f3f0;
}

header {
  background-color: #2c3e50;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

header h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

header p {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

nav {
  background-color: #34495e;
  padding: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #3498db;
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

section {
  background-color: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section p {
  margin-bottom: 1.5rem;
  text-align: justify;
  color: #444;
}

section ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

section li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: #1a1a1a;
}

footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

footer p {
  margin: 0.5rem 0;
}

/* Obituary and Kill List Styles */
.headstone-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

#headstone {
  text-align: center;
  padding: 2rem 2rem 1rem 2rem;
}

.obituary-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #8b7355;
}

.obituary-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.obituary-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  font-style: italic;
  margin: 0;
}
.intro-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #444;
}

.intro-text em {
  font-style: italic;
}

section li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #8b7355;
  font-size: 1.2rem;
}

.kill-list-intro {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem !important;
}

.kill-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kill-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  padding: 0.75rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.kill-item:hover {
  background-color: #f0f0f0;
}

.kill-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #8b7355;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 1rem;
  background-color: white;
  transition: all 0.2s;
  flex-shrink: 0;
}

.kill-item input[type="checkbox"]:checked {
  background-color: #8b7355;
  border-color: #8b7355;
}

.kill-item input[type="checkbox"]:checked::after {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.kill-item span {
  color: #333;
  line-height: 1.4;
}

#closing {
  margin-top: 2rem;
}

.closing-text {
  text-align: center;
  font-style: italic;
  color: #666;
  padding-top: 2rem;
  border-top: 2px solid #8b7355;
}

.closing-text p {
  text-align: center;
}

.final-epitaph {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
}
