:root {
  --cream: #fffaf2;
  --white: #ffffff;
  --soft-pink: #f7dfe7;
  --light-rose: #eed0da;
  --rose: #b9657a;
  --deep-rose: #7f3f50;
  --sage: #a8b9a3;
  --soft-sage: #e8eee5;
  --gold: #c89b4b;
  --text: #403638;
  --muted: #75696b;
  --border: rgba(127, 63, 80, 0.14);
  --shadow: 0 14px 34px rgba(77, 51, 58, 0.12);
  --radius: 24px;
  --max-width: 1180px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}


img {
  max-width: 100%;
}


a {
  color: inherit;
}


button,
input,
textarea,
select {
  font: inherit;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  padding: 14px clamp(18px, 4vw, 58px);

  background: rgba(255, 250, 242, 0.95);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--border);
}


.site-brand {
  color: var(--deep-rose);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.05rem;
}


.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}


.top-nav a {
  padding: 8px 11px;
  border-radius: 999px;

  color: var(--deep-rose);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.top-nav a:hover,
.top-nav a:focus {
  background: var(--soft-pink);
  transform: translateY(-1px);
  outline: none;
}


/* HERO */

.hero-section {
  position: relative;

  min-height: 82vh;

  display: grid;
  place-items: center;

  overflow: hidden;

  padding: 90px 20px 78px;

  background:
    linear-gradient(
      rgba(255, 250, 242, 0.88),
      rgba(255, 250, 242, 0.94)
    ),
    url("images/Faith18.JPG") center / cover no-repeat;
}


.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(247, 223, 231, 0.7),
      transparent 38%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(168, 185, 163, 0.4),
      transparent 36%
    );
}


.hero-content {
  position: relative;
  z-index: 1;

  width: min(900px, 100%);

  text-align: center;
}


.hero-logo {
  width: min(230px, 55vw);
  max-height: 230px;
  object-fit: contain;

  margin-bottom: 20px;
}


.hero-kicker {
  margin: 0 0 12px;

  color: var(--deep-rose);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.8rem;
  font-weight: 800;
}


.hero-content h1 {
  max-width: 850px;
  margin: 0 auto;

  color: var(--deep-rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.03;
}


.hero-text {
  max-width: 760px;
  margin: 24px auto 0;

  font-size: clamp(1.05rem, 2vw, 1.25rem);
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;

  margin-top: 32px;
}


/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 13px 22px;

  border: 0;
  border-radius: 999px;

  text-decoration: none;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(77, 51, 58, 0.18);
  outline: none;
}


.button-primary {
  color: var(--white);
  background: var(--deep-rose);
}


.button-primary:hover,
.button-primary:focus {
  background: #6f3545;
}


.button-secondary {
  color: var(--deep-rose);
  background: var(--white);
  border: 1px solid rgba(127, 63, 80, 0.22);
}


/* QUICK LINKS */

.quick-links-section {
  position: relative;
  z-index: 3;

  margin-top: -28px;
  padding: 0 18px;
}


.quick-links {
  width: min(1040px, 100%);
  margin: 0 auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;

  padding: 18px;

  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}


.quick-links a {
  padding: 10px 16px;

  color: var(--deep-rose);
  background: var(--cream);

  border-radius: 999px;

  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.quick-links a:hover,
.quick-links a:focus {
  background: var(--soft-pink);
  transform: translateY(-2px);
  outline: none;
}


/* GENERAL SECTIONS */

.section {
  padding: 86px 20px;
}


.section-light {
  background: var(--cream);
}


.section-soft {
  background:
    linear-gradient(
      135deg,
      rgba(247, 223, 231, 0.72),
      rgba(232, 238, 229, 0.82)
    );
}


.section-contact {
  background: var(--deep-rose);
  color: var(--white);
}


.section-container {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}


.narrow-container {
  width: min(880px, 100%);
}


.section-heading {
  margin-bottom: 34px;
}


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


.section-label {
  margin: 0 0 8px;

  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}


.section h2 {
  margin: 0;

  color: var(--deep-rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.7vw, 3.8rem);
  line-height: 1.1;
}


.section-contact h2,
.section-contact .section-label {
  color: var(--white);
}


.small-divider {
  margin-top: 12px;
  font-size: 1.55rem;
}


.section-intro {
  max-width: 820px;
  margin: 0 auto 22px;

  text-align: center;
  font-size: 1.08rem;
}


/* ABOUT */

.about-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}


