/* =============================================
   PHARAOH'S DAUGHTER - Main Stylesheet
   Faithful recreation of archived Nov 2025 site
   ============================================= */

/* Google Fonts loaded in functions.php */

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

:root {
  --blue: #6a88e9;
  --blue-dark: #395dd1;
  --black: #111111;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --font: 'Poppins', sans-serif;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   SITE HEADER
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(106, 136, 233, 0.92);
  backdrop-filter: blur(4px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.site-logo img {
  height: 60px;
  width: auto;
}

/* ---- Navigation ---- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu li { position: relative; }

.nav-menu > li > a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 0;
  transition: opacity 0.2s;
}

.nav-menu > li > a:hover { opacity: 0.8; }

/* Dropdown */
.nav-menu li.has-dropdown:hover .dropdown { display: block; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 100;
  padding: 8px 0;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  transition: background 0.15s;
}

.dropdown li a:hover {
  background: var(--gray-light);
  color: var(--blue-dark);
}

/* Donate Now button */
.btn-donate {
  background: #111111;
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-donate:hover { background: #2a2a2a; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  overflow: hidden;
  padding: 40px 40px 20px;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
}

.hero-text {}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 32px;
}

.hero-text h1 .blue {
  color: var(--blue);
  font-style: italic;
}

.btn-get-involved {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-get-involved:hover { background: var(--blue-dark); }

.btn-get-involved .arrow {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img {
  max-height: 600px;
  width: auto;
  object-fit: contain;
}

/* =============================================
   PROBLEM / SOLUTION / URGENCY
   ============================================= */
#problem-solution {
  background: var(--blue);
  padding: 70px 40px;
}

.problem-solution-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.psu-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
}

.psu-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 18px;
  text-align: center;
}

.psu-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

.psu-card p strong {
  font-weight: 700;
}

/* =============================================
   MISSION / TESTIMONIAL
   ============================================= */
#mission-testimonial {
  background: var(--white);
  padding: 80px 40px;
}

.mission-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

/* Video embed */
.testimonial-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.testimonial-video iframe,
.testimonial-video video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Quote */
.testimonial-quote blockquote {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 20px;
}

.testimonial-quote cite {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  font-style: normal;
}

/* Mission stats box */
.mission-stats-box {
  border: 2px dashed var(--blue);
  border-radius: 12px;
  padding: 36px 40px;
  max-width: 500px;
}

.mission-stats-box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.5;
}

.mission-stats-box p:last-child { margin-bottom: 0; }

/* =============================================
   FAMILIES: STRENGTHENING BONDS
   ============================================= */
#families {
  background: var(--blue-dark);
  padding: 70px 40px;
}

.families-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.families-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.families-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.families-image img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  max-height: 450px;
}

/* =============================================
   GET INVOLVED / WHERE TO START
   ============================================= */
#get-involved {
  background: var(--white);
  padding: 80px 40px;
}

.get-involved-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.get-involved-inner h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 48px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gi-card {
  background: linear-gradient(145deg, #6a88e9, #395dd1);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
}

.gi-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.gi-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  flex: 1;
}

.btn-card {
  display: inline-block;
  background: var(--white);
  color: var(--blue-dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: auto;
}

.btn-card:hover { background: var(--gray-light); }

/* =============================================
   HIGHLIGHTED PARTNERS
   ============================================= */
#partners {
  background: var(--white);
  padding: 60px 40px;
  border-top: 1px solid #eee;
}

.partners-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.partners-inner h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 48px;
}

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

.partners-logos a {
  opacity: 0.85;
  transition: opacity 0.2s;
}
.partners-logos a:hover { opacity: 1; }

.partners-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* =============================================
   NEWSLETTER / STAY IN THE LOOP
   ============================================= */
#newsletter {
  background: #0e0e1a;
  padding: 60px 40px;
}

.newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.newsletter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.newsletter-inner h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input[type="email"]:focus { border-color: var(--blue); }

.newsletter-form button {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--blue-dark); }

.newsletter-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #f8f8f8;
  padding: 60px 40px 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #ddd;
}

.footer-logo-col .footer-logo img {
  height: 55px;
  width: auto;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--blue-dark); }

.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.footer-col ul li a:hover { color: var(--blue-dark); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: #333;
}

/* Footer bottom bar */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: flex-end;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/* =============================================
   INNER PAGE STYLES
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}

.page-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
  margin-top: 40px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.page-content ul li {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blue); }

.contact-form textarea { min-height: 150px; resize: vertical; }

.btn-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header */
  .header-inner { padding: 0 20px; }
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: rgba(106, 136, 233, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 0;
  }

  .site-nav.open { display: flex; }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-menu > li > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
  }

  .dropdown {
    position: static;
    background: rgba(255,255,255,0.1);
    box-shadow: none;
    border-radius: 0;
    display: none;
    padding: 0;
  }

  .has-dropdown.open .dropdown { display: block; }

  .dropdown li a {
    color: var(--white);
    padding: 12px 16px;
  }

  .dropdown li a:hover { background: rgba(255,255,255,0.1); }

  .btn-donate { margin-top: 16px; }

  /* Hero */
  #hero {
    padding: 40px 20px;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text h1 { font-size: 40px; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 300px; }
  .btn-get-involved { margin: 0 auto; }

  /* Problem/S auto; }

  /* ProbH/;
    gap: 0;
  }

  8Gr margix-start'3a(255,255,255,0.1);
    wiik);
  fo auto;===================== auto; }

  /* ProbH/;
   : 1400px;
  margiix-start'3a(255,255,255,0.1);
    wiiF======== auto;========== auto; }

  /* ProbH/;
   ark);
  padding:ix-start'3a(255,255,255,0.1);
    wiiGet Iax-heigh auto;g { max-height:auto; }

  /* ProbH/;
   ck);
  margiix-start'3a(255,255,255,0.1);
    ue);
  margin-bottom: 1 auto;
}

.partnen-get-invo======== auto; ========= auto; }

  /* ProbH/;
    er;
  margin-boplate-colu
  bor/;
    er;
  margin-bge { o00%;
  objtnen-get-invN========== auto;============ auto; }

  /* ProbH/;
   ase;
  color: var(--weight: 300px;4obH/;
   ase;
  coloine-heplay: flex; }

  .nav-me;
    wiiFze: 14 auto;============= auto; }

  /* Probent h2ro-text h1 { font-size: 48px; }
  .footer-in;: flex;2tnen-get-invI{ fonrgin== auto 40px;
  text-apx 40px;
}

.page/;
    e 600px;
  ma:auto; }

  /* ProbH/;
   cm: 8px;
}

/*-size: 48px; }
  .footer-in;:auto; }

  /* ProbH/;
id-template-columns: 14x;
 === */
@media (max-width: 1024px).page/;
   0px;
  align-itemstestimonial-quote/;
id