/* Cart Basel — shared design tokens */
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Oswald:wght@500;600;700&family=Afacad:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #a8f6f8;
  --bg-secondary: #b8f9fb;
  --bg-tertiary: #c8fcfd;
  --bg-inverted: #2b0a68;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-muted: #999999;
  --text-inverted: #e5f6f7;
  --text-on-accent: #ffffff;
  --accent-pink: #f98dc9;
  --accent-pink-strong: #ff3fa4;
  --accent-cyan: #0df2ea;
  --accent-yellow: #fff23d;
  --border-primary: #0df2ea;

  --font-script: 'Shrikhand', cursive;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Afacad', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
}

.font-script { font-family: var(--font-script); }
.font-head { font-family: var(--font-head); }

/* Textured spray-paint style display headings */
.display-head {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

/* Playful pink pill / marker button */
.btn-pink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--accent-pink-strong);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 0 0 #b5006b, 0 12px 24px -8px rgba(181,0,107,0.6);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-pink:hover { transform: translateY(2px); box-shadow: 0 4px 0 0 #b5006b, 0 8px 18px -8px rgba(181,0,107,0.6); }
.btn-pink:active { transform: translateY(6px); box-shadow: 0 0 0 0 #b5006b; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: transparent;
  color: var(--bg-inverted);
  border: 3px solid var(--bg-inverted);
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.btn-outline:hover { background: var(--bg-inverted); color: var(--accent-cyan); }

/* Schedule row */
.sched-time {
  font-family: var(--font-head);
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%);
}

/* Marquee */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track { display: inline-flex; white-space: nowrap; animation: marquee 22s linear infinite; }

@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(6deg); } }
.floaty { animation: floaty 6s ease-in-out infinite; }

/* FAQ */
details.faq { border-bottom: 2px solid rgba(43,10,104,0.15); }
details.faq summary { list-style: none; cursor: pointer; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq[open] .faq-plus { transform: rotate(45deg); }
.faq-plus { transition: transform .2s ease; }

/* Form fields */
.cb-input {
  width: 100%;
  background: rgba(249,141,201,0.18);
  border: 2px solid var(--accent-pink);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cb-input::placeholder { color: #b06a92; }
.cb-input:focus { outline: none; border-color: var(--accent-pink-strong); box-shadow: 0 0 0 4px rgba(255,63,164,0.18); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .floaty { animation: none; }
  html { scroll-behavior: auto; }
}
