/* PLAYful MINTful Corporate Design */

@font-face {
  font-family: 'Catamaran';
  src: url('/assets/fonts/Catamaran/Catamaran-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --pm-dark:   #4C7364;
  --pm-mint:   #64C8B4;
  --pm-tint:   #DCF4EF;
  --pm-ink:    #1f2b26;
  --pm-cream:  #fafaf7;
  --pm-shadow: 0 8px 32px rgba(76, 115, 100, 0.18);
  --pm-radius: 14px;
  --pm-radius-lg: 24px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Catamaran', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 300;
  color: var(--pm-ink);
  background: var(--pm-cream);
  line-height: 1.5;
}

h1, h2, h3 {
  font-weight: 900;
  color: var(--pm-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

strong, b { font-weight: 600; }
em { color: var(--pm-dark); font-style: normal; font-weight: 600; }

a { color: var(--pm-dark); text-decoration-color: var(--pm-mint); text-underline-offset: 3px; }
a:hover { color: var(--pm-mint); }

button, .btn {
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7em 1.4em;
  border-radius: 999px;
  border: 2px solid var(--pm-dark);
  background: var(--pm-mint);
  color: var(--pm-dark);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--pm-shadow);
  background: var(--pm-dark);
  color: var(--pm-cream);
}
button:active { transform: translateY(0); }
button:disabled, .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

input[type=text], textarea {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  padding: 0.7em 1em;
  border: 2px solid var(--pm-tint);
  border-radius: var(--pm-radius);
  background: #fff;
  color: var(--pm-ink);
  width: 100%;
  transition: border-color .15s ease;
}
input[type=text]:focus, textarea:focus {
  outline: none;
  border-color: var(--pm-mint);
}
textarea { resize: vertical; min-height: 5em; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: transparent;
}
.site-header .brand {
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--pm-dark);
  letter-spacing: 0.02em;
}
.site-header .logo { height: 42px; width: auto; }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  font-size: 0.85rem;
  color: var(--pm-dark);
  opacity: 0.8;
  margin-top: 4rem;
}
