/* ===================================
   SAFETY FOR EVERY GIRL - MAIN STYLES
   Consolidated from public and html-output projects
   =================================== */




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

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-size: 140px;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 2px;
  font-family: var(--font-bricolage);
}

/* Tag base */
.tag {
  position: absolute;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  font-weight: 500;
  white-space: nowrap;
}

/* Individual tags */
.tag-blue {
  background: #4f8df7;
  color: #fff;
  top: 35%;
  left: 18%;
  transform: rotate(-6deg);
}

.tag-orange {
  background: #f4a640;
  color: #fff;
  top: 28%;
  right: 22%;
}

.tag-yellow {
  background: #f6c453;
  color: #fff;
  bottom: 32%;
  left: 50%;
  transform: translateX(-50%);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .tag-blue {
    top: 25%;
    left: 10%;
  }

  .tag-orange {
    top: 18%;
    right: 10%;
  }

  .tag-yellow {
    bottom: 22%;
  }
}




/* CSS Variables */
:root {
  /* Colors */
  --pink-main: #e64d73;
  --pink-50: rgba(254, 242, 244, 1);
  --pink-100: #fde6ea;
  --pink-200: rgba(250, 209, 217, 1);
  --pink-500: rgba(230, 77, 115, 1);
  --pink500-main: rgba(230, 77, 115, 1);
  --pink-600: rgba(207, 69, 103, 1);
  --pink-950: #470a20;
  --burgundy: rgba(127, 28, 66, 1);
  --orange-500: rgba(242, 128, 90, 1);
  --white: #ffffff;
  --black: #000000;
  --genericblack: rgba(0, 0, 0, 1);
  --dark: #2c2124;
  --warning-400: #fbbf24;

  /* Typography */
  --font-montserrat: 'Montserrat', Helvetica, sans-serif;
  --font-inter: 'Inter', Helvetica, sans-serif;
  --font-bricolage: 'Bricolage Grotesque', Helvetica, sans-serif;
}

.mobile-only {
  display: none;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-montserrat), sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-bricolage), sans-serif;
  font-weight: 700;
}

.dark {
  color: var(--dark);
}

.pink {
  color: var(--pink-main);
}

.white {
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--font-inter);
}

.btn-primary {
  background: var(--pink-main);
  color: var(--white);
  box-shadow: 0px 4px 6px -4px rgba(230, 77, 115, 0.3), 0px 10px 15px -3px rgba(230, 77, 115, 0.3);
}

.btn-primary:hover {
  background: #d4456a;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid #e7a0c6;
}

.btn-outline:hover {
  background: rgba(231, 160, 198, 0.1);
}

.btn-white {
  background: var(--white);
  color: var(--pink-main);
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #f5f5f5;
}

.btn-full {
  width: 100%;
}

.btn-donate {
  height: 40px;
  padding: 0 1rem;
  background-color: var(--pink500-main);
  color: white;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-inter);
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0px 4px 6px -4px rgba(230, 77, 115, 0.3), 0px 10px 15px -3px rgba(230, 77, 115, 0.3);
  transition: background-color 0.2s;
}

.btn-donate:hover {
  background-color: var(--pink-600);
}

/* Divider */
.divider {
  width: 80px;
  height: 4px;
  background: var(--pink-main);
  border-radius: 4px;
}

