
/* ===============================
   WUNSCHLOS – GLOBAL STYLE (FINAL)
   DO NOT SPLIT / DO NOT REPLACE
   =============================== */

:root {
  --bg-left: #ffffff;
  --bg-right: linear-gradient(160deg, #fdeff4, #f6c1d5);
  --primary: #e75480;
  --primary-soft: #f3a9c0;
  --text-main: #2b2b2b;
  --text-soft: #6b6b6b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: #fff;
}

/* ===== LAYOUT ===== */
.page {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
}

.content {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual {
  background: var(--bg-right);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TYPO ===== */
h1, h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
}

.brand { color: var(--primary); }

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}

.subtitle {
  color: var(--text-soft);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===== BUTTONS / LINKS ===== */
.actions { display: flex; gap: 1rem; }

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 2.1rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 30px rgba(231,84,128,0.35);
}

.btn.primary:hover { transform: translateY(-2px); }

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary-soft);
}

/* ===== CARDS ===== */
.card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 40px rgba(231,84,128,0.15);
}

.card.soft { background: #fff7fa; }

.card.center {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== FORMS ===== */
input {
  width: 100%;
  padding: 0.7rem;
  margin: 0.4rem 0;
  border-radius: 10px;
  border: 1px solid #eee;
}

/* ===== LISTS ===== */
ul { list-style: none; padding: 0; margin: 0; }

li {
  background: #fff;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

li.done { text-decoration: line-through; opacity: 0.6; }

/* ===== ZIEHEN ===== */
.gift-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.gift { width: 160px; display: block; }

.note {
  font-family: 'Pacifico', cursive;
  background: #fffdf7;
  border-radius: 18px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.hidden { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .page { grid-template-columns: 1fr; }
  .visual { display: none; }
  .content { padding: 3rem 1.8rem; justify-content: flex-start; }
}


/* Refined floating navigation buttons (no banner) */

.nav-back,
.nav-logout {
  position: fixed;
  z-index: 50;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.6);
}

.nav-back {
  bottom: 20px;
  left: 20px;
}

.nav-logout {
  top: 20px;
  right: 20px;
}

.nav-back:hover,
.nav-logout:hover {
  transform: translateY(-1px);
}

.logo {
  width: 700px;
  max-width: 100%;
  height: auto;
  display: block;
}