/* ===================================================
   WeTalk – shared stylesheet
   Palette: red, light pink, white only
   =================================================== */

@font-face {
  font-family: 'Kitora';
  src: url('../fonts/Kitora-Bold.woff2') format('woff2'),
       url('../fonts/Kitora-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #d81414;
  --red-dark: #a80f0f;
  --magenta: #f408ea;
  --pink-light: #f8e1ee;
  --white: #ffffff;
  --ink: #262626;
  --ink-soft: #5c5c5c;
  --max-width: 1180px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(216, 20, 20, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: 78px;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Baloo 2', sans-serif;
  font-weight: 600;
  color: var(--red);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 {
  font-family: 'Kitora', 'Fredoka', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
}

section { padding: 72px 0; }
.section-tight { padding: 40px 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  background: var(--pink-light);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 640px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(216, 20, 20, 0.3);
}
.btn-primary:hover { background: var(--red-dark); color: #fff; }

.btn-outline {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}
.btn-outline:hover { background: var(--red); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--red);
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
/* Persistent full-width inline nav bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 40px);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }

.nav-checkbox { display: none; }

.nav-inline {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a.active,
.nav-links a:hover { color: var(--red); }

.nav-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.nav-social a:hover { background: var(--red); color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  white-space: nowrap;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  color: #000;
  user-select: none;
}

/* Collapse to hamburger dropdown below desktop width */
@media (max-width: 900px) {
  .nav-inline {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: var(--white);
    padding: 28px clamp(20px, 4vw, 40px) 32px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .nav-inline .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav-inline .nav-links a { font-size: 1.15rem; }
  .nav-checkbox:checked ~ .nav-inline {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-toggle { display: block; }
}

@media (max-width: 480px) {
  .brand img { height: 38px; }
  .nav-cta { padding: 10px 16px; font-size: 0.78rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--pink-light);
  overflow: hidden;
}
.hero-content {
  position: relative;
  padding: 56px clamp(16px, 4vw, 40px);
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
}
.hero h1 { color: var(--red); }
.hero .lede { color: var(--ink-soft); }

.page-hero { min-height: 34vh; align-items: center; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-grid .hero-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(216,20,20,0.15);
  justify-self: center;
  border: 4px solid #fff;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .hero-photo { max-width: 260px; justify-self: start; }
}

/* Full-bleed photographic hero (home page) */
.hero-fullbleed {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  padding: 0;
}
.hero-fullbleed .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,38,38,0.78) 0%, rgba(38,38,38,0.32) 45%, rgba(38,38,38,0.05) 100%);
  z-index: 1;
}
.hero-fullbleed .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 56px) 80px;
  max-width: 760px;
  margin: 0;
}
.hero-fullbleed h1 { color: #fff; }
.hero-fullbleed .lede { color: rgba(255,255,255,0.9); }
@media (max-width: 700px) {
  .hero-fullbleed { min-height: 72vh; }
  .hero-fullbleed .hero-content { padding-bottom: 56px; }
}

/* ---------- Logo strip ---------- */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.logo-strip img {
  height: 32px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.logo-strip img:hover { opacity: 1; filter: grayscale(0%); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 820px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card .icon {
  font-size: 1.8rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card .btn { margin-top: auto; align-self: flex-start; }

.bg-pink { background: var(--pink-light); }
.bg-red { background: var(--pink-light); color: var(--ink); }
.bg-red h2, .bg-red h3 { color: var(--red); }
.bg-red p { color: var(--ink-soft); }

/* ---------- Photo strip / gallery ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.photo-strip img, .gallery-grid img {
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}
.photo-strip a, .gallery-grid a { display: block; overflow: hidden; border-radius: 14px; }
.photo-strip a:hover img, .gallery-grid a:hover img { transform: scale(1.06); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Events / offer cards ---------- */
.event-card {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 26px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
  margin-bottom: 24px;
}
.event-card img { border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; }
.event-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.event-price {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
}
.stripe-note {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin: 0;
  white-space: nowrap;
}

/* ---------- Event detail page ---------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.back-link:hover { color: var(--red); }

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 48px;
  text-align: center;
}
.testimonial-row span {
  font-family: 'Fredoka', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--red);
}

.event-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
  margin: 24px 0 0;
}

.feature-list {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
}
.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.event-poster {
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.speaker-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ticket-box {
  background: #fff;
  border: 1px solid var(--pink-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ticket-box .eyebrow { margin-bottom: 4px; }
.ticket-box h3 { margin: 0 0 14px; max-width: 320px; }
.stripe-widget-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 52px;
}

.cancellation-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--pink-light);
  padding-top: 20px;
  margin-top: 32px;
}
.event-date {
  font-family: 'Fredoka', sans-serif;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
@media (max-width: 820px) {
  .event-card { grid-template-columns: 1fr; text-align: left; }
}

.placeholder-note {
  background: var(--pink-light);
  border-left: 4px solid var(--red);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 32px;
}

/* ---------- Quote ---------- */
.quote-block {
  border-left: 4px solid var(--magenta);
  padding-left: 24px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .num {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--magenta);
  display: block;
  margin-bottom: 6px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pink-light);
  color: var(--ink);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer h4 { color: var(--red); font-size: 1rem; margin-bottom: 14px; }
.site-footer p { color: var(--ink); }
.site-footer a { color: var(--ink); }
.site-footer a:hover { color: var(--red); text-decoration: underline; }
.footer-brand img { height: 30px; margin-bottom: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(216,20,20,0.15);
  padding-top: 22px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-soft);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Form ---------- */
.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--pink-light);
  background: #fff;
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--red);
}

.contact-methods { display: flex; flex-direction: column; gap: 22px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; }
.contact-method .icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
