/* =========================================
   WOMEN SOCIETY
   Main Stylesheet
========================================= */

:root {
  --primary: #a83f68;
  --primary-dark: #812c4e;
  --primary-light: #f8e8ef;

  --secondary: #d79a45;
  --green: #718b68;

  --dark: #292329;
  --text: #5f5960;
  --light-text: #8b858b;

  --white: #ffffff;
  --cream: #fffaf7;
  --light: #f8f4f2;
  --border: #e9e1df;

  --shadow: 0 15px 45px rgba(42, 28, 35, 0.08);

  --heading-font: "Playfair Display", Georgia, serif;
  --body-font: "DM Sans", Arial, sans-serif;

  --container: 1180px;
}


/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}


/* =========================================
   GLOBAL
========================================= */

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 15px;
}

.section-label.light {
  color: #f3c4d5;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.contact-info h2 {
  color: var(--dark);
  font-family: var(--heading-font);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-heading h2 span,
.about-content h2 span,
.contact-info h2 span {
  color: var(--primary);
}

.section-heading p {
  color: var(--text);
  font-size: 16px;
}


/* =========================================
   HEADER
========================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
  border-bottom-color: var(--border);
}

.nav-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-family: var(--heading-font);
  font-size: 24px;
}

.logo strong {
  display: block;
  color: var(--dark);
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 1.1;
}

.logo small {
  display: block;
  color: var(--primary);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
}

.nav .nav-btn {
  background: var(--primary);
  color: white;
  padding: 12px 21px;
  border-radius: 30px;
}

.nav .nav-btn:hover {
  background: var(--primary-dark);
  color: white;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px auto;
  transition: 0.3s;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 14px 25px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(168, 63, 104, 0.25);
}

.btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

.btn-light {
  background: white;
  color: var(--primary);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 750px;
  position: relative;
  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(50, 25, 37, 0.9) 0%,
      rgba(50, 25, 37, 0.65) 50%,
      rgba(50, 25, 37, 0.25) 100%
    ),
    radial-gradient(
      circle at 80% 30%,
      #d99aa9 0,
      #a96279 28%,
      #613d4b 70%
    );

  color: white;
  padding-top: 82px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(255,255,255,0.12) 0,
      transparent 30%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 80px;
}

.hero-text {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #f7c8d7;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(45px, 6vw, 78px);
  line-height: 1.06;
  margin-bottom: 25px;
}

.hero h1 span {
  display: block;
  color: #f0b7cb;
}

.hero-text > p {
  max-width: 650px;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-card {
  padding: 35px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
}

.hero-card-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #ffd0df;
  font-size: 27px;
  margin-bottom: 20px;
}

.hero-card h3 {
  color: white;
  font-family: var(--heading-font);
  font-size: 25px;
  margin-bottom: 12px;
}

.hero-card p {
  color: rgba(255,255,255,0.8);
}


/* =========================================
   ABOUT
========================================= */

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-placeholder {
  min-height: 540px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 35px;
  color: white;

  background:
    linear-gradient(
      0deg,
      rgba(61, 26, 43, 0.85),
      rgba(61, 26, 43, 0.05)
    ),
    linear-gradient(
      135deg,
      #e5b8c7,
      #a9647c 45%,
      #694254
    );
}

.about-placeholder div {
  position: relative;
}

.about-placeholder span {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.about-placeholder strong {
  font-family: var(--heading-font);
  font-size: 35px;
}

.year-badge {
  position: absolute;
  right: -35px;
  bottom: 40px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--secondary);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.year-badge strong {
  font-family: var(--heading-font);
  font-size: 30px;
  line-height: 1;
}

.year-badge span {
  font-size: 11px;
  margin-top: 6px;
}

.about-content h2 {
  max-width: 650px;
}

.about-content > p {
  margin-bottom: 17px;
}

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
}

.value {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: bold;
}

.value h4 {
  color: var(--dark);
  margin-bottom: 2px;
}

.value p {
  font-size: 13px;
}


/* =========================================
   PROGRAMS
========================================= */

.programs {
  background: white;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.program-card {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.program-card.featured {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  border-color: var(--primary);
}

.program-icon {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 27px;
  margin-bottom: 25px;
}

.computer-icon {
  background: #edf1fa;
  color: #526c9c;
}

.soap-icon {
  background: rgba(255,255,255,0.15);
  color: #ffd0df;
}

.incense-icon {
  background: #f8eee2;
  color: #b57c36;
}

.program-number {
  position: absolute;
  top: 35px;
  right: 30px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.4;
}

.program-card h3 {
  color: var(--dark);
  font-family: var(--heading-font);
  font-size: 27px;
  margin-bottom: 12px;
}

.program-card.featured h3 {
  color: white;
}

.program-card p {
  font-size: 14px;
  margin-bottom: 25px;
}

.program-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.program-card li {
  position: relative;
  font-size: 13px;
  padding: 5px 0 5px 22px;
}

.program-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.program-card.featured li::before {
  color: #f8c2d4;
}

.program-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.program-card.featured .program-link {
  color: #ffd2e0;
}


/* =========================================
   MISSION
========================================= */

.mission {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(
      110deg,
      #682e48,
      #9b4265
    );
  color: white;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px;
  right: -100px;
}

.mission-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.mission h2 {
  color: white;
  font-family: var(--heading-font);
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.mission h2 span {
  color: #f2b9cc;
}

.mission-text p {
  max-width: 570px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.mission-quote {
  padding: 35px;
  border-left: 2px solid rgba(255,255,255,0.35);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.5;
  color: #eeb0c5;
}

.mission blockquote {
  color: white;
  font-family: var(--heading-font);
  font-size: 27px;
  line-height: 1.4;
  margin: 20px 0;
}

.quote-line {
  width: 50px;
  height: 2px;
  background: #eeb0c5;
  margin-bottom: 12px;
}

.mission-quote > span:last-child {
  font-size: 13px;
  color: #f1c2d2;
}


/* =========================================
   IMPACT
========================================= */

.impact {
  background: var(--cream);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 35px 20px;
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-icon {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 12px;
}

.stat-card strong {
  display: block;
  color: var(--dark);
  font-family: var(--heading-font);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card span {
  font-size: 13px;
  color: var(--light-text);
}

.stats-note {
  text-align: center;
  margin-top: 20px;
  font-size: 11px;
  color: var(--light-text);
}


/* =========================================
   HOW WE WORK
========================================= */

.how-we-work {
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 18px;
}

.step {
  text-align: center;
}

.step-number {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 18px;
}

.step h3 {
  font-family: var(--heading-font);
  color: var(--dark);
  font-size: 23px;
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
}

.step-line {
  width: 50px;
  height: 1px;
  background: var(--border);
  margin-top: 32px;
}


/* =========================================
   GALLERY
========================================= */

.gallery {
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 18px;
}

.gallery-item {
  min-height: 200px;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background:
    linear-gradient(
      0deg,
      rgba(62, 25, 42, 0.85),
      rgba(62, 25, 42, 0.05)
    ),
    linear-gradient(135deg, #b8758d, #6e4054);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.04);
}

.gallery-placeholder.pink {
  background:
    linear-gradient(0deg, rgba(85,35,55,.8), transparent),
    linear-gradient(135deg, #e3aabe, #a94d70);
}

.gallery-placeholder.gold {
  background:
    linear-gradient(0deg, rgba(75,49,25,.8), transparent),
    linear-gradient(135deg, #e5c083, #a87939);
}

.gallery-placeholder.green {
  background:
    linear-gradient(0deg, rgba(40,65,45,.8), transparent),
    linear-gradient(135deg, #9bae91, #547058);
}

.gallery-placeholder span {
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.gallery-placeholder strong {
  font-family: var(--heading-font);
  font-size: 25px;
}


/* =========================================
   CTA
========================================= */

.cta {
  padding: 75px 0;
  background: var(--primary);
  color: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 {
  max-width: 700px;
  color: white;
  font-family: var(--heading-font);
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.2;
}


/* =========================================
   CONTACT
========================================= */

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-info > p {
  max-width: 560px;
  margin-bottom: 35px;
}

.contact-details {
  display: grid;
  gap: 22px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-light);
  color: var(--primary);
}

.contact-detail span {
  display: block;
  color: var(--light-text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-detail strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  outline: none;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  border: 0;
}

.form-message {
  display: none;
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  background: #eaf7ee;
  color: #287340;
  font-size: 13px;
}

.form-message.show {
  display: block;
}


/* =========================================
   FOOTER
========================================= */

.footer {
  background: #2d252b;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
  padding: 70px 0;
}

.footer .logo strong {
  color: white;
}

.footer .logo small {
  color: #e5a8bd;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 20px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  font-size: 18px;
}

.footer-links a {
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f0afc6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom .container {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
}


/* =========================================
   ANIMATION
========================================= */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 13px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-card:last-child {
    grid-column: span 2;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .step-line {
    display: none;
  }
}


@media (max-width: 760px) {

  .section {
    padding: 75px 0;
  }

  .nav-container {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;

    padding: 20px;
    background: white;
    border-top: 1px solid var(--border);

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;

    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .nav .nav-btn {
    text-align: center;
    margin-top: 5px;
  }

  .hero {
    min-height: 700px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-text > p {
    font-size: 15px;
  }

  .about-grid {
    gap: 50px;
  }

  .image-placeholder {
    min-height: 400px;
  }

  .year-badge {
    right: 15px;
    bottom: 25px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card:last-child {
    grid-column: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
  }

  .gallery-item.large {
    grid-row: auto;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom .container {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }
}


@media (max-width: 480px) {

  .logo strong {
    font-size: 17px;
  }

  .logo small {
    font-size: 7px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
}
