/* =========================================================
   CROWNED PILLARS FOUNDATION
   GLOBAL STYLESHEET
========================================================= */

/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Lato:wght@400;700;900&display=swap');



/* =========================================================
   GLOBAL
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #10264f;
  --navy-2: #071936;
  --gold: #c68a16;
  --gold-light: #e4b64d;
  --cream: #fbfaf6;
  --soft: #f4f5f7;
  --text: #263142;
  --muted: #687386;
  --white: #ffffff;
  --border: #e6e8ed;
  --shadow: 0 18px 50px rgba(16, 38, 79, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 190px;
  height: auto;
  display: block;
}

.logo-main {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.logo-sub {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav a:hover,
.nav .active {
  color: var(--gold);
}

.nav-button {
  background: var(--navy);
  color: var(--white) !important;
  padding: 12px 20px;
  border-radius: 6px;
}

.nav-button:hover {
  background: var(--navy-2);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
  padding: 5px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-2);
}

.btn-secondary {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}


/* =========================================================
   SECTION LABELS
========================================================= */

.section-label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-label {
  font-family: "Lato", sans-serif;
  color: var(--gold);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
}


/* =========================================================
   HOMEPAGE HERO
========================================================= */

.hero {
  background: var(--cream);
  padding: 100px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  margin: 20px 0;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: var(--muted);
  max-width: 600px;
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  min-width: 0;
}

.hero-image-box {
  width: 100%;
  height: 570px;
  background: var(--soft);
  border-radius: 10px;
  padding: 30px;
  overflow: hidden;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
}

.hero-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2 {
  color: var(--navy);
  font-size: 42px;
  line-height: 1.15;
  margin: 15px 0;
}

.section-heading h2 span {
  color: var(--gold);
}

.section-heading p {
  color: var(--muted);
}

.centered-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.centered-heading p {
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   VALUES
========================================================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  border: 1px solid var(--border);
  padding: 35px;
  border-radius: 12px;
  background: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.value-icon {
  font-size: 30px;
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.value-card p {
  color: var(--muted);
  font-size: 15px;
}


/* =========================================================
   PROGRAMS PAGE HERO
========================================================= */

.programs-page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      rgba(7, 25, 54, 0.78),
      rgba(7, 25, 54, 0.78)
    ),
    url("../leadership conf.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.programs-page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.programs-page-hero .section-label {
  color: var(--gold-light);
}

.programs-page-hero h1 {
  max-width: 850px;
  margin: 18px auto 20px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.programs-page-hero h1 span {
  display: block;
  color: var(--gold-light);
}

.programs-page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.8;
}


/* =========================================================
   PROGRAMS
========================================================= */

.programs {
  background: var(--cream);
}

.programs-section {
  background: var(--cream);
}

.programs-intro {
  background: var(--white);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.program-card {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.program-card-image {
  padding: 0;
  overflow: hidden;
}

.program-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 25px;
  background: var(--soft);
}

.program-card-image .program-image {
  margin-bottom: 0;
  border-radius: 0;
}

.program-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.04);
}

.program-content {
  padding: 0;
}

.program-card-image .program-content {
  padding: 30px 35px 35px;
}

.program-number {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
}

.program-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 15px;
}

.program-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.program-card a {
  color: var(--gold);
  font-weight: 700;
}

.program-card a:hover {
  color: var(--navy);
}

.program-content .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* =========================================================
   PROGRAMS APPROACH
========================================================= */

.programs-approach {
  background: var(--navy);
}

.program-method-section {
  background: var(--cream);
}


/* =========================================================
   HOMEPAGE - OUR IMPACT
========================================================= */

.about-preview {
  background: var(--white);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-preview-image {
  width: 100%;
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft);
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-preview-content h2 {
  color: var(--navy);
  font-size: 42px;
  line-height: 1.15;
  margin: 15px 0 20px;
}

.about-preview-content h2 span {
  color: var(--gold);
}

.about-preview-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-preview-content .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 10px;
}

.about-preview-content .text-link:hover {
  color: var(--navy);
}


/* =========================================================
   HOMEPAGE - IMPACT STORIES
========================================================= */

.impact-story {
  margin-bottom: 90px;
}

.impact-story:last-child {
  margin-bottom: 0;
}


/* =========================================================
   BREAST CANCER IMAGES
========================================================= */

.breast-cancer-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.breast-cancer-image {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft);
}

.breast-cancer-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* =========================================================
   IMPACT FEATURE IMAGE
========================================================= */

.impact-feature-image {
  padding: 0 0 90px;
}

.impact-feature-image .container {
  width: 90%;
  max-width: 1180px;
}

