/* ============================================================
   Shpresë për Fëmijët — Site Stylesheet
   Built by Mileti Technologies
   ============================================================ */

:root {
  --teal-900: #161616;
  --teal-800: #222222;
  --teal-700: #2b2b2b;
  --teal-600: #3d3d3d;
  --teal-100: #f0f0f0;
  --teal-50:  #f6f6f6;
  --gold-600: #36617f;
  --gold-500: #467a9e;
  --gold-400: #7ba3c0;
  --gold-100: #e9f1f6;
  --logo-red: #b8181f;
  --ink:      #222222;
  --ink-soft: #555555;
  --white:    #ffffff;
  --cream:    #fcfcfc;
  --line:     #e5e5e5;
  --radius:   14px;
  --shadow:   0 10px 30px rgba(20, 20, 20, 0.10);
  --shadow-sm:0 4px 14px rgba(20, 20, 20, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--teal-900);
  line-height: 1.2;
  font-weight: 600;
}

img { max-width: 100%; display: block; }

a { color: var(--teal-600); }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 252, 252, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
}

.brand-text { line-height: 1.15; }

.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--teal-900);
  display: block;
}

.brand-tag {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--logo-red);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover { color: var(--teal-600); }

.nav-links a.active {
  color: var(--teal-700);
  border-bottom-color: var(--gold-500);
}

.nav-donate {
  background: var(--gold-500);
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  border-bottom: none !important;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s;
}

.nav-donate:hover { background: var(--gold-400); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--teal-900);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.25s;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at 75% 15%, rgba(70, 122, 158, 0.30), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(85, 85, 85, 0.35), transparent 60%),
    linear-gradient(160deg, var(--teal-900) 0%, var(--teal-700) 70%, var(--teal-600) 100%);
  color: var(--white);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 70px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.hero-inner { max-width: 800px; position: relative; z-index: 1; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-bottom: 8px;
}

.hero .hero-translation {
  color: var(--gold-400);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 24px;
}

.hero p.lead {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  max-width: 640px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn small {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  opacity: 0.85;
}

.btn-gold {
  background: var(--gold-500);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(70, 122, 158, 0.35);
}

.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

.btn-teal {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-teal:hover { background: var(--teal-600); transform: translateY(-2px); }

.btn-outline-teal {
  border: 2px solid var(--teal-700);
  color: var(--teal-700);
}

.btn-outline-teal:hover { background: var(--teal-100); transform: translateY(-2px); }

/* ---------- Sections ---------- */
.section { padding: 78px 0; }

.section.alt { background: var(--white); }

.section.tinted { background: var(--teal-50); }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 18px;
}

.section-intro {
  max-width: 720px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  font-size: 1.06rem;
}

.center { text-align: center; }

.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card .icon svg { width: 28px; height: 28px; }

.card h3 { font-size: 1.18rem; margin-bottom: 10px; }

.card p { color: var(--ink-soft); font-size: 0.98rem; }

.card ul {
  color: var(--ink-soft);
  font-size: 0.98rem;
  padding-left: 20px;
  margin-top: 8px;
}

.card ul li { margin-bottom: 6px; }

/* ---------- Quote band ---------- */
.quote-band {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(70, 122, 158, 0.25), transparent 55%),
    linear-gradient(150deg, var(--teal-900), var(--teal-700));
  color: var(--white);
  text-align: center;
  padding: 84px 0;
}

.quote-band blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-style: italic;
  max-width: 820px;
  margin: 0 auto 12px;
}

.quote-band .translation {
  color: var(--gold-400);
  font-size: 1.05rem;
  margin-bottom: 34px;
}

/* ---------- People ---------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.person-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding-bottom: 26px;
}

.person-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin: 30px auto 18px;
  overflow: hidden;
  border: 4px solid var(--gold-100);
  box-shadow: 0 4px 14px rgba(20, 20, 20, 0.15);
}

.person-photo { background: var(--teal-100); }

.person-photo svg,
.person-photo img { width: 100%; height: 100%; object-fit: cover; }

.person-photo img[src=""], .founder-photo img[src=""] { opacity: 0; }

.person-card h3 { font-size: 1.16rem; padding: 0 20px; }

.person-card .role {
  color: var(--gold-600);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 4px 0 12px;
}

.person-card p.bio {
  color: var(--ink-soft);
  font-size: 0.93rem;
  padding: 0 24px;
  text-align: left;
}

.photo-note {
  font-size: 0.78rem;
  color: #9a9a9a;
  font-style: italic;
  margin-top: 10px;
}

/* Founder feature */
.founder-feature {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--gold-100);
  box-shadow: var(--shadow-sm);
}

.founder-photo { background: var(--teal-100); }

.founder-photo svg,
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }

.founder-feature h3 { font-size: 1.5rem; margin-bottom: 2px; }

.founder-feature .role {
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.founder-feature p { color: var(--ink-soft); margin-bottom: 14px; }

/* Officers */
.officer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.officer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.officer .person-photo { width: 96px; height: 96px; margin: 0 auto 14px; }

.officer h3 { font-size: 1.08rem; }

.officer .role {
  color: var(--gold-600);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.value-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.value-chip strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  color: var(--teal-900);
  font-size: 1.05rem;
}

.value-chip span { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Two-column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col .col-text p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4.2rem;
  color: var(--gold-400);
  position: absolute;
  top: 6px;
  left: 22px;
  line-height: 1;
}

.testimonial p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal-800);
  margin: 26px 0 16px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-600);
  font-size: 0.92rem;
}

/* ---------- Donation options ---------- */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.donate-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.donate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.donate-card.featured { border-top: 5px solid var(--gold-500); }

.donate-card h3 { font-size: 1.25rem; margin-bottom: 10px; }

.donate-card p { color: var(--ink-soft); font-size: 0.97rem; flex: 1; margin-bottom: 24px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card .icon svg { width: 26px; height: 26px; }

.contact-card h3 { font-size: 1.12rem; margin-bottom: 6px; }

.contact-card a { font-weight: 600; }

.contact-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Founder message ---------- */
.founder-message {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.founder-message blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--teal-800);
  margin-bottom: 18px;
}

.founder-message cite {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-600);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(70, 122, 158, 0.28), transparent 50%),
    linear-gradient(140deg, var(--teal-800), var(--teal-600));
  border-radius: 20px;
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: var(--shadow);
}

.cta-banner h2 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 6px; }

.cta-banner p { color: rgba(255,255,255,0.85); }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(70, 122, 158, 0.28), transparent 55%),
    linear-gradient(155deg, var(--teal-900), var(--teal-700));
  color: var(--white);
  padding: 70px 0 64px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.08rem;
}

/* ---------- Notice ---------- */
.notice {
  background: var(--gold-100);
  border: 1px solid #cfe0eb;
  border-radius: 10px;
  padding: 16px 22px;
  font-size: 0.95rem;
  color: #2f4f63;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 28px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.site-footer p { font-size: 0.95rem; }

.site-footer ul { list-style: none; }

.site-footer ul li { margin-bottom: 9px; }

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover { color: var(--gold-400); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .brand-mark { width: 58px; height: 58px; flex: 0 0 58px; }

.footer-brand .brand-name { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--gold-400);
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .founder-feature { grid-template-columns: 1fr; }
  .founder-photo { max-width: 260px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .brand-mark { width: 52px; height: 52px; flex: 0 0 52px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 4%;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }

  .nav-links a.active { border-bottom-color: var(--line); }

  .nav-donate { margin: 12px 0; text-align: center; }

  .hero { padding: 64px 0 90px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