.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}


.about-image {
  width: 100%;
  min-height: 225px;

  display: block;

  object-fit: cover;

  border-radius: 20px;
  box-shadow: var(--shadow);
}


.about-image-large {
  grid-column: 1 / -1;
  min-height: 380px;
}


.about-copy p {
  margin-top: 0;
  font-size: 1.06rem;
}


.quote-card {
  margin-top: 28px;
  padding: 24px;

  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  box-shadow: var(--shadow);
}


.quote-card p {
  margin: 0;

  color: var(--deep-rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-style: italic;
}


/* CARDS */

.card-grid,
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;

  margin-top: 38px;
}


.information-card {
  height: 100%;

  padding: 26px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


.information-card h3 {
  margin: 0 0 12px;

  color: var(--deep-rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}


.information-card p {
  margin: 0;
}


/* APPLICATION */

.application-box,
.donation-box,
.contact-card {
  padding: clamp(26px, 5vw, 46px);

  text-align: center;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


.application-box p,
.donation-box p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


.application-details {
  margin: 28px auto;
  padding: 20px;

  background: var(--soft-sage);
  border-radius: 16px;
}


.application-details p {
  margin-top: 0;
  margin-bottom: 8px;
}


.community-callout {
  margin-top: 34px;
}


.community-callout h3 {
  margin-top: 0;

  color: var(--deep-rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}


/* MEMORIES */

.section-memories {
  background: var(--deep-rose);
  color: var(--white);
}


.section-memories h2,
.section-memories .section-label {
  color: var(--white);
}


.memories-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}


.memory-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}


.memory-preview-grid img {
  width: 100%;
  height: 330px;

  display: block;

  object-fit: cover;

  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}


.memory-preview-grid img:nth-child(2) {
  transform: translateY(-18px);
}


/* DONATIONS */

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}


/* CONTACT */

.contact-card {
  color: var(--text);
}


.contact-email {
  display: block;
  margin: 18px 0 24px;

  color: var(--deep-rose);
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}


.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}


/* FOOTER */

.site-footer {
  padding: 38px 20px;

  text-align: center;

  color: var(--muted);
  background: #f3ece5;
  border-top: 1px solid var(--border);
}


.site-footer p {
  margin: 5px 0;
}


.site-footer a {
  display: inline-block;
  margin-top: 12px;

  color: var(--deep-rose);
  font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }


  .top-nav {
    justify-content: flex-start;
  }


  .about-layout,
  .memories-layout {
    grid-template-columns: 1fr;
  }


  .card-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }


  .memory-preview-grid img {
    height: 280px;
  }

}


@media (max-width: 760px) {

  body {
    font-size: 16px;
  }


  .site-header {
    position: static;
  }


  .top-nav {
    gap: 5px;
  }


  .top-nav a {
    padding: 7px 9px;
    font-size: 0.82rem;
  }


  .hero-section {
    min-height: auto;
    padding-top: 65px;
  }


  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }


  .hero-buttons .button {
    width: 100%;
  }


  .quick-links-section {
    margin-top: 0;
    padding: 18px;
    background: var(--cream);
  }


  .quick-links {
    border-radius: 22px;
  }


  .quick-links a {
    flex: 1 1 42%;
    text-align: center;
  }


  .section {
    padding: 66px 18px;
  }


  .about-images {
    grid-template-columns: 1fr;
  }


  .about-image-large {
    grid-column: auto;
  }


  .about-image,
  .about-image-large {
    min-height: 300px;
  }


  .memory-preview-grid {
    grid-template-columns: 1fr;
  }


  .memory-preview-grid img,
  .memory-preview-grid img:nth-child(2) {
    height: 360px;
    transform: none;
  }

}


@media (max-width: 480px) {

  .quick-links a {
    flex-basis: 100%;
  }


  .hero-content h1 {
    font-size: 2.55rem;
  }


  .memory-preview-grid img {
    height: 300px;
  }

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

.donate-note {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
}

.paypal-button {
    margin-top: 30px;
}

.paypal-button img {
    transition: transform 0.3s ease;
}

.paypal-button img:hover {
    transform: scale(1.05);
}
