/* Zoe Coaching — static rebuild stylesheet */

:root {
  --teal: #57bbbf;
  --teal-dark: #2b7c74;
  --teal-text: #05b9a7;
  --pink: #ee3781;
  --gold: #fcbd18;
  --gray: #605e5e;
  --body-text: #6d6e71;
  --white: #ffffff;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  color: var(--body-text);
  line-height: 1.5;
  background: var(--white);
}

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

.script {
  font-family: 'Dancing Script', cursive;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.site-logo img { height: 55px; width: auto; }

.site-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active { color: var(--pink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 18px;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 30px;
  border: 2px solid var(--pink);
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 0.03em;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover { background: var(--pink); color: #fff; }

.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-solid:hover { background: #e0a600; border-color: #e0a600; color: #fff; }

/* ---------- Generic Section blocks ---------- */

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.bg-teal { background: var(--teal); color: #fff; }
.bg-pink { background: var(--pink); color: #fff; }
.bg-gold { background: var(--gold); color: #fff; }
.bg-gray { background: var(--gray); color: #fff; }
.bg-white { background: #fff; }

.bg-cover {
  background-size: cover;
  background-position: center;
}

/* Parallax: background image stays fixed while foreground content scrolls
   over it. background-attachment:fixed is unreliable on iOS Safari, so it's
   disabled below 800px and those viewports just get a normal scrolling bg. */
.bg-parallax {
  background-attachment: fixed;
}

@media (max-width: 800px) {
  .bg-parallax {
    background-attachment: scroll;
  }
}

[class*="overlay-"] { position: relative; }
[class*="overlay-"]::before {
  content: "";
  position: absolute;
  inset: 0;
}
[class*="overlay-"] > * { position: relative; z-index: 1; }

.overlay-dark::before { background: rgba(0, 0, 0, 0.55); }
.overlay-light::before { background: rgba(255, 255, 255, 0.55); }
.overlay-gold::before { background: rgba(252, 189, 24, 0.65); }
.overlay-teal::before { background: rgba(87, 187, 191, 0.55); }

.text-center { text-align: center; }

h1, h2, h3, .pillar-title, .heading-font {
  font-family: 'Quicksand', 'Poppins', Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--gray);
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 14px;
  font-weight: 600;
}

.big-quote {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 800px;
  margin: 0 auto 16px;
}

.big-quote .script { text-transform: none; color: var(--gold); font-size: 42px; }

/* ---------- Hero (home) ---------- */

.hero-quote {
  padding: 60px 0;
  text-align: center;
}

.hero-quote .marks {
  color: var(--gold);
  font-size: 48px;
  font-family: Georgia, serif;
}

/* ---------- Founder intro ---------- */

.founder {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.founder img {
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.founder-name {
  font-size: 30px;
  color: var(--pink);
  margin: 12px 0 4px;
}

.founder-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gray);
}

@media (max-width: 700px) {
  .founder { grid-template-columns: 1fr; text-align: center; }
  .founder img { max-width: 220px; margin: 0 auto; }
}

/* ---------- Services (3 icons) ---------- */

.services {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  text-align: center;
}

.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 34px;
}

.service-label {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ---------- Two-column feature boxes ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
  .two-col { grid-template-columns: 1fr; }
}

.two-col > div { padding: 56px 48px; }

.two-col h3 { color: #fff; font-size: 26px; }

.two-col ul { margin: 0; padding-left: 20px; }
.two-col li { margin-bottom: 8px; }

/* ---------- Testimonial carousel ---------- */

.carousel { max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.carousel-track { overflow: hidden; }
.carousel-slide { display: none; }
.carousel-slide.active { display: block; }
.carousel-quote { font-style: italic; }
.carousel-author { color: var(--gold); margin-top: 16px; font-weight: 600; }

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: -40px;
  right: -40px;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-controls button {
  pointer-events: all;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.active { background: #fff; }

/* ---------- Contact form ---------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-form { display: grid; gap: 14px; }

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  background: transparent;
  color: #fff;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.85); }

.contact-form textarea { min-height: 90px; resize: vertical; }

.contact-form .btn-solid {
  justify-self: start;
  border: none;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--teal);
  color: #fff;
  padding: 40px 0 24px;
}

.site-footer .logo-script {
  font-family: 'Dancing Script', cursive;
  font-size: 34px;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 16px;
  margin-top: 16px;
}

.footer-bottom a { text-decoration: underline; }

/* ---------- Business/Personal coaching pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto 60px;
}

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

.pillar-num {
  font-size: 60px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--teal-text);
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.pillar-title { display: inline-block; vertical-align: middle; font-size: 24px; color: #fff; }

.pillars ul { list-style: disc; padding-left: 20px; margin-top: 16px; }

/* ---------- Simple bullet list section ---------- */

.checklist { max-width: 700px; margin: 0 auto; }
.checklist li { margin-bottom: 10px; }

/* ---------- Booking iframe wrap ---------- */

.booking-embed { max-width: 900px; margin: 0 auto; background: #fff; border-radius: 6px; overflow: hidden; }
.booking-embed iframe { width: 100%; height: 900px; border: 0; display: block; }
