:root {
  --navy: #0A2342;
  --white: #FFFFFF;
  --red: #8B1E3F;
  --red-dark: #5A0E26;
}

/* Seasons font — replace with your hosted files when ready */
@font-face {
  font-family: "Seasons";
  src: local("Seasons-Light");
  font-weight: 300; /* light */
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Seasons", Georgia, serif;
  color: var(--white);
  background: var(--navy);
  height: 100vh;
}


/* Transparent header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 1000;
}

/* Left nav */
.header-left {
  position: absolute;
  left: 25%;
  transform: translateX(-50%);
}
.header-nav {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.header-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}
.header-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Center brand */
.brand-center {
  font-family: "Seasons", Georgia, serif;
  font-size: 42px;   /* adjust this value to resize the YCFA text */
  font-weight: 400;
  text-decoration: none;
  color: var(--white);
  letter-spacing: 1px;
}

/* Right button */
.header-right {
  position: absolute;
  right: 25%;
  transform: translateX(50%);
}
.btn-contact {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--red);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-contact:hover {
  background: var(--red);
  color: var(--white);
}



/* Join Today = solid red */
.btn-join {
  background: var(--red);
  color: var(--white);
}
.btn-join:hover {
  background: var(--red-dark);
}

/* Contact Us = outline */
.btn-contact {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-contact:hover {
  background: var(--red);
  color: var(--white);
}


/* Hamburger Icon */
/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  top: 28px;        /* moved down a bit */
  left: 20px;       /* stays left */
  z-index: 1001;    /* above everything */
}

.hamburger span {
  display: block;
  height: 4px;
  background: var(--red); /* use the base red variable */
  border-radius: 2px;
}

/* MOBILE NAV ANIMATION */
.mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease-in-out;
}

.mobile-nav.open {
  display: block;
  max-height: 500px; /* enough to fit all links */
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid #eee;
}

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav a:hover {
  background: #f5f5f5;
}

@media (max-width: 768px) {
  /* Hamburger icon closer to center */
  .hamburger {
    display: flex;
    top: 28px;       /* vertical alignment */
    left: 70px;      /* closer to center */
  }

  /* Hide normal nav links */
  .header-left .header-nav {
    display: none;
  }

  /* Contact Us button closer to center */
  .header-right {
    position: absolute;
    top: 28px;       /* align vertically with hamburger */
    right: 70px;     /* closer to center */
  }

  /* Dropdown menu styling when hamburger clicked */
  .header-left.active .header-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;       /* below header */
    left: 0;
    background: var(--white);
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 16px 0;
    z-index: 999;
  }

  .header-left.active .header-nav li {
    margin: 0;
    text-align: center;
    padding: 12px 0;
  }

  .header-left.active .header-nav li a {
    color: var(--navy);
    font-weight: 600;
    font-size: 1.1rem;
  }
}


/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* dark overlay */
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 120px;   /* adjust manually */
  line-height: 1.1;
  font-weight: normal;   /* ensures unbold */
  font-style: normal;    /* prevents faux bold */
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 3px;
}

.hero h1 span {
  display: block;
  color: var(--white);
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 32px;
  border-radius: 999px; /* pill shape */
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-weight: 400;
  text-decoration: none; /* no underline */
  transition: background 0.25s ease;
  text-transform: none; /* keeps normal case */
}

.btn:hover {
  background: var(--red-dark);
}

.btn:hover {
  background: var(--red-dark);
}

/* HERO - Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 80px;   /* scale down for tablets */
    letter-spacing: 2px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 90vh;      /* slightly shorter on smaller screens */
    padding: 0 20px;   /* add side padding */
  }

  .hero h1 {
    font-size: 60px;   /* mobile-friendly size */
    line-height: 1.2;
    letter-spacing: 1.5px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 42px;  /* mobile small */
    line-height: 1.25;
    letter-spacing: 1px;
  }

  .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}





/* Join the Movement section */
.join-band{
  background: var(--red);
  color: var(--white);
  height: 100vh;                
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;      
  text-align: center;
  padding: 0 20px;
}

