/* Susie Treats — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --teal: #14717a;
  --teal-dark: #0c4d54;
  --teal-light: #e3f2f2;
  --pink: #ee1b85;
  --pink-dark: #c4116a;
  --pink-light: #fce3f0;
  --cream: #f7f0e2;
  --cream-dark: #efe3c9;
  --ink: #24302e;
  --max-width: 1100px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 113, 122, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', 'Poppins', system-ui, sans-serif;
  color: var(--teal-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--pink-dark);
}

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

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

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

.site-header {
  background: #fff;
  border-bottom: 4px solid var(--pink);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  height: 56px;
  aspect-ratio: 1290 / 1266;
}

.brand-logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 112px;
  width: auto;
  max-width: none;
  border-radius: 8px;
  z-index: 1;
}

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

.site-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--teal-dark);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: var(--pink-light);
  color: var(--pink-dark);
}

.site-nav a.active {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--pink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--teal-dark);
  border-radius: 3px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: min(70vh, 560px);
  object-fit: cover;
  filter: brightness(0.62);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay .container {
  max-width: 780px;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.hero .tagline {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--pink-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6em;
}

.hero .lede {
  font-size: 1.15rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-pink {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(238, 27, 133, 0.35);
}

.btn-pink:hover {
  background: var(--pink-dark);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(20, 113, 122, 0.3);
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* ---------- Sections / Cards ---------- */

.section {
  padding: 64px 0;
}

.section-alt {
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 0.3em;
}

.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4em;
  color: #4a5654;
}

.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
}

.page-hero .tagline {
  font-family: 'Baloo 2', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink-light);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.prose h2 {
  margin-top: 1.4em;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--pink);
}

.card h3 {
  color: var(--pink-dark);
}

.card.teal-top {
  border-top-color: var(--teal);
}

.card.teal-top h3 {
  color: var(--teal-dark);
}

.event-card {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid var(--teal);
  border-top: 6px solid var(--pink);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.event-card-logo {
  max-width: 220px;
  width: 100%;
  margin: 0 auto 20px;
}

.event-card p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.event-name {
  margin: 0 0 12px;
}

.event-date {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
}

.event-ics-btn {
  display: inline-block;
  margin-bottom: 24px;
}

.stat-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
  padding: 40px 0;
}

.stat-strip .stat-num {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.6rem;
  color: var(--pink);
  font-weight: 700;
}

.stat-strip .stat-label {
  color: var(--teal-dark);
  font-weight: 600;
}

.cta-banner {
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--radius);
  margin: 0 24px;
}

.cta-banner h2 {
  color: #fff;
}

.quote-block {
  background: var(--cream-dark);
  border-left: 6px solid var(--pink);
  padding: 20px 26px;
  border-radius: 8px;
  font-style: italic;
  color: var(--teal-dark);
}

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}

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

.form-row label {
  display: block;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.form-row .required {
  color: var(--pink);
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background: var(--cream);
  transition: border-color 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
}

.checkbox-row label {
  margin: 0;
  font-weight: 500;
  color: var(--ink);
}

.captcha-box {
  background: var(--teal-light);
  border: 2px dashed var(--teal);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.captcha-box .captcha-question {
  font-weight: 700;
  color: var(--teal-dark);
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
}

.captcha-box input {
  width: 90px !important;
}

/* honeypot field — hidden from real visitors, catches bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-msg {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: none;
}

.form-msg.show {
  display: block;
}

.form-msg.success {
  background: #e3f5ea;
  color: #1c7a44;
  border: 2px solid #a6e3bf;
}

.form-msg.error {
  background: var(--pink-light);
  color: var(--pink-dark);
  border: 2px solid var(--pink);
}

.contact-info {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 640px;
}

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

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

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

.footer-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 2px;
}

.footer-tagline {
  color: var(--pink-light);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-quote {
  max-width: 620px;
  margin: 0 auto 18px;
  font-style: italic;
  color: #d9ece9;
  font-size: 0.95rem;
  border: none;
  padding: 0;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #a9c7c4;
  margin: 0;
}

/* ---------- Responsive ---------- */

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

  .card-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 4px solid var(--pink);
    display: none;
  }

  .site-nav.open {
    display: block;
    z-index: 20;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 12px 24px 20px;
  }

  .site-nav a {
    display: block;
  }

  .cta-banner {
    margin: 0 12px;
  }
}