.divider.gradient {
  background: linear-gradient(90deg, var(--pink-main), #f2805a);
}

/* Section Container */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.section-header.left {
  align-items: flex-start;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

/* Header / Navigation */
header {
  width: 100%;
  background-color: var(--pink-950);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header {
  background: #470920;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-content {
  display: flex;
  width: 100%;
  max-width: 1212px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 19px 1rem;
  margin: 0 auto;
}

.logo,
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img,
.logo-img {
  width: 48px;
  height: 49px;
}

.logo span,
.logo-text {
  font-weight: 700;
  font-size: 18px;
  color: white;
  font-family: var(--font-montserrat);
  line-height: 30px;
}

header .logo-text {
  color: white;
  font-size: 1.25rem;
}

.nav,
.nav-desktop {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-desktop {
  display: none;
}

.nav a,
.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  transition: opacity 0.3s;
  font-family: var(--font-montserrat);
  font-size: 1rem;
  line-height: 1.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
}

header .nav-link {
  color: white;
}

.nav a:hover,
.nav-link:hover {
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.donate-btn {
  padding: 10px 24px;
  font-size: 14px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: white;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s;
}

header .mobile-menu-btn span {
  background: white;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--pink-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  padding: 1rem 0;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile .nav-link {
  padding: 0.75rem 1.5rem;
  display: block;
}

/* Home page header overrides */
.home-header {
  background: #fff !important;
}

.home-header .logo span {
  color: var(--black) !important;
}

.home-header .nav a {
  color: var(--black) !important;
}

.home-header .mobile-menu-btn span {
  background: var(--dark) !important;
}

.home-header .nav.active {
  background: var(--white);
}


/* Hero Section */
.hero {
  background: linear-gradient(180deg, var(--white) 0%, rgba(246, 221, 238, 0.1) 100%);
  padding: 10px 0 10px !important;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.badge {
  padding: 10px 20px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  height: 36px;
  background-color: rgba(230, 77, 115, 0.2);
  color: var(--pink500-main);
  font-family: var(--font-inter);
  border: none;
}

.badge-blue {
  background: #2492e5;
  transform: rotate(3deg);
  color: white;
}

.badge-orange {
  background: #ef9622;
  color: white;
}

.badge-yellow {
  background: var(--warning-400);
  color: white;
}

/* .hero-title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
  font-family: var(--font-bricolage);
} */

.hero-title span {
  display: block;
}

.hero-text {
  max-width: 900px;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-content-section {
  padding: 20px 0 60px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content .hero-text {
  margin-bottom: 30px;
}

.hero-content .hero-buttons {
  margin-bottom: 0;
}


.hero-image {
  max-width: 100%;
  height: auto;
}

/* Why Section */
.why-section {
  padding: 80px 0;
  background: var(--white);
}

.why-content {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.why-text {
  font-size: 18px;
  color: rgba(44, 33, 36, 0.8);
  margin-bottom: 20px;
  line-height: 1.8;
}

.why-highlight {
  font-size: 18px;
  color: rgba(44, 33, 36, 0.8);
  margin-bottom: 30px;
  line-height: 1.8;
}

.why-quote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1024px;
  margin: 0 auto;
}

.card {
  background: var(--pink-100);
  border-radius: 24px;
  padding: 30px;
}

.card h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--dark);
}

.card-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.6);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-item img {
  width: 48px;
  height: 48px;
}

.card-item span {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
}

/* Vision Section */
.vision-section {
  position: relative;
  background: var(--pink-950);
  padding: 90px 0;
  overflow: hidden;
}

.vision-bg-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(230, 77, 115, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.vision-bg-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(242, 128, 90, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.vision-section .section-container {
  position: relative;
  z-index: 1;
}

.vision-text {
  max-width: 1000px;
  margin: 0 auto 60px;
  font-size: 30px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.4;
}

.vision-image {
  display: block;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 100px;
  border-radius: 20px;
}

.vision-tagline {
  font-family: var(--font-inter), sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: var(--white);
}

.mission-intro {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(44, 33, 36, 0.7);
  text-align: center;
  line-height: 1.8;
}

.mission-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgba(44, 33, 36, 0.8);
  text-align: center;
  margin-bottom: 50px;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.mission-card {
  background: var(--pink-100);
  border: 1px solid #f4e1e8;
  border-radius: 16px;
  padding: 20px;
}

.mission-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mission-card img {
  width: 66px;
  height: 66px;
  margin-bottom: 0;
}

.mission-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}

.mission-card p {
  font-size: 16px;
  color: rgba(44, 33, 36, 0.7);
  line-height: 1.6;
}

.cta-card {
  background: var(--pink-main);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0px 25px 50px -12px rgba(230, 77, 115, 0.2);
}

.cta-card h3 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Approach Section */
.approach-section {
  padding: 80px 0;
  background: linear-gradient(172deg, rgba(244, 225, 232, 0.2) 0%, #fcfaf8 100%);
  text-align: center;
}

.approach-intro {
  font-size: 18px;
  font-weight: 500;
  color: rgba(44, 33, 36, 0.7);
  margin-bottom: 50px;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.approach-card {
  background: var(--white);
  border: 1px solid rgba(244, 225, 232, 0.5);
  border-radius: 16px;
  padding: 25px 17px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.approach-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.approach-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.approach-card p {
  font-size: 14px;
  color: rgba(44, 33, 36, 0.6);
  line-height: 1.6;
}

/* Partners Section */
.partners-section {
  padding: 60px 0;
  background: #fcfaf8;
  text-align: center;
}

.partners-section h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 20px;
  text-align: center;
}

.partners-section .divider {
  margin: 0 auto;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.partner-logo {
  font-family: var(--font-inter), sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgba(44, 33, 36, 0.6);
  opacity: 0.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--pink-main);
  text-align: center;
}

.contact-section h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}

.contact-form {
  max-width: 670px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
  height: 120px;
  resize: none;
}

/* Next Step Section */
.next-step-section {
  position: relative;
  background: var(--pink-950);
  padding: 100px 0;
  overflow: hidden;
}

.next-step-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 45px;
}

.next-step-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 20px;
  object-fit: cover;
}

.next-step-text {
  flex: 1;
  min-width: 300px;
}

.next-step-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Footer */
.footer,
footer {
  background: var(--pink-950);
  padding: 30px 0 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 36px;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo img {
  width: 48px;
  height: 49px;
}

.footer-logo span {
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}

.footer-text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(152, 161, 178, 0.3);
  text-align: center;
}

.footer-bottom span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   MOBILE RESPONSIVENESS
   Mobile-first approach
   =================================== */

/* Tablets and below (1024px and down) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 80px;
    /* Bridge gap between 140px (desktop) and 40px (mobile) */
    line-height: 1;
  }

  .approach-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 60px;
  }

  .vision-tagline {
    font-size: 36px;
  }
}

/* Mobile devices (768px and down) */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav.active {
    display: flex;
  }

  .nav a,
  .nav-link {
    color: var(--dark) !important;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: left;
  }

  .donate-btn {
    display: none;
  }

  .mobile-only {
    display: block !important;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

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

  .mission-cards {
    grid-template-columns: 1fr;
  }

  .approach-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .vision-text {
    font-size: 22px;
  }

  .vision-tagline {
    font-size: 28px;
  }

  .cta-card h3 {
    font-size: 24px;
  }

  .cta-card p {
    font-size: 16px;
  }

  .contact-section h2 {
    font-size: 32px;
  }

  .next-step-content {
    flex-direction: column;
  }

  .next-step-image {
    max-width: 100%;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .partners-logos {
    gap: 30px;
  }

  .partner-logo {
    font-size: 18px;
  }

  .badge {
    font-size: 14px;
    padding: 8px 16px;
  }

  .logo span {
    font-size: 14px;
  }

  .section-container {
    padding: 0 20px;
  }
}

/* Small mobile devices (639px and down) */
@media (max-width: 639px) {

  /* Typography adjustments for mobile */
  .hero-title {
    font-size: 3.5rem !important;
    /* Kept large for small screens */
    line-height: 1.1 !important;
  }

  h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
  }

  /* Hide logo text on very small screens */
  .logo-text {
    display: none !important;
  }

  /* Make sections more compact on mobile */
  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Reduce padding for hero sections */
  .hero,
  .hero-section {
    padding: 3rem 1rem !important;
  }

  /* Adjust button sizes for mobile */
  .btn-donate {
    font-size: 0.75rem;
    padding: 0 0.75rem;
  }

  /* Make cards stack on mobile */
  .grid {
    grid-template-columns: 1fr !important;
  }

  /* Adjust spacing for mobile */
  .section-container {
    padding: 0 1rem;
  }
}

/* Extra small devices (480px and down) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 4rem !important;
    font-weight: 800 !important;
    line-height: 1.1;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .vision-tagline {
    font-size: 22px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 16px;
    min-height: 44px;
    /* Touch-friendly */
  }

  .hero-badges {
    gap: 10px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .logo span {
    display: none;
  }

  .why-quote {
    font-size: 16px;
  }

  /* Ensure all interactive elements are touch-friendly */
  a,
  button,
  input,
  select,
  textarea {
    min-height: 44px;
    min-width: 44px;
  }

  /* Improve form usability on mobile */
  .form-group input,
  .form-group textarea {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 20px;
  }
}

/* Work Section Layout */
.work-section {
  width: 100%;
  padding: 5rem 2rem;
  background-color: white;
}

.work-content-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.work-image-col,
.work-text-col {
  flex: 1;
  width: 100%;
}

.work-image {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 1rem;
}

.work-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.work-icon-bg {
  background-color: rgba(230, 77, 115, 0.2);
  border-radius: 9999px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-header h2 {
  font-family: var(--font-bricolage);
  font-weight: 700;
  font-size: 1.875rem;
  color: black;
  margin: 0;
}

.work-description {
  font-family: var(--font-inter);
  color: black;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.work-highlight {
  font-family: var(--font-inter);
  font-weight: 600;
  color: var(--pink500-main);
  font-size: 1.125rem;
}

/* Mobile adjustments for Work Section */
@media (max-width: 768px) {
  .work-content-row {
    flex-direction: column;
  }

  .work-image-col {
    order: -1;
    /* Image first on mobile */
  }

  /* Work Section Additions */
  .bg-pink-100 {
    background-color: var(--pink-100);
  }

  .work-list-container h3 {
    font-family: var(--font-bricolage);
    font-weight: 600;
    font-size: 1rem;
    color: black;
    margin-bottom: 0.75rem;
  }

  .work-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .work-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-inter);
    color: black;
  }

  .work-list .dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--pink500-main);
    border-radius: 9999px;
    flex-shrink: 0;
  }

  .video-placeholder {
    background-color: black;
    width: 100%;
    height: 20rem;
    border-radius: 1rem;
    position: relative;
  }

  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #dc2626;
    border-radius: 9999px;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .play-btn:hover {
    background-color: #b91c1c;
  }
}

