/* Dopp — shared web theme, mirrors Dopp/Theme/Theme.swift */
:root {
  --sky-top: #BFE6FF;
  --sky-bottom: #EAF8FF;
  --sunshine: #FFD45E;
  --sun-glow: #FFF1C2;
  --water: #6FC3E8;
  --water-deep: #3E9FD1;
  --water-glint: #CFEFFB;
  --leaf: #6FB05A;
  --leaf-deep: #3F7D3A;
  --birch: #EFE7D6;
  --lingonberry: #E2554F;
  --cream: #FFFBF2;
  --paper-top: #FFFDF7;
  --paper-bottom: #FBF1DE;
  --ink: #2E3B33;
  --ink-soft: #5C6A60;
  --card: rgba(255, 255, 255, 0.82);
  --card-radius: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, "SF Pro Rounded", ui-rounded, system-ui, "Segoe UI", sans-serif;
  font-weight: 500;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Translucent "swim day" card — mirrors DoppCard */
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--card-radius);
  padding: 18px;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
}

/* Capsule buttons — mirror the app's pill buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  font-family: inherit;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  border: 0;
}
.btn.primary { background: var(--lingonberry); }
.btn.secondary { background: var(--water); }
.btn:active { filter: brightness(0.95); }

h1, h2, h3 { font-weight: 800; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
