/* Hochzeitsdeko24 — Grundlagen
   Papier, Puder und getrocknete Rosen. Alles hell und weich, Linien nur
   haarfein, und der geplante Raum liegt darin wie eine Karte auf dem Tisch. */

:root {
  --elfenbein: #fdfaf7;
  --puder: #f7ecea;
  --puder-tief: #f0e0de;
  --karte: #ffffff;
  --linie: #ecdcd9;
  --linie-zart: #f4e8e6;

  --tinte: #4a3a42;
  --tinte-leise: #7a6069;

  --rose: #a85c68;
  --rose-hell: #c2848e;
  --rose-blass: #f3dcdd;
  --salbei: #8fa085;
  --salbei-blass: #e6ece2;
  --gold: #b3925e;

  --warnung: #b5563f;

  --boden: #fcf7f1;
  --wand: #9c848c;

  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Karla", "Segoe UI", system-ui, sans-serif;

  --r-klein: 3px;
  --r-gross: 14px;
  --schatten: 0 20px 45px -25px rgba(120, 85, 92, 0.45);
  --schatten-zart: 0 2px 12px -6px rgba(120, 85, 92, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--elfenbein);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 0 0 0.45em;
}

h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.4rem);
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

em {
  font-family: var(--serif);
  font-style: italic;
}

p {
  margin: 0 0 1em;
  max-width: 62ch;
}

a {
  color: var(--rose);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border: 1px solid var(--rose);
  background: var(--rose);
  color: #fff;
  padding: 0.8em 1.6em;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.knopf:hover {
  background: var(--rose-hell);
  border-color: var(--rose-hell);
}

.knopf.ruhig {
  background: transparent;
  color: var(--rose);
  border-color: var(--linie);
}

.knopf.ruhig:hover {
  background: var(--puder);
  border-color: var(--rose-hell);
}

.knopf:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