/* ===================================
   NEW HOME PAGE SECTIONS
   =================================== */

/* Volunteer Section */
.volunteer-section {
  background-color: var(--genericblack);
  padding: 80px 0;
  color: var(--white);
}

.volunteer-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.volunteer-text {
  flex: 1;
}

.volunteer-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.volunteer-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 77, 115, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink500-main);
}

.volunteer-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.volunteer-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.volunteer-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.volunteer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--pink500-main);
  background: rgba(230, 77, 115, 0.1);
  border-radius: 50%;
  padding: 2px;
}

.volunteer-image-col {
  flex: 1;
}

.volunteer-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* Donate Section - Home Specific */
.donate-home-section {
  background-color: var(--pink-50);
  padding: 100px 0;
  text-align: center;
}

.donate-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.donate-icon {
  width: 40px;
  height: 40px;
  background: rgba(230, 77, 115, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink500-main);
}

.donate-amount-widget {
  background: white;
  padding: 40px;
  border-radius: 24px;
  max-width: 800px;
  margin: 40px auto 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.amount-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  text-align: center;
}

.amount-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.amount-btn {
  padding: 12px 24px;
  border: 1px solid #eee;
  background: #f9f9f9;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--pink-100);
  border-color: var(--pink500-main);
  color: var(--pink500-main);
}