.join-head{
  margin-bottom: 40px;
}
.join-head h2{
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.join-head p{
  opacity: .95;
  font-size: 1.2rem;
  margin: 0;
}

/* Grid of big buttons */
.join-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(1100px, 92vw);
}

.join-card{
  display: flex;
  flex-direction: column; /* stack title + body */
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  border-radius: 16px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  text-align: center;
}
.join-card:hover{
  transform: translateY(-4px);
  background: var(--navy);
  color: var(--white);
}

/* Card title only uppercase */
.join-card-title {
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* Body text normal case, smaller */
.join-card-text {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
  text-transform: none;  /* ensures normal case */
}

/* Join the Movement section - Responsive */
@media (max-width: 980px){
  .join-band {
    height: auto;          /* let content dictate height on smaller screens */
    padding: 60px 20px;
  }

  .join-head h2 {
    font-size: 2.5rem;     /* slightly smaller on tablets */
  }

  .join-head p {
    font-size: 1.1rem;
  }

  .join-grid {
    grid-template-columns: 1fr 1fr;  /* 2 per row */
    gap: 18px;
  }

  .join-card {
    padding: 40px 15px;
  }

  .join-card-title {
    font-size: 1.1rem;
  }

  .join-card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px){
  .join-band {
    padding: 50px 15px;
  }

  .join-head h2 {
    font-size: 2rem;       /* scale down for smaller mobile */
  }

  .join-head p {
    font-size: 1rem;
  }

  .join-grid {
    grid-template-columns: 1fr;       /* single column */
    gap: 16px;
  }

  .join-card {
    padding: 35px 15px;
  }

  .join-card-title {
    font-size: 1rem;
  }

  .join-card-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px){
  .join-band {
    padding: 40px 10px;
  }

  .join-head h2 {
    font-size: 1.7rem;
  }

  .join-head p {
    font-size: 0.95rem;
  }

  .join-card {
    padding: 30px 12px;
  }

  .join-card-title {
    font-size: 0.95rem;
  }

  .join-card-text {
    font-size: 0.8rem;
  }
}




/* About Us / Mission */
.about-band{
  background: var(--white);
  color: var(--navy);
  min-height: 100vh;                /* at least full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;               /* add more padding for mobile */
  box-sizing: border-box;
}

.about-inner{
  width: min(900px, 92vw);
}

.about-band h2{
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-band p{
  font-size: 1.3rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1.5rem;            /* spacing between paragraphs */
}

/* Responsive scaling */
@media (max-width: 980px) {
  .about-inner {
    width: min(750px, 90vw);
  }

  .about-band h2 {
    font-size: 2.5rem;
  }

  .about-band p {
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .about-inner {
    width: 95vw;
  }

  .about-band h2 {
    font-size: 2rem;
  }

  .about-band p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .about-band {
    padding: 40px 15px;             /* extra breathing room on small screens */
  }

  .about-band h2 {
    font-size: 1.7rem;
  }

  .about-band p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}



/* Manifesto / The Call */
.manifesto-band {
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.manifesto-inner {
  width: min(900px, 92vw);
}

.manifesto-band h2 {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.manifesto-band p {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.manifesto-band blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Responsive scaling */
@media (max-width: 980px) {
  .manifesto-inner {
    width: min(750px, 90vw);
  }

  .manifesto-band h2 {
    font-size: 2.5rem;
  }

  .manifesto-band p {
    font-size: 1.15rem;
  }

  .manifesto-band blockquote {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .manifesto-inner {
    width: 95vw;
  }

  .manifesto-band h2 {
    font-size: 2rem;
  }

  .manifesto-band p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .manifesto-band blockquote {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .manifesto-band {
    padding: 40px 15px;
  }

  .manifesto-band h2 {
    font-size: 1.7rem;
  }

  .manifesto-band p {
    font-size: 0.95rem;
  }
}






/* =========================
   FOOTER — WIDER & CLEANER
   ========================= */

/* Solid footer */
.footer-solid {
  background: var(--navy);
  color: var(--white);
  padding: 80px 32px 34px;          /* a bit more breathing room */
  font-size: 1rem;
  min-height: 32vh;                 /* ~one third of screen */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Grid layout — wider and pushed right for link columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr; /* roomy left column + two link cols */
  gap: 48px 40px;
  max-width: min(1400px, 96vw);        /* TAKES UP MORE SCREEN */
  margin: 0 auto 44px;
}

/* Move the pages (cols 2 & 3) to the right visually */
.footer-col:nth-child(2),
.footer-col:nth-child(3) {
  justify-self: end;                  /* push blocks toward the right edge */
  text-align: right;                  /* align text to the right */
}

/* Column headings */
.footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  max-width: 520px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}
.newsletter-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
}
.newsletter-form button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* Mission text */
.footer-mission {
  font-size: 1rem;
  line-height: 1.65;
  opacity: .92;
  margin-bottom: 18px;
  max-width: 640px;
}

/* Social icons — larger with subtle lift */
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: var(--white);
  font-size: 1.5rem;                  /* bigger icons */
  text-decoration: none;
  opacity: .85;
  transition: opacity .18s ease, transform .18s ease;
}
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }

/* Links — tidy spacing + micro motion */
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  color: var(--white);
  text-decoration: none;
  opacity: .9;
  transition: opacity .18s ease, transform .18s ease;
  display: inline-block;
}
.footer-col a:hover {
  opacity: 1;
  transform: translateX(2px);
}

/* Bottom bar — wider and clearer */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 20px;
  font-size: .95rem;
  opacity: .9;
  max-width: min(1600px, 98vw);       /* span wider */
  margin: 0 auto;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (min-width: 1400px){
  .footer-grid { gap: 56px 60px; }
}

@media (max-width: 980px){
  .footer-grid {
    grid-template-columns: 1fr;
    max-width: 92vw;
    text-align: center;
  }
  .footer-col:nth-child(2),
  .footer-col:nth-child(3){
    justify-self: center;             /* recenter pages on mobile */
    text-align: center;
  }
  .footer-social { justify-content: center; }
  .newsletter-form { max-width: 100%; }
}




/* Contact Hero Split */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 100px 60px 60px; /* account for fixed header */
  background: var(--red);
  color: var(--white);
}

/* Left side */
.contact-left {
  display: flex;
  flex-direction: column;
  align-items: center;       /* center horizontally */
  justify-content: center;   /* center vertically */
  text-align: center;        /* center text */
  padding: 20px;
}
.contact-left h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.contact-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 500px;
}
.contact-info p {
  margin: 6px 0;
  font-size: 1rem;
}

/* Right side form */
.contact-right {
  display: flex;
  align-items: center;
  justify-content: center;   /* center form horizontally */
  padding: 20px;
}
.contact-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;        /* centers placeholder text */
}
.contact-form input,
.contact-form textarea {
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  width: 100%;
}
.contact-form button {
  background: var(--white);
  color: var(--red);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}
