/* Learn to Fish with Jack — styles translated from the Claude Design comp */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  color: #0e2f4d;
  background: #f5fbff;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: #43b649; text-decoration: none; }
a:hover { color: #3aa040; }

h1, h2, h3 { font-family: 'Fredoka', sans-serif; }

.accent-yellow { color: #ffca28; }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-9px) rotate(4deg); }
}

/* ---------- decorative bobbers ---------- */

.bobber {
  position: absolute;
  border-radius: 50%;
}

.bobber-hero-1 {
  top: 118px; right: 3.5%;
  width: 34px; height: 34px;
  background: linear-gradient(180deg, #e63b3b 0 50%, #ffffff 50% 100%);
  border: 3px solid #0e2f4d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
  animation: bob 3.2s ease-in-out infinite;
}

.bobber-hero-2 {
  bottom: 56px; left: 45%;
  width: 22px; height: 22px;
  background: linear-gradient(180deg, #ffca28 0 50%, #ffffff 50% 100%);
  border: 3px solid #0e2f4d;
  animation: bob 2.6s ease-in-out infinite;
}

.bobber-about {
  bottom: 8px; right: 8px;
  width: 30px; height: 30px;
  background: linear-gradient(180deg, #e63b3b 0 50%, #ffffff 50% 100%);
  border: 3px solid #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}

/* ---------- brand ---------- */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .3px;
}

.brand-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 34%, #4fca55, #37a13d);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .18), 0 4px 12px rgba(0, 0, 0, .25);
}

.brand-badge-sm { width: 40px; height: 40px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .18); }

.brand-bobber {
  position: relative;
  display: block;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ec4141 0 44%, #0e2f4d 44% 56%, #fbfbfb 56% 100%);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, .35), inset 0 -3px 4px rgba(0, 0, 0, .2);
}

.brand-bobber-sm { width: 23px; height: 23px; }

.brand-bobber-shine {
  position: absolute;
  top: 4px; left: 5px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
  filter: blur(.5px);
}

.brand-bobber-sm .brand-bobber-shine { top: 3px; left: 4px; width: 6px; height: 6px; filter: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(180deg, #0e2f4d 0%, #14456e 100%);
  color: #ffffff;
  padding: 40px 24px 130px;
  overflow: hidden;
}

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

.nav-cta {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .28);
  padding: 9px 20px;
  border-radius: 999px;
}

.nav-cta:hover { background: rgba(255, 255, 255, .22); color: #ffffff; }

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}

.hero-copy { flex: 1 1 340px; min-width: 300px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67, 182, 73, .18);
  border: 1.5px solid rgba(67, 182, 73, .45);
  color: #b9f3bd;
  font-weight: 700;
  font-size: 14px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-pill-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #43b649;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  line-height: 1.02;
  margin: 0 0 20px;
  text-wrap: balance;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: #cfe4f5;
  font-weight: 600;
  margin: 0 0 34px;
  max-width: 30ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.btn-primary {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #0e2f4d;
  background: #43b649;
  padding: 17px 38px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(67, 182, 73, .4), inset 0 -4px 0 rgba(0, 0, 0, .14);
  transition: background .15s ease, transform .15s ease;
}

.btn-primary:hover {
  background: #4fca55;
  color: #0e2f4d;
  transform: translateY(-2px);
}

.hero-contact-link {
  color: #cfe4f5;
  font-weight: 700;
  border-bottom: 2px solid rgba(207, 228, 245, .4);
  padding-bottom: 2px;
}

.hero-contact-link:hover { color: #ffffff; }

.hero-photo-wrap { flex: 1 1 340px; min-width: 300px; }

.hero-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
  background: repeating-linear-gradient(135deg, #d9edff 0 22px, #cfe6fb 22px 44px);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder .placeholder-label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  color: #5c7691;
  background: rgba(255, 255, 255, .85);
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  max-width: 80%;
}

.hero-wave {
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 110px;
  display: block;
}

/* ---------- section headings ---------- */

.section-head { text-align: center; margin-bottom: 48px; }

.section-head h2 {
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  margin: 0 0 14px;
}

.section-head p {
  font-size: 1.15rem;
  color: #4a6580;
  max-width: 46ch;
  margin: 0 auto;
  font-weight: 600;
}

/* ---------- what you'll learn ---------- */

.learn {
  padding: 76px 24px 84px;
  max-width: 1120px;
  margin: 0 auto;
}

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

@media (max-width: 900px) {
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .learn-grid { grid-template-columns: 1fr; }
}

.learn-card {
  background: #ffffff;
  border: 2px solid #e4eef7;
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 8px 20px rgba(14, 47, 77, .05);
  transition: transform .15s ease, border-color .15s ease;
}

.learn-card:hover {
  transform: translateY(-4px);
  border-color: #43b649;
}

.learn-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}

.icon-green  { background: #e9f8ea; }
.icon-blue   { background: #e6f4ff; }
.icon-yellow { background: #fff5da; }

.learn-card h3 {
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0 0 6px;
  text-align: center;
}

.learn-card p {
  margin: 0;
  color: #607a92;
  font-weight: 600;
}

/* ---------- price ---------- */

.price {
  background: linear-gradient(180deg, #cfe9ff 0%, #a9d8fb 100%);
  padding: 72px 24px;
}

.price-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 30px;
  padding: 52px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(14, 47, 77, .16);
  position: relative;
  overflow: hidden;
}

.price-blob { position: absolute; border-radius: 50%; }

.price-blob-1 {
  top: -18px; left: -18px;
  width: 90px; height: 90px;
  background: rgba(255, 202, 40, .25);
}

.price-blob-2 {
  bottom: -24px; right: -24px;
  width: 120px; height: 120px;
  background: rgba(67, 182, 73, .16);
}

.price-card > * { position: relative; }

.price-kicker {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #43b649;
  margin: 0 0 6px;
}

.price-figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.price-amount {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 12vw, 5.6rem);
  color: #0e2f4d;
  line-height: 1;
}

.price-per {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #4a6580;
}

.price-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e2f4d;
  margin: 20px 0 6px;
}

.price-sub {
  font-size: 1.05rem;
  color: #4a6580;
  font-weight: 600;
  margin: 0 0 30px;
}

.price-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.price-badge {
  background: #e9f8ea;
  color: #2f7a34;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
}

/* ---------- about ---------- */

.about {
  padding: 84px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  justify-content: center;
}

.about-photo-wrap { flex: 0 0 auto; }

.about-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 6px solid #ffffff;
  box-shadow: 0 16px 40px rgba(14, 47, 77, .18);
  background: repeating-linear-gradient(135deg, #e7f4d9 0 20px, #dcefc9 20px 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-photo .placeholder-label {
  font-size: 12px;
  color: #5f7a4a;
  padding: 7px 12px;
  border-radius: 9px;
}

.about-copy { flex: 1 1 340px; min-width: 300px; }

.about-copy h2 {
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  margin: 0 0 18px;
}

.about-copy p {
  font-size: 1.25rem;
  color: #33506a;
  font-weight: 600;
  margin: 0;
  max-width: 46ch;
  text-wrap: pretty;
}

/* ---------- book a lesson ---------- */

.book {
  background: linear-gradient(180deg, #0e2f4d 0%, #14456e 100%);
  color: #ffffff;
  padding: 80px 24px;
  scroll-margin-top: 20px;
}

.book-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.book h2 {
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  margin: 0 0 12px;
}

.book-lead {
  font-size: 1.15rem;
  color: #cfe4f5;
  font-weight: 600;
  margin: 0 0 40px;
}

.calendly-inline-widget {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
}

.book-note {
  font-size: 1rem;
  color: #9fbdd6;
  font-weight: 600;
  margin: 22px 0 0;
}

/* ---------- contact ---------- */

.contact {
  padding: 80px 24px;
  scroll-margin-top: 20px;
}

.contact-inner {
  max-width: 620px;
  margin: 0 auto;
}

.contact-inner .section-head { margin-bottom: 40px; }
.contact-inner .section-head h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-bottom: 12px; }
.contact-inner .section-head p { font-size: 1.12rem; margin: 0; }

.contact-form {
  background: #ffffff;
  border: 2px solid #e4eef7;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 12px 30px rgba(14, 47, 77, .07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  color: #0e2f4d;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  font-weight: 600;
  padding: 13px 16px;
  border: 2px solid #dbe7f2;
  border-radius: 13px;
  background: #f7fbff;
  color: #0e2f4d;
}

.contact-form textarea { resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #43b649;
  outline: none;
  background: #ffffff;
}

.btn-submit {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: #0e2f4d;
  background: #43b649;
  border: none;
  padding: 16px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(67, 182, 73, .35), inset 0 -4px 0 rgba(0, 0, 0, .14);
  transition: background .15s ease;
}

.btn-submit:hover { background: #4fca55; }
.btn-submit:disabled { opacity: .7; cursor: default; }

.form-error {
  margin: 0;
  text-align: center;
  color: #b0483f;
  font-weight: 700;
}

.form-success {
  background: #e9f8ea;
  border: 2px solid #43b649;
  border-radius: 24px;
  padding: 48px 34px;
  text-align: center;
}

.form-success-emoji { font-size: 46px; margin-bottom: 12px; }

.form-success h3 {
  font-weight: 700;
  font-size: 1.7rem;
  margin: 0 0 8px;
  color: #2f7a34;
}

.form-success p {
  margin: 0;
  color: #33506a;
  font-weight: 600;
}

/* ---------- footer ---------- */

.footer {
  background: #0e2f4d;
  color: #ffffff;
  padding: 48px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer .brand { font-size: 20px; gap: 10px; }

.footer-tagline {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: #ffca28;
  font-size: 1.05rem;
  margin: 4px 0;
}

.footer-copyright {
  color: #7fa0bb;
  font-size: .95rem;
  font-weight: 600;
  margin: 0;
}