.impact-feature-image img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}


/* =========================================================
   HOMEPAGE - OUR VISION
========================================================= */

.impact-section {
  background: var(--cream);
}

.impact-section .section-heading {
  max-width: 850px;
  margin-bottom: 45px;
}

.impact-section .section-heading h2 {
  color: var(--navy);
}

.impact-section .section-heading p {
  margin-bottom: 15px;
}

.vision-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.vision-point {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.vision-point:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.vision-point span {
  display: block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 15px;
}

.vision-point p {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}

.impact-section > .container > .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
}

.impact-section > .container > .text-link:hover {
  color: var(--navy);
}


/* =========================================================
   HOMEPAGE - ACTIVITIES
========================================================= */

.activities-section {
  background: var(--white);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.activity-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.activity-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.activity-item > img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.activity-caption {
  padding: 22px;
}

.activity-caption h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

.activity-caption p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.center-button {
  text-align: center;
  margin-top: 45px;
}


/* =========================================================
   OLD IMPACT SECTION SUPPORT
========================================================= */

.impact {
  background: var(--navy);
  color: var(--white);
}

.impact .section-label {
  color: var(--gold-light);
}

.impact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.impact h2 {
  color: var(--white);
  font-size: 45px;
  line-height: 1.15;
  margin-top: 15px;
}

.impact h2 span {
  color: var(--gold-light);
}

.impact-content p {
  font-size: 18px;
  opacity: 0.9;
}


/* =========================================================
   CTA
========================================================= */

.cta {
  text-align: center;
}

.cta-content {
  max-width: 750px;
  margin: auto;
}

.cta h2 {
  color: var(--navy);
  font-size: 45px;
  line-height: 1.15;
  margin: 15px 0;
}

.cta h2 span {
  color: var(--gold);
}

.cta p {
  color: var(--muted);
  margin-bottom: 30px;
}

.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}

.cta-section .section-label {
  color: var(--gold-light);
}

.cta-section h2 {
  color: var(--white);
  font-size: 45px;
  line-height: 1.15;
  margin: 15px 0 20px;
}

.cta-section h2 span {
  color: var(--gold-light);
}

.cta-section p {
  color: #d9dee7;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}


/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}

.page-hero h1 {
  max-width: 800px;
  margin: 20px auto;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.1;
  color: var(--navy);
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  max-width: 650px;
  margin: auto;
  color: var(--muted);
  font-size: 18px;
}


/* =========================================================
   ABOUT PAGE - HERO
========================================================= */

.about-hero {
  background: var(--cream);
  padding: 90px 0;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-hero-content {
  max-width: 620px;
}

.about-hero-content h1 {
  color: var(--navy);
  font-size: 56px;
  line-height: 1.08;
  margin: 15px 0 25px;
  letter-spacing: -1px;
}

.about-hero-content h1 span {
  display: block;
  color: var(--gold);
}

.about-hero-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 30px;
}

.about-hero-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.about-hero-image {
  position: relative;
  min-height: 540px;
}

.about-hero-image::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  right: -20px;
  top: 30px;
  border: 2px solid var(--gold-light);
  border-radius: 16px;
  z-index: 0;
}

.about-hero-image img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-left: auto;
  box-shadow: var(--shadow);
}

.about-hero-badge {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 0;
  background: var(--white);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.about-hero-badge strong {
  color: var(--navy);
  font-size: 32px;
  line-height: 1;
}

.about-hero-badge span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 7px;
}


/* =========================================================
   ABOUT PAGE - WHO WE ARE
========================================================= */

.about-story {
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.about-story-image {
  height: 560px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--soft);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-story-content h2 {
  color: var(--navy);
  font-size: 45px;
  line-height: 1.15;
  margin: 15px 0 25px;
}

.about-story-content h2 span {
  color: var(--gold);
}

.about-story-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-story-content .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 10px;
}

.about-story-content .text-link:hover {
  color: var(--navy);
}


/* =========================================================
   ABOUT PAGE - MISSION / VISION / VALUES
========================================================= */

.about-values {
  background: var(--soft);
}

.about-values .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.about-values .value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 35px 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.about-values .value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.about-values .value-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(198, 138, 22, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 25px;
}

.about-values .value-number {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-values .value-card h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 15px;
}

.about-values .value-card p {
  color: var(--muted);
  line-height: 1.7;
}


/* =========================================================
   ABOUT PAGE - WHY IT MATTERS
========================================================= */

