/* Oasis for All - Modern Responsive Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
  /* Oasis Blue Palette */
  --bg: #fbfbfd;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --brand: #0071e3; /* Blue accent for Oasis */
  --brand-2: #0077ed;
  --brand-3: #b3e0ff;
  --accent: #0077ed;
  --highlight: #0071e3;
  --surface: #fff;
  --surface-2: #f5f5f7;
  --radius: 18px;
  --shadow: 0 6px 24px rgba(0,0,0,.08);
}

/* Responsive Layout & Components from LHFA, adapted for Oasis */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(20px);
  background: var(--surface);
  border-bottom: 1px solid var(--brand);
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 1.18rem;
}
.brand img {
  max-width: 140px;
  width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  color: var(--text);
  opacity: .9;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px 14px;
  transition: background 0.2s, color 0.2s;
}
.nav a.active, .nav a.selected {
  background: linear-gradient(90deg, var(--brand-2) 0%, var(--brand) 100%) !important;
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(26,35,126,0.18);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,188,212,0.16);
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  outline: 2px solid var(--brand-2);
  outline-offset: 1.5px;
}
.nav a:hover {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%) !important;
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(26,35,126,0.18);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,188,212,0.10);
  transition: background 0.2s, color 0.2s;
}
.nav a:not(.active):not(.selected) {
  background: transparent;
  color: var(--text);
  box-shadow: none;
}
.nav a.back-parent {
  background: transparent !important;
  color: inherit !important;
  font-weight: 600;
}

.nav-cta {
  margin-left: 8px;
  margin-right: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: .2s ease;
  text-decoration: none;
}
.btn-primary {
  margin-right: 0;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%);
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(26,35,126,0.18);
  padding: 10px 26px 10px 18px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 2px #fff;
}
.btn-primary:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}
.btn-outline:hover {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%);
  color: #fff;
  transform: translateY(-1px);
}
.banner {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%);
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(26,35,126,0.18);
}
.banner .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.banner a {
  text-decoration: underline;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 72px 0 0 0;
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.h2 {
  font-size: clamp(24px, 4vw, 40px);
  margin: 6px 0 8px;
}
.lead {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
}
.accordion { border: none; background: none; margin: 0 0 18px; }
.accordion summary { cursor: pointer; font-size: 1.15rem; font-weight: 600; color: var(--brand); padding: 12px 0; border-radius: 6px; transition: background 0.2s; }
.accordion[open] > summary { background: #e0f7fa; color: #006064; }
.accordion .accordion { margin-left: 18px; }
.carousel { display: flex; align-items: center; gap: 16px; margin: 18px 0; }
.carousel-btn { background: var(--brand-2); color: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 1.4rem; cursor: pointer; box-shadow: 0 2px 8px rgba(0,188,212,0.10); transition: background 0.2s; }
.carousel-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.carousel-images { display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth; }
.carousel-images img { border-radius: 14px; max-width: 220px; max-height: 180px; object-fit: cover; box-shadow: 0 2px 8px rgba(26,35,126,0.07); }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%) !important;
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(26,35,126,0.18);
  border: none;
  border-radius: 28px;
  padding: 36px 32px 28px 32px;
  box-shadow: 0 8px 32px 0 rgba(26,35,126,0.10), 0 1.5px 6px 0 rgba(0,188,212,0.10);
  margin-bottom: 28px;
  transition: transform 0.20s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px 0 rgba(26,35,126,0.15), 0 2px 8px 0 rgba(0,188,212,0.14);
}
.card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  font-size: 2rem;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.10);
}
.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.card p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: #f3f6ff;
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .card {
    padding: 28px 16px 20px 16px;
  }
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card.gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%) !important;
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(26,35,126,0.18);
}
.card[style*="linear-gradient"], .card.gradient {
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(26,35,126,0.18);
}
.card h3 {
  margin: 0 0 8px;
}
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 0 32px 0;
  text-align: center;
}
.eyebrow {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-card {
  margin: 44px auto 0;
  max-width: 840px;
  height: 220px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(transparent 0, rgba(255, 255, 255, .08) 70%);
  mix-blend-mode: overlay;
}
.hero-card h3 {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-card {
    height: 180px;
  }
}
@media (max-width: 900px) {
  .nav-hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    margin-left: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }
  .nav-hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--brand);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 64px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 16px 0;
    z-index: 1050;
  }
  .nav.nav-open {
    display: flex;
  }
  .nav-cta {
    display: none;
    width: 100%;
    justify-content: flex-end;
    margin-top: 8px;
  }
  .nav-cta.nav-open {
    display: flex;
  }
  .nav a {
    padding: 14px 24px;
    font-size: 18px;
    border-radius: 0;
    text-align: left;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #ede7f6;
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .brand img {
    max-width: 110px;
    width: 110px;
  }
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 8px 8px;
  }
}
@media (min-width: 901px) {
  .nav-hamburger {
    display: none !important;
  }
  .nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    width: auto;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .nav-cta {
    display: flex !important;
    width: auto;
    margin-top: 0;
    justify-content: flex-end;
  }
}
@media (max-width: 600px) {
  header, nav {
    flex-direction: column;
    align-items: flex-start;
  }
  main {
    margin: 1rem;
    padding: 0.5rem;
  }
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
header {
  background: var(--surface);
  border-bottom: 1px solid var(--brand);
  box-shadow: none;
}
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--brand);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(20px);
  background: var(--surface);
  border-bottom: 1px solid var(--brand);
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 1.18rem;
}

