:root {
  --peach: #f9ede4; /* light orange */
  --white: #ffffff;
  --accent: #f7b267;
  --muted: #666;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, Arial, sans-serif;
  margin: 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--peach) 100%);
  color: #222;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.brand {
  margin: 0;
  font-size: 1.25rem;
  color: #333;
}

nav a {
  margin-left: 0.75rem;
  text-decoration: none;
  color: #333;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
}

nav a.active,
nav a:hover {
  background: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.hero-text {
  position: absolute;
  color: #3b3a3a;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-text h2 {
  font-size: 2.1rem;
  margin: 0;
}

.intro {
  padding: 2rem 1rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card-img {
  width: 50%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.cta {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1rem;
}

.btn {
  background: #333;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #333;
}

.site-footer {
  padding: 1rem 0;
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.muted {
  color: var(--muted);
}

.prose {
  padding: 2rem 1rem;
   width: 50%;
  height: 140px;
}

.events-list {
  list-style: none;
  padding: 0;
}

.events-list li {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.event-detail {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.accom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.accom-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.donation-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
}

.qr {
  width: 160px;
  height: 160px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

.contact-form {
  display: grid;
  gap: 0.5rem;
  max-width: 600px;
}

.contact-form label {
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.small {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .accom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    height: 45vh;
  }
  .hero-text h2 {
    font-size: 1.5rem;
  }
}
