/* =========================================================
   ANGEL MOMS PAGE ONLY
   Keep styles.css as the shared site stylesheet.
   This file styles only the page body content.
========================================================= */

.angelmoms-body .angelmoms-main,
.angelmoms-body .angelmoms-main * {
  box-sizing: border-box;
}

.angelmoms-main {
  color: #ffffff;
}

.angelmoms-banner-shell {
  padding: 1rem 0 0.7rem;
}

.angelmoms-foundation-banner {
  width: 100%;
  height: auto;
  display: block;
}

.angelmoms-hero {
  padding: 0.2rem 0 1.35rem;
}

.angelmoms-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}

.angelmoms-wing {
  width: clamp(120px, 18vw, 250px);
  max-width: 100%;
  display: block;
  opacity: 0;
  will-change: transform, opacity;
}

.angelmoms-logo-center {
  width: clamp(260px, 34vw, 500px);
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

/* WING ANIMATION */
.angelmoms-logo-animate .angelmoms-wing-left {
  animation: angelWingLeftIn 2.8s ease-out 0.2s forwards;
}

.angelmoms-logo-animate .angelmoms-wing-right {
  animation: angelWingRightIn 2.8s ease-out 0.2s forwards;
}

@keyframes angelWingLeftIn {
  0% {
    opacity: 0;
    transform: translateX(-90px);
  }
  60% {
    opacity: 1;
    transform: translateX(10px);
  }
  100% {
    opacity: 0.98;
    transform: translateX(0);
  }
}

@keyframes angelWingRightIn {
  0% {
    opacity: 0;
    transform: translateX(90px);
  }
  60% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    opacity: 0.98;
    transform: translateX(0);
  }
}

/* GALLERY */
.angelmoms-gallery {
  padding: 0 0 1.6rem;
}