.contact-form button:hover {
  background: var(--navy);
  color: var(--white);
}


.blog-post {
  text-decoration: none;   /* remove underline */
  color: inherit;          /* keep your theme colors */
}

.blog-post h2,
.blog-post p,
.blog-post .read-more {
  text-decoration: none;   /* no underline anywhere inside */
  color: inherit;
}

.blog-post .read-more {
  color: var(--red);       /* keep your red link style */
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr;
    padding: 100px 30px 40px;
  }
  .contact-left {
    margin-bottom: 40px;
  }
}


/* FULL SCREEN BLOG SECTION */
.blog-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--red-dark);
}

/* Stack posts in a single column */
.blog-posts {
  --per-page: 3; /* set to 4 if you want four per page */
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 20px 16px;
  overflow: hidden; /* hide non visible cards during paging */
}

/* Big rectangular cards */
.blog-post {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  width: min(1100px, 92vw);
  min-height: calc((60vh - 100px) / var(--per-page)); /* room for paddings and pager */
  max-height: 48vh; /* avoid overly tall cards on small counts */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post img {
  width: 100%;
  height: 40%;
  object-fit: cover;
}

.blog-post-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.blog-post-content h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
  margin: 0 0 6px 0;
  color: var(--navy);
}

.blog-post-content p {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.1rem);
  color: var(--navy);
}