.custom-amount {
  width: 100%;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 16px;
  text-align: center;
}

/* Partner Details Section */
.partner-details-section {
  padding: 80px 0;
  background: #fff;
}

.partner-content-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.partner-images-col {
  flex: 1;
  position: relative;
}

.partner-collage {
  width: 100%;
  border-radius: 20px;
}

.partner-text-col {
  flex: 1;
}

.partner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

/* Period Summit Section */
.period-summit-section {
  background-color: var(--pink-50);
  padding: 80px 0;
  text-align: center;
}

.summit-badge {
  background: var(--pink-100);
  color: var(--pink500-main);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 24px;
}

.summit-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  margin-bottom: 24px;
}

/* Video Overlay Section */
.video-overlay-section {
  background-color: var(--black);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--pink500-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-caption {
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 24px;
}

/* Mobile Responsiveness for new sections */
@media (max-width: 768px) {

  .volunteer-content,
  .partner-content-row {
    flex-direction: column;
    gap: 40px;
  }

  .volunteer-image-col,
  .partner-images-col {
    order: -1;
  }

  .donate-amount-widget {
    padding: 24px;
  }

  .video-container {
    height: 300px;
  }
}

/* About Page Refactoring */
.about-story-section {
  width: 100%;
  position: relative;
  padding: 5rem 11rem;
}

.about-story-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 518px;
}

