/* Vihaan's Vision full site */
:root {
  --navy: #17324d;
  --blue: #2f6f9f;
  --sky: #dff4ff;
  --sun: #f8b84e;
  --sun-soft: #fff2cf;
  --cream: #fffaf0;
  --white: #ffffff;
  --ink: #263238;
  --muted: #5f6f7f;
  --green: #7ac7a5;
  --rose: #ffb6a3;
  --shadow: 0 18px 44px rgba(23, 50, 77, 0.10);
}

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

body {
  font-family: Avenir, "Trebuchet MS", Arial, sans-serif;
  background: linear-gradient(180deg, var(--sky), var(--cream) 52%, #fff);
  color: var(--ink);
  line-height: 1.65;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 7%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 50, 77, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.logo-mark {
  width: 58px;
  height: 58px;
  border-radius: 24px;
  background: radial-gradient(circle at 35% 28%, #fff8c6, #ffd36f 45%, var(--sun));
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  box-shadow: 0 12px 28px rgba(248, 184, 78, 0.34);
  transform: rotate(-6deg);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-copy strong {
  font-size: 1.25rem;
  letter-spacing: -0.2px;
}

.logo-copy small {
  color: var(--blue);
  font-weight: 800;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.98rem;
}

nav a:hover {
  color: var(--blue);
}

.hero {
  min-height: 68vh;
  padding: 70px 7% 78px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.kicker {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

h1 {
  color: var(--navy);
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.page-title {
  color: var(--navy);
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -1.4px;
  margin-bottom: 20px;
}

.lead {
  max-width: 760px;
  font-size: 1.2rem;
  color: #435466;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
}

.btn.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 32px rgba(23, 50, 77, 0.24);
}

.btn.gold {
  background: var(--sun);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(248, 184, 78, 0.28);
}

.btn.light {
  background: #fff;
  color: var(--blue);
  border: 2px solid #d7edf7;
}

.hero-art {
  min-height: 360px;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-sun {
  width: min(250px, 64vw);
  height: min(250px, 64vw);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7bc, #ffca58 48%, #f49b2f);
  box-shadow: 0 22px 64px rgba(244, 155, 47, 0.34);
  display: grid;
  place-items: center;
  font-size: 4.6rem;
  animation: float 3.4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  border: 4px dashed rgba(248, 184, 78, 0.34);
  animation: spin 24s linear infinite;
}

.floating-note {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.92rem;
}

.note-1 { top: 42px; left: 42px; }
.note-2 { right: 36px; bottom: 66px; }
.note-3 { left: 60px; bottom: 42px; }

@keyframes float {
  50% { transform: translateY(-15px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

section {
  padding: 76px 7%;
}

.page-hero {
  padding: 76px 7% 56px;
  background:
    radial-gradient(circle at 12% 10%, rgba(248, 184, 78, 0.22), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(122, 199, 165, 0.20), transparent 25%);
}

.donate-hero {
  padding-bottom: 8px;
}

.donation-support-section {
  padding-top: 16px;
}

.section-title {
  text-align: center;
  color: var(--navy);
  font-size: 2.55rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-intro {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 50, 77, 0.07);
}

.card-icon {
  font-size: 2.55rem;
  margin-bottom: 12px;
}

.card h2,
.card h3 {
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.2;
}

.card p {
  color: #4c5d6d;
}

.story-box {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 20px 52px rgba(248, 184, 78, 0.16);
  border-left: 10px solid var(--sun);
}

.story-box p {
  font-size: 1.13rem;
  margin-bottom: 16px;
}

.testimonial-feature {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: start;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 8px solid var(--green);
}

.testimonial-letter h3 {
  font-size: 1.75rem;
}

.testimonial-date {
  color: var(--muted);
  font-weight: 800;
}

.testimonial-letter blockquote {
  margin: 22px 0;
  padding: 0 0 0 18px;
  border-left: 5px solid var(--sun);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.45;
}

.testimonial-document {
  display: block;
}

.testimonial-preview {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 50, 77, 0.08);
  background: #fff;
}

.tax-box {
  margin-top: 34px;
}

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

.final-donation-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.numbered-list {
  margin: 8px 0 0 1.35rem;
  color: #4c5d6d;
  font-size: 1.08rem;
}

.numbered-list li {
  padding-left: 6px;
  margin-bottom: 10px;
}

.band {
  background: rgba(255, 242, 207, 0.64);
}

.timeline {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.timeline-item {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  border-left: 8px solid var(--sun);
}

.timeline-item.future {
  border-left-color: var(--green);
}

.timeline-date {
  color: var(--navy);
  font-weight: 1000;
  font-size: 1.05rem;
}

.badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sun-soft);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.9rem;
}

.badge.future {
  background: #e5f7ef;
}

.price-card {
  background: linear-gradient(135deg, #fff, #fff7dd);
  border: 2px solid #ffe3a8;
}

.class-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.class-title-row h3 {
  margin-bottom: 0;
}

.class-title-row span {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.form {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  padding: 34px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 50, 77, 0.08);
}

.signup-payment-note {
  max-width: 780px;
  margin: -20px auto 24px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.signup-donation-action {
  display: flex;
  justify-content: center;
  margin: -6px auto 24px;
}

.success-message {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #e5f7ef;
  border: 2px solid rgba(122, 199, 165, 0.45);
  color: var(--navy);
  font-weight: 700;
}

.success-message strong {
  display: block;
  margin-bottom: 2px;
  color: #236b4b;
}

.success-message.error {
  background: #fff2ef;
  border-color: rgba(255, 182, 163, 0.72);
}

.success-message.error strong {
  color: #9d3d2f;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.choice-group {
  border: 0;
  padding: 0;
}

.choice-group legend {
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.choice-group label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 50px;
  margin-bottom: 10px;
  border: 2px solid #d7edf7;
  border-radius: 18px;
  padding: 12px 16px;
  background: #fbfdff;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.choice-group input[type="radio"] {
  flex: 0 0 auto;
  width: auto;
  margin: 0;
  accent-color: var(--blue);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 2px solid #d7edf7;
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--navy);
  background: #fbfdff;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--sun);
  box-shadow: 0 0 0 4px rgba(248, 184, 78, 0.20);
}

.form-row select.select-muted-choice {
  color: #738396;
  border-color: #cfd8e3;
  background: #f3f6f9;
}

.muted-session-option {
  color: #738396;
  background: #f3f6f9;
}

.prerequisite-warning {
  margin: 6px 0 0;
  color: #9d3d2f;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.callout {
  background: var(--navy);
  color: #fff;
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 20px 54px rgba(23, 50, 77, 0.22);
}

.callout h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.callout p {
  color: rgba(255,255,255,0.88);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.stat {
  background: rgba(255,255,255,0.13);
  border-radius: 22px;
  padding: 20px;
  text-align: center;
  font-weight: 900;
}

footer {
  background: var(--navy);
  color: #fff;
  padding: 36px 7%;
  text-align: center;
}

footer p {
  opacity: 0.92;
}


.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.photo-placeholder {
  min-height: 210px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(248, 184, 78, 0.18), rgba(223, 244, 255, 0.9)),
    #fff;
  border: 2px dashed rgba(47, 111, 159, 0.35);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--navy);
  font-weight: 900;
}

.photo-placeholder span {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.event-photo {
  width: 100%;
  max-width: 360px;
  min-height: 210px;
  aspect-ratio: 12 / 7;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 50, 77, 0.08);
}

.event-photo-full {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.class-note {
  margin-top: 18px;
  font-size: 0.96rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }

  .grid-3,
  .grid-2,
  .split,
  .stat-row,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-feature {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .class-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .class-title-row span {
    white-space: normal;
  }

  .hero-art {
    min-height: 280px;
  }

  .hero-sun {
    width: 210px;
    height: 210px;
    font-size: 4rem;
  }

  h1,
  .page-title {
    letter-spacing: -1.5px;
  }
}