.brand img,
.nav a.back-parent img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}

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

.nav a {
  font-size: 14px;
  color: var(--text);
  opacity: .9;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px 14px;
  transition: background 0.2s, color 0.2s;
  /* Remove height and display:flex for desktop to avoid oversized hover */
  align-items: center;
}

.nav a.active, .nav a.selected {
  background: linear-gradient(90deg, var(--brand-2) 0%, var(--brand) 100%) !important;
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(26,35,126,0.18);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,188,212,0.16);
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  outline: 2px solid var(--brand-2);
  outline-offset: 1.5px;
}
.nav a:hover {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%) !important;
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(26,35,126,0.18);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,188,212,0.10);
  transition: background 0.2s, color 0.2s;
}
.nav a:not(.active):not(.selected) {
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

/* --- Responsive nav (cleaned up) --- */
@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    z-index: 1000;
    display: none;
    height: auto;
  }
  .nav.nav-open {
    display: flex;
  }
  .nav a {
    color: var(--brand);
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid #eee;
    height: auto;
    display: block;
    align-items: flex-start;
  }
  .nav-hamburger {
    display: flex !important;
  }
  .nav-cta {
    display: none;
  }
  .nav-cta.nav-open {
    display: flex;
    position: absolute;
    right: 1.5rem;
    top: 70px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 1rem;
    z-index: 1001;
  }
  .nav-wrap {
    height: auto;
    min-height: 70px;
    align-items: center;
    padding: 12px 10px;
  }
}

header img {
  margin-right: 1.5rem;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s;
}
nav a:hover, nav a.active {
  background: var(--brand-2);
}
nav a.donate {
  background: #fff;
  color: var(--brand);
  font-weight: 600;
}
.nav a.back-parent {
  background: transparent !important;
  color: inherit !important;
  font-weight: 600;
  height: 140px;
  display: flex;
  align-items: center;
}
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.site-footer {
  background: #f5f5f7;
  text-align: center;
  padding: 28px 0;
  color: #86868b;
  font-size: 15px;
  margin-top: 64px;
}

.footer-link {
  color: #0071e3;
  text-decoration: underline;
}

.footer-link:hover {
  color: #005bb5;
  text-decoration: underline;
}

footer {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0 1rem 0;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  header, nav {
    flex-direction: column;
    align-items: flex-start;
  }
  main {
    margin: 1rem;
    padding: 0.5rem;
  }
}
