﻿:root {
  --purple: #8c52ff;
  --dark-purple: #4a2c9f;
  --lavender: #f5f0ff;
  --mid-lavender: #ebe2ff;
  --charcoal: #12063d;
  --muted: #43386b;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--lavender);
  line-height: 1.7;
}


h1, h2, h3, h4{
  color: var(--purple);
  font-weight: 600;
}

h5 {
  color: var(--purple);
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: medium;
}


a {
  color: var(--purple);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--purple);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

header {
  background: #ffffffee;
  box-shadow: 0 8px 24px rgba(18, 6, 61, 0.08);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hero .content h1{
  color: white;
}
.nav {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav img {
  width: 170px;
  border-radius: 0;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.35rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a[aria-current='page']::after {
  transform: scaleX(1);
}

main {
  min-height: 60vh;
}

.hero {
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
}

.hero .content {
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--dark-purple));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 18px 30px rgba(140, 82, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus {
  color: #fff;
  text-decoration: underline;
  box-shadow: 0 26px 42px rgba(140, 82, 255, 0.35);
}

.section {
  padding: 4.5rem 1.5rem;
}

.section.alt {
  background: #fff;
}

.section .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
  text-align: center;
  color: var(--purple);
}

.section-subtitle {
  max-width: 760px;
  margin: 0.75rem auto 2.5rem;
  text-align: center;
  color: var(--muted);
}

.grid-two {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 820px) {
  .grid-two {
    grid-template-columns: 1.1fr 1fr;
  }
}

.card-grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(18, 6, 61, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(140, 82, 255, 0.12);
}

.card h3 {
  font-size: 1.25rem;
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.callout {
  text-align: center;
  background: linear-gradient(135deg, rgba(140, 82, 255, 0.12), rgba(234, 225, 255, 0.8));
  border-radius: 24px;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.quote {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--dark-purple);
  margin: 0;
}

.quote small {
  display: block;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--muted);
}

.highlight {
  color: var(--purple);
  font-weight: 600;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.list li {
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.timeline {
  border-left: 3px solid rgba(140, 82, 255, 0.35);
  margin: 2.5rem 0;
  padding-left: 2.12rem;
}

.timeline-item {
  padding-bottom: 1.6rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--purple);
  position: absolute;
  left: -2.95rem;
  top: 0.4rem;
}

.gallery {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 5px solid var(--purple);
  background: rgba(140, 82, 255, 0.08);
  border-radius: 18px;
  color: var(--muted);
  font-style: italic;
}

.page-hero {
  background: linear-gradient(135deg, rgba(255, 246, 255, 0.98), rgba(231, 212, 255, 0.94));
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

footer {
  background: #10082c;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 1.5rem 2.5rem;
  margin-top: 4rem;
}

footer .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}


.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}


input[type='email'] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 50px;
  border: none;
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

input[type='email']:focus {
  outline: 3px solid rgba(140, 82, 255, 0.35);
}

.small-print {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.resources {
  display: grid;
  gap: 1.5rem;
}

.resource-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(18, 6, 61, 0.08);
  border: 1px solid rgba(140, 82, 255, 0.12);
}

.resource-card h3 {
  margin: 0 0 0.5rem;
}

.resource-card a {
  color: var(--purple);
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(140, 82, 255, 0.12);
  color: var(--dark-purple);
  font-size: 0.85rem;
  font-weight: 600;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
}

.table th,
.table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(140, 82, 255, 0.2);
  text-align: left;
}

.table th {
  background: rgba(140, 82, 255, 0.15);
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  header {
    position: static;
  }
  footer .inner,
  .footer-grid,
  .resources {
    grid-template-columns: 1fr;
  }
}


.more-hero {
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 246, 255, 0.98), rgba(231, 212, 255, 0.94));
  color: var(--charcoal);
}

.more-hero__kicker {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.more-hero h1 {
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 600;
  color: var(--purple);
  margin: 0 0 0.75rem;
}

.more-hero__script {
  font-family: 'Marck Script', cursive;
  font-size: 1.25rem;
  color: var(--dark-purple);
  margin: 0;
}

.more-orgs {
  background: linear-gradient(180deg, #ffffff 0%, #f5efff 100%);
  padding: 4.5rem 1.5rem 5rem;
}

.more-orgs .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.org-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .org-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.org-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 231, 255, 0.96) 100%);
  border-radius: 26px;
  padding: 2.75rem 2rem;
  box-shadow: 0 18px 38px rgba(18, 6, 61, 0.08);
  border: 1.5px solid rgba(140, 82, 255, 0.18);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-height: 100%;
}

.org-card h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin: 0;
  letter-spacing: 0.01em;
  color: var(--purple);
}

.org-card__link {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.org-card__link a {
  color: var(--purple);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
}

.org-card__link a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--purple);
  opacity: 0.75;
}

.org-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}


.terms-hero {
  background: linear-gradient(135deg, rgba(18, 6, 61, 0.9), rgba(76, 41, 160, 0.8));
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}

.terms-hero .inner {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.terms-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 1.5rem;
}

.terms-callout {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-purple);
  background: linear-gradient(135deg, rgba(140, 82, 255, 0.18), rgba(198, 168, 255, 0.3));
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
}

.privacy-hero {
  background: linear-gradient(135deg, rgba(140, 82, 255, 0.2), rgba(18, 6, 61, 0.12));
  padding: 4.5rem 1.5rem 3.5rem;
}

.privacy-hero .inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.privacy-meta {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.policy-stack {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.policy-stack h2 {
  margin-top: 1rem;
  color: var(--charcoal);
}

.policy-stack a {
  color: var(--purple);
  font-weight: 600;
}