.angelmoms-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.75fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.angelmoms-photo {
  margin: 0;
  border: 8px solid #ffcc00;
  border-radius: 16px;
  overflow: hidden;
  background: #3b014e;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

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

.angelmoms-photo-small,
.angelmoms-photo-large {
  min-height: 340px;
}

/* FEATURE BOX */
.angelmoms-message-section {
  padding: 0 0 1.2rem;
}

.angelmoms-feature-box {
  background: linear-gradient(180deg, #cb00ff 0%, #9900ce 100%);
  padding: 28px;
  border-radius: 20px;
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.angelmoms-feature-inner {
  background: #610081;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 40px 42px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.angelmoms-feature-inner h1,
.angelmoms-side-box h2,
.angelmoms-story-left h2,
.angelmoms-sponsor-copy h3 {
  font-family: Byington, Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.angelmoms-feature-inner h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-align: center;
}

.angelmoms-feature-inner p {
  margin: 0 0 16px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  text-align: center;
}

/* LOWER GRID */
.angelmoms-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.angelmoms-side-box {
  background: linear-gradient(180deg, #cb00ff 0%, #9700c8 100%);
  border-radius: 16px;
  padding: 30px;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.angelmoms-side-box h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.angelmoms-side-box p {
  margin: 0 0 16px;
  font-size: 1rem;
}

.angelmoms-sponsor-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 255px;
  background: #ffcc00;
  color: #1d1d1d;
  border-radius: 14px;
  overflow: hidden;
}

.angelmoms-sponsor-copy {
  display: flex;
  gap: 14px;
  padding: 18px;
}

.angelmoms-sponsor-logo {
  flex: 0 0 90px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.angelmoms-sponsor-logo img {
  max-width: 100%;
  display: block;
}

.angelmoms-sponsor-copy h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.angelmoms-sponsor-copy p {
  margin: 0 0 8px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.angelmoms-sponsor-name {
  font-weight: 800;
  font-size: 1.05rem;
}

.angelmoms-sponsor-title {
  font-style: italic;
}

.angelmoms-sponsor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* STORY SECTION */
.angelmoms-story-section {
  padding: 0.25rem 0 1.2rem;
}

.angelmoms-story-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.angelmoms-story-bg {
  width: 100%;
  height: auto;
  display: block;
}

.angelmoms-story-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 34px;
  padding: 6% 6% 5%;
  color: #6b248a;
}

.angelmoms-story-left h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(1.7rem, 2.7vw, 2.8rem);
  letter-spacing: 1px;
}

.angelmoms-story-left textarea {
  width: 100%;
  height: 300px;
  border: none;
  padding: 18px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.4);
  color: #4d2a59;
  outline: none;
  font-size: 1rem;
}

.angelmoms-story-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.35;
  font-style: italic;
}

.angelmoms-story-right {
  border-left: 3px solid #8c54a8;
  padding-left: 24px;
}

.angelmoms-story-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.angelmoms-story-logo img {
  width: 190px;
  height: auto;
  max-width: 100%;
  display: block;
}

.angelmoms-story-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.angelmoms-story-form label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: #7a338f;
}

.angelmoms-story-form input,
.angelmoms-story-form textarea {
  width: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 14px;
  font-size: 0.98rem;
  color: #4d2a59;
  outline: none;
}

.angelmoms-story-form textarea {
  min-height: 100px;
  resize: vertical;
}

.angelmoms-submit-btn {
  margin-top: 8px;
  border: none;
  border-radius: 8px;
  background: #6d1c8f;
  color: #ffffff;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
}

.angelmoms-submit-btn:hover {
  background: #4f1167;
}

/* CTA */
.angelmoms-cta-section {
  padding: 0 0 1.2rem;
}

.angelmoms-cta-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.angelmoms-cta {
  min-width: 280px;
  min-height: 92px;
  padding: 16px 22px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.angelmoms-cta-contact {
  background: linear-gradient(180deg, #cb00ff 0%, #9100c2 100%);
  color: #ffffff;
  gap: 14px;
}

.angelmoms-cta-contact img {
  width: 72px;
  height: auto;
  display: block;
}

.angelmoms-cta-contact span {
  font-size: 1.35rem;
  line-height: 1.1;
}

.angelmoms-cta-donate {
  background: #ffcc00;
  color: #111111;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
}

/* TEXT HELPERS */
.focus-word {
  color: #ffcc00;
  font-weight: 900;
}

.focus-hero {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 10px;
}

.focus-subhead {
  text-align: center;
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 20px;
}

.grant-summary {
  font-size: 1.05rem;
  line-height: 1.5;
}

.focus-cta {
  text-align: center;
  font-weight: 700;
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .angelmoms-gallery-grid,
  .angelmoms-lower-grid,
  .angelmoms-story-overlay {
    grid-template-columns: 1fr;
  }

  .angelmoms-sponsor-card {
    grid-template-columns: 1fr;
  }

  .angelmoms-sponsor-photo {
    min-height: 260px;
  }

  .angelmoms-story-right {
    border-left: none;
    border-top: 3px solid #8c54a8;
    padding-left: 0;
    padding-top: 20px;
  }

  .angelmoms-logo-wrap {
    gap: 8px;
  }

  .angelmoms-wing {
    width: clamp(80px, 16vw, 150px);
  }

  .angelmoms-logo-center {
    width: clamp(200px, 42vw, 330px);
  }

  @keyframes angelWingLeftIn {
    0% {
      opacity: 0;
      transform: translateX(-55px);
    }
    60% {
      opacity: 1;
      transform: translateX(6px);
    }
    100% {
      opacity: 0.98;
      transform: translateX(0);
    }
  }

  @keyframes angelWingRightIn {
    0% {
      opacity: 0;
      transform: translateX(55px);
    }
    60% {
      opacity: 1;
      transform: translateX(-6px);
    }
    100% {
      opacity: 0.98;
      transform: translateX(0);
    }
  }
}

@media (max-width: 767.98px) {
  .angelmoms-feature-inner {
    padding: 28px 22px;
    min-height: auto;
  }

  .angelmoms-side-box {
    min-height: auto;
  }

  .angelmoms-photo-small,
  .angelmoms-photo-large {
    min-height: 240px;
  }

  .angelmoms-story-overlay {
    position: relative;
    inset: auto;
    padding: 24px;
    background: rgba(235, 219, 194, 0.92);
  }

  .angelmoms-story-bg {
    display: none;
  }

  .angelmoms-cta {
    width: 100%;
    max-width: 420px;
  }

  .angelmoms-cta-contact span {
    font-size: 1.15rem;
  }

  .angelmoms-cta-donate {
    font-size: 1.8rem;
  }
}
h4 a {
  color: inherit;
  text-decoration: none;
}

h4 a:hover {
  text-decoration: underline;