
/* ===============================
   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;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.action-buttons {
  display: flex;
  gap: 0.8rem;
}

.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;
}

.visual-stack {
  display: flex;
  flex-direction: column;
  align-items: 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; }
}

.quote {
  margin-top: 1.4rem;
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  color: rgba(255,255,255,0.9);
  max-width: 260px;
}

/* 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;
}

/* ===============================
   DASHBOARD – CLEAN LAYOUT
   =============================== */

.content.dashboard {
  max-width: 520px;
  position: relative;
}

.content.dashboard h1 {
  margin-bottom: 0.4rem;
}

.pairline {
  font-size: 0.95rem;
  margin-bottom: 2.4rem;
  color: rgba(0, 0, 0, 0.65);
}

.brand-accent {
  color: #e85a8c;
  font-weight: 500;
}

/* Flow der Aktionen */
.dashboard-flow {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Hero Button */
.btn.hero {
  padding: 1.1rem 1.4rem;
  font-size: 1rem;
}

/* Text-Button */
.btn.text {
  background: none;
  border: none;
  color: #e85a8c;
  font-size: 0.9rem;
  padding: 0;
}

.btn.text:hover {
  text-decoration: underline;
}

.wish-input {
  display: flex;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.invite-box {
  max-width: 440px;
  margin-top: 2rem;
}

.invite-link {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
  word-break: break-all;
}

/* Haupt-Titel */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

/* Subtitles */
.subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  opacity: 0.82;
  margin-bottom: 0.8rem;
}

/* Section Headings – Liste */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 2.6rem;
  margin-bottom: 0.9rem;
  color: rgba(0, 0, 0, 0.75);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #e85a8c, rgba(232,90,140,0.2));
  margin-top: 0.35rem;
  border-radius: 2px;
}

/* 🎉 Confetti Overlay */
.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  top: -10px;
  width: 8px;
  height: 12px;
  opacity: 0.9;
  animation: confetti-fall 2.6s linear forwards;
  border-radius: 2px;
}

@keyframes confetti-fall {
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes confetti-explode {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 1;
  }
  70% {
    transform:
      translate(var(--x), var(--y))
      rotate(540deg);
    opacity: 1;
  }
  100% {
    transform:
      translate(var(--x), calc(var(--y) + 140px))
      rotate(720deg);
    opacity: 0;
  }
}

.confetti {
  position: absolute;
  width: 8px;
  height: 12px;
  border-radius: 2px;
  animation: confetti-explode 2.6s ease-out forwards;
}

.help-link {
  margin-top: 2rem;
  text-align: left;
  font-size: 0.85rem;
  opacity: 0.65;
}

.help-link a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.help-link a:hover {
  opacity: 0.85;
}

.get-started-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
}

.get-started-link a {
  color: #e85a8c; /* Wunschlos-Rosa */
  font-weight: 500;
  text-decoration: none;
}

.get-started-link a::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 6px auto 0;
  background: linear-gradient(
    90deg,
    rgba(232,90,140,0.2),
    rgba(232,90,140,0.9),
    rgba(232,90,140,0.2)
  );
  border-radius: 2px;
}

.get-started-link a:hover {
  opacity: 0.85;
}

.about-card p {
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.about-card em {
  font-style: italic;
}

.soft-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.4),
    rgba(255,255,255,0)
  );
  margin: 1.5rem 0;
}

.small-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

.donate-wrap {
  margin: 1rem 0;
  text-align: center;
}

.closing {
  margin-top: 1.2rem;
  font-style: italic;
  text-align: center;
  opacity: 0.9;
}

.about-link {
  margin-top: 0.6rem;
  text-align: left;
  font-size: 0.85rem;
  opacity: 0.7;
}

.about-link a {
  color: #e85a8c;
  text-decoration: none;
}

.about-link a:hover {
  opacity: 1;
}

.dashboard-about {
  margin-top: 2.2rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.dashboard-donate {
  margin-top: 3rem;
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.6;
}

.dashboard-donate-link {
  text-align: center;
  margin-top: 0.3rem;
}

.dashboard-donate-link a {
  font-size: 0.8rem;
  color: #e85a8c; /* Wunschlos-Rosa */
  text-decoration: none;
}

.dashboard-donate-link a:hover {
  opacity: 1;
}

.dashboard-donate-wrap {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px; /* gleiche Breite wie Buttons */
  text-align: center;
  pointer-events: auto;
}
}