:root[data-theme="light"] {
  --pico-font-family: 'Inter', system-ui, sans-serif;
  --pico-line-height: 1.6;
  --pico-primary: #8a531c;
  --pico-primary-hover: #6b0f0e;
  --pico-primary-focus: rgba(130, 19, 18, 0.25);
  --pico-primary-inverse: #f1d4c3;
  --pico-primary-background: #821312;
  --pico-primary-border: #821312;
  --pico-primary-underline: rgba(138, 83, 28, 0.5);
  --pico-color-a: #821312;
  --pico-color-a-visited: #821312;
  --pico-secondary: #821312;
  --pico-secondary-hover: #6b0f0e;
  --pico-secondary-focus: rgba(130, 19, 18, 0.25);
  --pico-secondary-inverse: #fff;
  --pico-secondary-background: #821312;
  --pico-secondary-border: #821312;
  --pico-secondary-underline: rgba(130, 19, 18, 0.5);
  --pico-card-background-color: #f1d4c3;
  --pico-card-sectioning-background-color: #f1d4c3;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  font-size: 100%;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--pico-font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: #4a3628;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #3d1c06;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.6rem);
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.35;
}

p {
  color: #4a3628;
}

blockquote {
  border-left: 3px solid #821312;
  font-style: italic;
  color: #5a3a2a;
}

section {
  padding: 1.5rem 0;
}

section:nth-child(even) {
  background: #faf5f0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.section-title {
  margin-bottom: 0.25rem;
}

.section-divider {
  background: linear-gradient(90deg, #821312, #8a531c);
  border: none;
  height: 2px;
  margin-bottom: 1rem;
  width: 80px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

header.site-header {
  background: #f1d4c3;
  border-bottom: 1px solid #8a531c;
}

header.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.01rem 0rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: inherit;
}

.logo-group img {
  height: 100%;
  width: auto;
  /* border-radius: 50%; */
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not([role="button"]) {
  text-decoration: none;
  font-size: 0.95rem;
  color: #821312;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:not([role="button"])::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8a531c;
  transition: width 0.3s ease;
}

.nav-links a:not([role="button"]):hover::after {
  width: 100%;
}

.nav-links a:not([role="button"]):hover {
  color: #8a531c;
}

.nav-links a.donate-btn,
.nav-links .donate-btn 
{
  display: none !important;
}

.donate-btn {
  white-space: nowrap;
  background: #821312;
  color: #f1d4c3;
  border-color: #821312;
  padding: 0.3rem 0.75rem;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(130, 19, 18, 0.3);
}

header.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #821312;
  padding: 0.25rem;
  margin: 0;
  width: auto;
}

footer.site-footer {
  background: #821312;
  color: #fff;
  border-top: none;
  padding: 2rem 1rem 1rem;
}

footer.site-footer a {
  color: #f1d4c3;
}

footer.site-footer small {
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner a {
  text-decoration: none;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.footer-col-center strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: #f1d4c3;
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.footer-copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(241, 212, 195, 0.2);
}

.social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.content-row.reverse .content-media {
  order: 2;
}

.content-row.reverse .content-text {
  order: 1;
}

.content-media img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-media img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.auto-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.auto-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.auto-carousel .carousel-slide.active {
  opacity: 1;
  position: relative;
}

.auto-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.pillars article {
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillars article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(130, 19, 18, 0.12);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.event-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-radius: 12px;
  border-top: 3px solid #821312;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(130, 19, 18, 0.15);
}

.event-card .date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #821312, #a52422);
  margin-bottom: 1rem;
}

.event-card .month {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
}

.event-card .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.event-card .title {
  margin-top: 0.25rem;
}

.livestream-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.livestream-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(130, 19, 18, 0.12);
}

.livestream-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 0.75rem;
}

