/* Loop — design system extracted from Loop.dc.html */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[x-cloak] { display: none !important; }
/* Flex centering for x-show modals — kept in CSS because Alpine's x-show strips the inline `display` property when revealing, which would otherwise drop `display:flex`. */
.modal-overlay { display: flex; align-items: center; justify-content: center; }

:root {
  --accent: #FF6A3D;
  --accent-ink: color-mix(in oklab, var(--accent), #000 17%);
  --accent-soft: color-mix(in oklab, var(--accent), #fff 85%);
  --radius: 18px;
  --font-display: 'Fredoka';
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #2B211C;
  background: #FBF3E9;
}

::selection { background: var(--accent-soft); }
input, button, textarea, select { font-family: inherit; }
input:focus, textarea:focus { outline: none; }

@keyframes floaty  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floaty2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }
@keyframes pop     { from { transform: translateY(8px); } to { transform: none; } }
@keyframes slideup { from { transform: translateY(10px); } to { transform: none; } }

.anim-floaty  { animation: floaty 5s ease-in-out infinite; }
.anim-floaty2 { animation: floaty2 6s ease-in-out infinite; }
.anim-slideup { animation: slideup .3s ease; }

/* ---- hover utilities (replace the design's style-hover attribute) ---- */
.h-accent { transition: background .15s; }
.h-accent:hover { background: var(--accent-ink) !important; }

.h-cream { transition: background .15s; }
.h-cream:hover { background: #F3E7D8 !important; }

.h-teal { transition: background .15s; }
.h-teal:hover { background: #0E7C70 !important; }

.h-green { transition: background .15s; }
.h-green:hover { background: #0E7C70 !important; }

.h-white14 { transition: background .15s; }
.h-white14:hover { background: rgba(255,255,255,.14) !important; }

.h-navpill { transition: background .15s, color .15s; }
.h-navpill:hover { background: #F3E7D8 !important; color: #2B211C !important; }

.h-lift { transition: transform .16s, box-shadow .16s; }
.h-lift:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(70,40,20,.13); }

/* scrollbar for horizontal nav strips */
.no-scrollbar::-webkit-scrollbar { height: 0; }