.why-matters {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.why-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.why-card:hover .why-image img {
  transform: scale(1.04);
}

.why-content {
  padding: 28px;
}

.why-content > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.why-content h3 {
  color: var(--navy);
  font-size: 26px;
  margin: 10px 0 12px;
}

.why-content p {
  color: var(--muted);
  line-height: 1.7;
}


/* =========================================================
   ABOUT PAGE - IMPACT
========================================================= */

.about-impact {
  background: var(--cream);
}

.about-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-impact-content h2 {
  color: var(--navy);
  font-size: 44px;
  line-height: 1.15;
  margin: 15px 0 25px;
}

.about-impact-content h2 span {
  color: var(--gold);
}

.about-impact-content > p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.impact-stats {
  display: flex;
  gap: 35px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.impact-stat {
  display: flex;
  flex-direction: column;
}

.impact-stat strong {
  color: var(--navy);
  font-size: 32px;
  line-height: 1;
}

.impact-stat span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.about-impact-images {
  position: relative;
  min-height: 530px;
}

.impact-image-main {
  width: 80%;
  height: 440px;
  overflow: hidden;
  border-radius: 16px;
  margin-left: auto;
  box-shadow: var(--shadow);
}

.impact-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-image-small {
  position: absolute;
  width: 45%;
  height: 220px;
  left: 0;
  bottom: 0;
  border: 8px solid var(--cream);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.impact-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* =========================================================
   ABOUT PAGE - CTA
========================================================= */

.about-page .cta-section {
  background: var(--navy);
}


/* =========================================================
   OLD ABOUT PAGE SUPPORT
========================================================= */

.about-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.about-content h2 {
  color: var(--navy);
  font-size: 42px;
  line-height: 1.15;
  margin-top: 15px;
}

.about-content h2 span {
  color: var(--gold);
}

.about-content p {
  color: var(--muted);
  margin-bottom: 20px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-grid h2 {
  color: var(--navy);
  font-size: 42px;
  line-height: 1.15;
  margin: 15px 0;
}

.contact-grid h2 span {
  color: var(--gold);
}

.contact-grid > div > p {
  color: var(--muted);
}

.contact-info {
  margin-top: 35px;
}

.contact-info div {
  margin-bottom: 25px;
}

.contact-info strong {
  color: var(--navy);
}

.contact-info p {
  color: var(--muted);
}

.contact-info a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--gold);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
  background: var(--cream);
  padding: 40px;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 138, 22, 0.10);
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #e53935;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}


/* =========================================================
   FORM VALIDATION
========================================================= */

.form-group small {
  display: block;
  margin-top: 4px;
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #b42318;
  background-color: #fdd4d4;
  border-radius: 2px;
  min-height: 0;
}

.form-group small:empty {
  display: none;
}

.form-group input[aria-invalid="true"]:focus,
.form-group textarea[aria-invalid="true"]:focus {
  border-color: #e53935;
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.15);
}

.form-success {
  margin-top: 15px;
  color: var(--navy);
  font-weight: 700;
}

.form-error {
  margin-top: 15px;
  color: #b42318;
  font-weight: 600;
}


/* =========================================================
   EVENTS
========================================================= */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.event-image {
  height: 220px;
  padding: 0;
  overflow: hidden;
  background: var(--soft);
}

.event-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.event-content {
  padding: 25px;
}

.event-date {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.event-content h3 {
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 10px;
}

.event-content p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.event-content ul {
  margin: 15px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.event-content li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.event-location {
  font-size: 13px;
  color: var(--muted);
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft);
  position: relative;
  padding: 0;
  margin: 0;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  padding: 0;
  margin: 0;
  position: relative;
}

.gallery-item img,
.gallery-placeholder img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin: 0;
  padding: 0;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(16, 38, 79, 0.25);
}


/* =========================================================
   EVENT DETAILS
========================================================= */

.event-details {
  max-width: 850px;
  margin: auto;
}

.event-details h2 {
  color: var(--navy);
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.event-details p {
  color: var(--muted);
  margin-bottom: 20px;
}

.event-meta {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 20px;
  margin: 30px 0;
}

.event-meta p {
  margin-bottom: 8px;
}

.event-meta p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer,
.site-footer {
  background: var(--navy-2);
  color: var(--white);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-about,
.footer-column {
  min-width: 0;
}

.footer-logo {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 15px;
}

.site-footer .footer-logo {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer p,
.site-footer .footer-column p {
  color: #c1c8d3;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer .footer-column p {
  max-width: 360px;
}

.footer h4,
.site-footer .footer-column h3 {
  margin-bottom: 20px;
  color: var(--gold-light);
}

.footer a,
.site-footer .footer-column li a {
  display: block;
  color: #c1c8d3;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer a:hover,
.site-footer .footer-column li a:hover {
  color: var(--gold-light);
}

.site-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-column li {
  margin-bottom: 10px;
}

.site-footer .contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer .contact-list i {
  color: #25d366;
}

.footer-bottom,
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 20px;
}

.footer-bottom p,
.site-footer .footer-bottom p {
  color: #c1c8d3;
  font-size: 13px;
  margin: 0;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    outline 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(16, 38, 79, 0.15);
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}


/* Instagram */
.social-links a:nth-child(1) {
  color: #e4405f;
}


/* Facebook */
.social-links a:nth-child(2) {
  color: #1877f2;
}


/* YouTube */
.social-links a:nth-child(3) {
  color: #ff0000;
}


/* WhatsApp */
.social-links a:nth-child(4) {
  color: #25d366;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a:nth-child(1) svg rect,
.social-links a:nth-child(1) svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links a:nth-child(1) svg circle:last-child {
  fill: currentColor;
  stroke: none;
}


/* Font Awesome icons */
.social-links i {
  font-size: 18px;
  line-height: 1;
}


/* =========================================================
   GET INVOLVED / GENERAL CARDS
========================================================= */

.get-involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.get-involved-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 35px;
  transition: 0.3s ease;
}

.get-involved-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.get-involved-card h3 {
  color: var(--navy);
  margin: 15px 0 10px;
}

.get-involved-card p {
  color: var(--muted);
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 850px) {

  /* =======================================================
     HEADER / MOBILE MENU
  ======================================================= */

  .nav-container {
    min-height: 72px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(16, 38, 79, 0.08);
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 10px;
  }

  .nav-button {
    text-align: center;
  }

  .menu-toggle {
    display: block;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--navy);
    line-height: 1;
    padding: 5px;
  }


  /* =======================================================
     HOMEPAGE HERO
  ======================================================= */

  .hero {
    padding: 70px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-box {
    height: 350px;
  }


  /* =======================================================
     PROGRAMS HERO
  ======================================================= */

  .programs-page-hero {
    min-height: 480px;
    background-position: center;
    padding: 70px 0;
  }

  .programs-page-hero h1 {
    font-size: 48px;
  }


  /* =======================================================
     GENERAL GRIDS
  ======================================================= */

  .values-grid,
  .program-grid,
  .events-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }


  /* =======================================================
     VISION
  ======================================================= */

  .vision-points {
    grid-template-columns: repeat(2, 1fr);
  }


  /* =======================================================
     ACTIVITIES
  ======================================================= */

  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* =======================================================
     IMPACT
  ======================================================= */

  .impact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }


  /* =======================================================
     OUR IMPACT / ADIRE IMAGE
  ======================================================= */

  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-preview-image {
    width: 100%;
    height: 420px;
  }

  .about-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }


  /* =======================================================
     IMPACT STORIES
  ======================================================= */

  .impact-story {
    margin-bottom: 70px;
  }


  /* =======================================================
     BREAST CANCER
  ======================================================= */

  .breast-cancer-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .breast-cancer-image {
    width: 100%;
    height: 400px;
  }


  /* =======================================================
     IMPACT FEATURE IMAGE
  ======================================================= */

  .impact-feature-image {
    padding-bottom: 70px;
  }

  .impact-feature-image .container {
    width: 90%;
  }

  .impact-feature-image img {
    height: 400px;
    border-radius: 12px;
  }


  /* =======================================================
     HEADINGS
  ======================================================= */

  .section-heading h2,
  .impact h2,
  .cta h2,
  .cta-section h2 {
    font-size: 35px;
  }


  /* =======================================================
     OLD ABOUT
  ======================================================= */

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }


  /* =======================================================
     CONTACT
  ======================================================= */

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 25px;
  }


  /* =======================================================
     EVENTS
  ======================================================= */

  .event-image {
    height: 220px;
  }


  /* =======================================================
     GALLERY
  ======================================================= */

  .gallery-item {
    height: 260px;
  }

  .gallery-item:hover img {
    transform: none;
    box-shadow: none;
  }


  /* =======================================================
     EVENT DETAILS
  ======================================================= */

  .event-details h2 {
    font-size: 32px;
  }


  /* =======================================================
     FOOTER
  ======================================================= */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }


  /* =======================================================
     SOCIAL
  ======================================================= */

  .social-links {
    margin-top: 20px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .social-links svg {
    width: 18px;
    height: 18px;
  }


  /* =======================================================
     ABOUT PAGE
  ======================================================= */

  .about-hero {
    padding: 70px 0;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-hero-content h1 {
    font-size: 45px;
  }

  .about-hero-image {
    min-height: 450px;
  }

  .about-hero-image img {
    width: 92%;
    height: 430px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-story-image {
    height: 450px;
  }

  .about-values .values-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-impact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-impact-content h2 {
    font-size: 38px;
  }

  .about-impact-images {
    min-height: 480px;
  }


  /* =======================================================
     GET INVOLVED
  ======================================================= */

  .get-involved-grid {
    grid-template-columns: 1fr;
  }


  /* =======================================================
     CTA
  ======================================================= */

  .cta-section {
    padding: 75px 0;
  }

  .cta-section h2 {
    font-size: 36px;
  }
}


/* =========================================================
   SMALL MOBILE DEVICES
========================================================= */

@media (max-width: 480px) {

  /* =======================================================
     GLOBAL
  ======================================================= */

  .container {
    width: 92%;
  }

  .section {
    padding: 65px 0;
  }


  /* =======================================================
     HEADER
  ======================================================= */

  .nav-container {
    min-height: 70px;
  }

  .logo img {
    width: 155px;
  }

  .menu-toggle {
    font-size: 26px;
  }


  /* =======================================================
     HOMEPAGE HERO
  ======================================================= */

  .hero {
    padding: 55px 0;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-image-box {
    height: 300px;
    padding: 15px;
  }


  /* =======================================================
     INNER PAGE HERO
  ======================================================= */

  .page-hero {
    padding: 65px 0;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 16px;
  }


  /* =======================================================
     PROGRAMS HERO
  ======================================================= */

  .programs-page-hero {
    min-height: 480px;
    background-position: center;
    padding: 70px 0;
  }

  .programs-page-hero h1 {
    font-size: 38px;
  }

  .programs-page-hero p {
    font-size: 15px;
    line-height: 1.7;
  }


  /* =======================================================
     HEADINGS
  ======================================================= */

  .section-heading h2,
  .impact h2,
  .cta h2 {
    font-size: 32px;
  }


  /* =======================================================
     OUR IMPACT / ADIRE IMAGE
  ======================================================= */

  .about-preview-image {
    width: 100%;
    height: 360px;
  }

  .about-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }


  /* =======================================================
     BREAST CANCER
  ======================================================= */

  .breast-cancer-image {
    height: 340px;
  }


  /* =======================================================
     IMPACT FEATURE IMAGE
  ======================================================= */

  .impact-feature-image {
    padding-bottom: 60px;
  }

  .impact-feature-image .container {
    width: 92%;
  }

  .impact-feature-image img {
    height: 300px;
    border-radius: 10px;
  }


  /* =======================================================
     CARDS
  ======================================================= */

  .value-card,
  .program-card {
    padding: 25px;
  }

  .program-card-image {
    padding: 0;
  }

  .program-card-image .program-content {
    padding: 25px;
  }


  /* =======================================================
     CONTACT
  ======================================================= */

  .contact-form-wrapper {
    padding: 20px;
  }

  .contact-grid h2 {
    font-size: 32px;
  }


  /* =======================================================
     BUTTONS
  ======================================================= */

  .btn {
    width: 100%;
    text-align: center;
  }


  /* =======================================================
     GALLERY
  ======================================================= */

  .gallery-item {
    height: 240px;
  }


  /* =======================================================
     FOOTER
  ======================================================= */

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }


  /* =======================================================
     ABOUT PAGE
  ======================================================= */

  .about-hero {
    padding: 55px 0;
  }

  .about-hero-content h1 {
    font-size: 36px;
  }

  .about-hero-content p {
    font-size: 15px;
  }

  .about-hero-image {
    min-height: 350px;
  }

  .about-hero-image img {
    width: 92%;
    height: 340px;
  }

  .about-hero-badge {
    padding: 15px 18px;
  }

  .about-hero-badge strong {
    font-size: 26px;
  }

  .about-story-image {
    height: 320px;
  }

  .about-story-content h2 {
    font-size: 32px;
  }

  .about-impact-content h2 {
    font-size: 32px;
  }

  .about-impact-images {
    min-height: 360px;
  }

  .impact-image-main {
    height: 320px;
    width: 85%;
  }

  .impact-image-small {
    width: 48%;
    height: 160px;
  }

  .impact-stats {
    gap: 22px;
  }

  .impact-stat strong {
    font-size: 26px;
  }


  /* =======================================================
     VISION
  ======================================================= */

  .vision-points {
    grid-template-columns: 1fr;
  }


  /* =======================================================
     ACTIVITIES
  ======================================================= */

  .activity-grid {
    grid-template-columns: 1fr;
  }


  /* =======================================================
     CTA
  ======================================================= */

  .cta-section {
    padding: 65px 0;
  }

  .cta-section h2 {
    font-size: 31px;
  }
}