.service-strip {
  background: #3d1c06;
  color: #f1d4c3;
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-strip strong {
  color: #fff;
  font-weight: 600;
}

.service-strip .divider {
  width: 1px;
  height: 1rem;
  background: rgba(241, 212, 195, 0.3);
}

.welcome-banner {
  background: linear-gradient(135deg, #f1d4c3 0%, #f8e8da 100%);
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(138, 83, 28, 0.15);
}
.welcome-banner button:hover{
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(130, 19, 18, 0.3);
}

.welcome-banner h2 {
  color: #3d1c06;
  margin-bottom: 0.5rem;
}

.welcome-banner p {
  max-width: 600px;
  margin: 0 auto 1rem;
  color: #5a3a2a;
  font-size: 1.05rem;
}

.welcome-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.welcome-actions a[role="button"] {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welcome-actions a[role="button"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(130, 19, 18, 0.25);
}

.hero {
  background: linear-gradient(135deg, #f1d4c3 0%, #e8c5a8 100%);
  padding: 2rem 1rem;
  text-align: center;
}

.hero-container {
  max-width: 1600px;
  margin: 0 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  width: 100%;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #3d1c06;
  margin-bottom: 0rem;
  line-height: 1.1;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #4a3628;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background: #821312;
  color: #f1d4c3;
  border: 2px solid #821312;
}

.primary-btn:hover {
  background: #6b0f0e;
  border-color: #6b0f0e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(130, 19, 18, 0.3);
}

.secondary-btn {
  background: transparent;
  color: #821312;
  border: 2px solid #821312;
}

.secondary-btn:hover {
  background: #821312;
  color: #f1d4c3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(130, 19, 18, 0.3);
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  aspect-ratio: 16 / 9;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
}



.about-hero,
.events-hero,
.contact-hero,
.donate-hero,
.gallery-hero {
  text-align: center;
  padding: clamp(.1rem, 2vw, 0.5rem) 1rem;
  background: #f1d4c3;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.leader-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-4px);
}

.leader-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.leader-card:hover img {
  box-shadow: 0 8px 24px rgba(130, 19, 18, 0.15);
}

.events-grid .event-card .title {
  font-weight: 600;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: #3d1c06;
}

.events-grid .event-card .desc {
  font-size: 0.9rem;
  color: #5a3a2a;
  line-height: 1.5;
}

.contact-section {
  padding: 1.5rem 0;

}

.contact-content {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-list .icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-list a {
  color: #821312;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  justify-content: center;
}

.contact-btn {
  display: inline-block;
  background: #821312;
  color: #f1d4c3;
  border: 2px solid #821312;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.contact-btn:hover {
  background: #6b0f0e;
  border-color: #6b0f0e;
  box-shadow: 0 6px 20px rgba(130, 19, 18, 0.3);
}

.map-container {
  width: 100%;
  min-height: 260px;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 8px;
}

.events-cta {
  margin-top: 1.5rem;
}


@media (max-width: 768px) {
  header.site-header nav {
    padding: 0rem 1rem 0rem 1.5rem;
  }

  header.site-header .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 0.35rem 0;
    line-height: 1.2;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .content-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .content-row.reverse .content-media,
  .content-row.reverse .content-text {
    order: unset;
  }

  .content-media img {
    aspect-ratio: 4 / 3;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section:nth-child(even) {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col-right {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .hero-image-wrapper {
    height: min(70svh, 420px);
    min-height: 300px;
  }

  .slide-overlay {
    justify-content: center;
    padding: 1rem 1.5rem 3.5rem;
    text-align: center;
  }

  .slide-overlay h2 {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  }

  .slide-overlay p {
    max-width: 90%;
    margin-bottom: 0.85rem;
  }

  .slide-overlay a[role="button"] {
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
  }

  .service-strip {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .service-strip .divider {
    display: none;
  }

  .welcome-banner {
    padding: 2rem 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2rem 0;
  }

  section:nth-child(even) {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  h2 {
    font-size: 1.4rem;
    word-break: break-word;
  }

  h3 {
    font-size: 1.1rem;
  }

  p, li {
    font-size: 0.92rem;
  }

  .content-media img {
    aspect-ratio: 3 / 2;
    border-radius: 8px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .welcome-banner p {
    font-size: 0.95rem;
  }

  .hero-image-wrapper {
    height: 58svh;
    min-height: 280px;
  }

  .about-hero,
  .events-hero,
  .contact-hero,
  .donate-hero,
  .gallery-hero {
    margin-bottom: 1.25rem;
    border-radius: 6px;
  }
}

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}