.about-story-image-wrapper {
  position: absolute;
  top: 203px;
  right: 123px;
  width: 597px;
  height: 436px;
}

.about-commitment-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--genericblack);
  padding: 8.75rem 0;
}

.about-commitment-container {
  width: 100%;
  max-width: 1152px;
  padding: 0 1rem;
}

.about-commitment-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}

.about-commitment-title {
  color: white;
  font-size: 2.25rem;
  text-align: center;
  line-height: 2.5rem;
  font-family: var(--font-bricolage);
  font-weight: 700;
  white-space: nowrap;
}

.about-commitment-subtitle {
  font-family: var(--font-inter);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  text-align: center;
  line-height: 1.5rem;
  white-space: nowrap;
}

.about-story-quote {
  position: absolute;
  top: 424px;
  right: 250px;
  width: 286px;
  height: 68px;
  background-color: var(--pink500-main);
  border-radius: 1rem;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.about-story-checks {
  margin-top: 1.5rem;
}

.about-story-conclusion {
  margin-top: 1.5rem;
  max-width: 463px;
  font-family: var(--font-inter);
  font-weight: 500;
  color: var(--genericblack);
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* Mobile Responsiveness for About Page */
@media (max-width: 1024px) {
  .about-story-section {
    padding: 5rem 2rem;
  }

  .about-story-image-wrapper {
    right: 2rem;
    width: 45%;
    height: auto;
    aspect-ratio: 4/3;
  }

  .about-story-quote {
    right: 2rem;
    top: auto;
    bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .about-story-section {
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
  }

  .about-story-content {
    max-width: 100%;
    order: 1;
    /* Text Top */
  }

  .about-story-checks {
    order: 2;
    /* Below Text */
  }

  .about-story-conclusion {
    order: 3;
    /* Below Checks */
  }

  .about-story-quote {
    position: static;
    margin-top: 1.5rem;
    order: 4;
    /* Quote below Text/Conclusion */
    width: 100%;
    max-width: 300px;
    align-self: center;
  }

  .about-story-image-wrapper {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin-top: 2rem;
    order: 5;
    /* Image at Bottom */
    border-radius: 12px;
    overflow: hidden;
  }

  .about-commitment-section {
    padding: 4rem 0;
  }

  .about-commitment-title,
  .about-commitment-subtitle {
    white-space: normal;
    /* Fix text overlap */
  }
}

/* Gallery Section on Homepage */
.gallery-section {
  padding: 80px 0;
  background: var(--pink-50);
}

.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.gallery-item-home {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 250px;
}

.gallery-item-home:hover {
  transform: translateY(-5px);
}

.gallery-item-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-home:hover img {
  transform: scale(1.05);
}


/* Mobile adjustments for Gallery */
@media (max-width: 1024px) {
  .gallery-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

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