.blog-post-content .read-more {
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
  color: var(--red);
  font-weight: 700;
}

.blog-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
}

/* Pager */
.blog-pagination {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 24px;
}

.pager-btn {
  height: 44px;
  width: 44px;
  border-radius: 999px;
  border: none;
  background: var(--white);
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
}

.pager-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pager-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(0,0,0,0.08);
  cursor: pointer;
}

.pager-dot[aria-selected="true"] {
  background: var(--white);
}

/* Tablets */
@media (max-width: 1024px) {
  .blog-posts { --per-page: 3; padding: 30px 16px 10px; }
  .blog-post img { height: 36%; }
}

/* Mobile */
@media (max-width: 768px) {
  .blog-posts { --per-page: 3; gap: 16px; padding: 20px 12px 8px; }
  .blog-post { border-radius: 12px; }
  .blog-post img { height: 32%; }
}

/* Small phones */
@media (max-width: 480px) {
  .blog-posts { --per-page: 3; gap: 12px; padding: 16px 8px 8px; }
}


/* Full screen wrapper */
.blog-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--red-dark);
}

/* Use one column and large rectangles; control how many per page via --per-page */
#blogPosts .blog-posts {
  --per-page: 3; /* change to 4 if you want four per page */
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 20px 16px;
  overflow: hidden;
}

/* Make cards wide and tall */
#blogPosts .blog-post {
  width: min(1100px, 92vw);
  min-height: calc((100vh - 160px) / var(--per-page));
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pager styles */
.blog-pagination {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 24px;
}

.pager-btn {
  height: 44px;
  width: 44px;
  border-radius: 999px;
  border: none;
  background: var(--white);
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
}

.pager-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.pager-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pager-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(0,0,0,0.08);
  cursor: pointer;
}

.pager-dot[aria-selected="true"] {
  background: var(--white);
}

/* Tablet and down */
@media (max-width: 768px) {
  #blogPosts .blog-posts { --per-page: 3; gap: 16px; padding: 24px 12px 8px; }
  #blogPosts .blog-post { border-radius: 12px; }
}






/* GIVE HERO SECTION */
.give-hero {
  position: relative;
  height: 100vh;
  background: url("images/give-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.give-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* dark overlay */
}

.give-hero-inner {
  position: relative;
  z-index: 1;
}

.give-hero h1 {
  font-size: 100px;
  line-height: 1.1;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 3px;
}

.give-hero p {
  font-size: 1.8rem;
  color: var(--white);
  margin: 20px 0;
}

.btn-hero {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.25s ease;
}

.btn-hero:hover {
  background: var(--red-dark);
}

/* GIVE VERSE SECTION */
.give-verse {
  position: relative;
  min-height: 100vh;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.verse-inner {
  max-width: 900px;
}

.give-verse h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.verse {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 20px;
}

.verse .ref {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--red-dark);
}

.verse-sub {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-verse {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease;
}

.btn-verse:hover {
  background: var(--red-dark);
}


/* GIVE CTA BOTTOM — NAVY BLUE TO MATCH FOOTER */
.give-cta {
  background: var(--navy); /* matches footer background */
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.give-cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.give-cta p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 700px;
}

.give-cta .btn-hero {
  font-size: 1.2rem;
  padding: 14px 36px;
  background: var(--white);   /* white button background */
  color: var(--navy);         /* navy text to match new background */
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.give-cta .btn-hero:hover {
  background: var(--white);   /* keep white, or optionally add subtle hover effect */
  color: var(--navy);         /* can also invert if you want contrast on hover */
}lor var--white

/* HEADER */
.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
  text-align: center;
  background: transparent;
  z-index: 1000;
}

.brand-center {
  font-family: "Seasons", Georgia, serif;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .give-hero h1 {
    font-size: 70px;
  }

  .give-hero p {
    font-size: 1.5rem;
  }

  .give-verse h2,
  .give-ways h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .give-hero h1 {
    font-size: 50px;
  }

  .give-hero p {
    font-size: 1.2rem;
  }

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

