/* ==========================================================
   Zentrale Design-Einstellungen (Angelehnt an Bild 1 & 2)
   ========================================================== */
:root {
  --farbe-hintergrund: #ffffff;
  --farbe-hintergrund-alt: #fbf9f6; /* Zartes, edles Off-White */
  --farbe-text: #2c2a29;            /* Dunkles Anthrazit für besseren Kontrast */
  --farbe-text-muted: #6e6a66;
  --farbe-akzent: #a8896c;          /* Eleganter Gold-/Erdton */
  --farbe-akzent-dunkel: #7c624b;

  /* Hochwertige Schriftkombination */
  --schrift-ueberschrift: 'Cormorant Garamond', Georgia, serif;
  --schrift-text: 'Montserrat', Arial, sans-serif;

  --max-breite: 1100px;
}

/* ==========================================================
   Basis-Resets
   ========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable; /* verhindert Verschieben der Seite, wenn Scrollbar durch Lightbox verschwindet */
}

body {
  font-family: var(--schrift-text);
  color: var(--farbe-text);
  background-color: var(--farbe-hintergrund);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

body.lightbox-locked {
  overflow: hidden;
}

/* Bilder bleiben immer innerhalb ihres Containers, egal welche
   Originalgröße/Seitenverhältnis sie mitbringen oder auf welchem
   Gerät sie angezeigt werden. */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-breite);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: var(--schrift-ueberschrift);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ==========================================================
   Navigation (Dezent im Hintergrund liegend, ohne Rahmen)
   ========================================================== */
.site-header {
  position: absolute; /* Über dem Hero-Bild schwebend wie in Bild 1 */
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 100;
}

.nav {
  max-width: 100%;
  margin: 0;
  padding: 1.5rem clamp(1rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--schrift-ueberschrift);
  font-size: 1.5rem;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--schrift-fliesstext, inherit);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.2rem 0.3rem;
  transition: color 0.3s, opacity 0.3s;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ==========================================================
   SEITE 1 — Hero-Bereich
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* verhindert Verschieben bei sich ändernder Adressleiste/Tab-Höhe */
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Ersetze 'hero-bg.jpg' durch dein hochauflösendes Hauptbild */
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('picture/hero-bg.jpg') center/cover no-repeat;
  background-attachment: scroll;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-intro {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-names {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.1;
  font-style: italic;
}

.hero-names .ampersand {
  font-family: var(--schrift-text);
  font-size: 1.5rem;
  font-style: normal;
  display: block;
  margin: 0.5rem 0;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.8;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 1.5rem auto;
}

.hero-date {
  font-family: var(--schrift-ueberschrift);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

/* ==========================================================
   Animationen — ausschließlich auf Seite 1 (Hero).
   @supports sorgt dafür, dass Inhalte in Browsern ohne
   Animation-Unterstützung ganz normal (opacity: 1) angezeigt
   werden statt zu verschwinden. prefers-reduced-motion
   deaktiviert die Bewegung zusätzlich aus Rücksicht auf die
   Nutzer:innen-Einstellungen.
   ========================================================== */
@supports (animation-name: heroFadeUp) {
  .hero-intro,
  .hero-names,
  .hero-date,
  .hero-content .btn-hero {
    opacity: 0;
    animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-intro { animation-delay: 0.2s; }
  .hero-names { animation-delay: 0.45s; }
  .hero-divider { animation: heroLineGrow 0.6s ease-out 0.75s backwards; }
  .hero-date { animation-delay: 1s; }
  .hero-content .btn-hero { animation-delay: 1.3s; }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-intro,
  .hero-names,
  .hero-date,
  .hero-content .btn-hero,
  .hero-divider {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: 60px !important;
  }
}

/* ==========================================================
   Abschnitte Allgemein
   ========================================================== */
.section {
  padding: 6rem 0;
}

.snap-section {
  scroll-snap-align: start;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.section-alt {
  background-color: var(--farbe-hintergrund-alt);
}

/* ==========================================================
   SEITE 2 — Our Story Layout (Modelliert nach Bild 2)
   ========================================================== */
.section-story {
  text-align: center;
}

.story-intro-text {
  margin-bottom: 4rem;
}

.story-intro-text .subtitle {
  font-style: italic;
  color: var(--farbe-text-muted);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.story-intro-text h2 {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
}

/* Das 3-Spalten-Profil-Grid: links Person, Mitte Paar (größer), rechts Person */
.profile-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.profile-card {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mitte (Paar) kriegt optisch mehr Gewicht, Reihenfolge kommt aus der
   natürlichen DOM-Reihenfolge Shanel -> Paar -> Jakob (kein order nötig) */
.profile-center {
  max-width: 380px;
}

.profile-image-slot {
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.profile-image-wrapper {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.45);
  position: relative;
}

/* Größenverhältnis kreisrund analog zu Bild 2, etwas größer */
.circle-small {
  width: 220px;
  height: 220px;
}

.circle-large {
  width: 240px;
  height: 240px;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-img.zoomable {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.profile-img.zoomable:hover {
  transform: scale(1.05);
}

.profile-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--farbe-akzent-dunkel);
}

.couple-title {
  font-weight: 700;
}

.profile-card p {
  font-size: 0.9rem;
  color: var(--farbe-text-muted);
  line-height: 1.6;
}

/* ==========================================================
   Lightbox (Bild-Zoom): rund -> smooth -> groß & eckig im Original
   ========================================================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(20, 18, 16, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: zoom-out;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-overlay.is-visible {
  opacity: 1;
}

.lightbox-img {
  width: min(80vw, 500px);
  height: min(80vw, 500px);
  max-height: 85vh;
  object-fit: cover;
  border-radius: 0; /* eckig / originale Bildform statt Kreis */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.lightbox-overlay.is-visible .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

/* ==========================================================
   SEITE 3 — "That was our story... what's yours?" (Marketing)
   ========================================================== */
.section-your-story {
  background: linear-gradient(135deg, var(--farbe-hintergrund-alt) 0%, #f3ece2 100%);
  text-align: center;
}

.your-story-container {
  max-width: 700px;
}

.your-story-eyebrow {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--farbe-akzent-dunkel);
  font-weight: 600;
  margin-bottom: 1rem;
}

.your-story-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 1.75rem;
  color: var(--farbe-text);
}

.your-story-text {
  font-size: 1rem;
  color: var(--farbe-text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.url-preview {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.url-preview-lock {
  font-size: 0.85rem;
}

.url-preview-text {
  font-size: 0.9rem;
  color: var(--farbe-text-muted);
  white-space: nowrap;
}

.url-preview-text strong {
  color: var(--farbe-akzent-dunkel);
  font-weight: 600;
}

/* "Jetzt ausprobieren"-Button, unter den Beispiel-Boxen in Seite 4 */
.details-try-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--farbe-akzent);
  border-radius: 999px;
  background: transparent;
  color: var(--farbe-akzent-dunkel);
  font-family: var(--schrift-text);
  font-size: 0.8rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.details-try-btn:hover {
  background-color: var(--farbe-akzent);
  color: #fff;
}

/* START: Styling für den "Weitere Ideen"-Link — bei Bedarf einfach löschen */
.details-more-ideas-link {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--farbe-text-muted);
  text-decoration: none;
}

.details-more-ideas-link:hover {
  color: var(--farbe-akzent-dunkel);
  text-decoration: underline;
}
/* ENDE: Styling für den "Weitere Ideen"-Link */

.url-try-wrapper {
  margin-top: 1rem;
}

.url-try-input {
  width: 100%;
  max-width: 260px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--farbe-akzent);
  border-radius: 999px;
  font-family: var(--schrift-text);
  font-size: 0.9rem;
  text-align: center;
  color: var(--farbe-text);
  background-color: #fff;
}

.url-try-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 137, 108, 0.25);
}

.gift-list-preview {
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  text-align: left;
}

.gift-list-preview li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  color: var(--farbe-text-muted);
}

.gift-list-item {
  transition: opacity 0.3s ease;
}

.gift-checkbox {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--farbe-akzent);
  cursor: pointer;
  flex-shrink: 0;
}

.gift-list-item.is-claimed {
  opacity: 0;
}

.guest-list-empty {
  font-size: 0.8rem;
  color: var(--farbe-text-muted);
  text-align: center;
  padding: 0.6rem 1.1rem;
}

.guest-list-preview {
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  text-align: left;
  width: 100%;
  max-width: 260px;
}

.guest-list-preview li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.guest-name {
  font-size: 0.85rem;
  color: var(--farbe-text);
  font-weight: 500;
  white-space: nowrap;
}

.guest-status {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.guest-status-yes {
  background-color: rgba(122, 170, 120, 0.15);
  color: #4c7a49;
}

.guest-status-pending {
  background-color: rgba(168, 137, 108, 0.15);
  color: var(--farbe-akzent-dunkel);
}

.hashtag-pill {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--farbe-akzent);
  border-radius: 999px;
  color: var(--farbe-akzent-dunkel);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.your-story-cta {
  display: inline-block;
}

/* ==========================================================
   SEITE 4 — Details: 2x2 Grid (anderer Sektions-Hintergrund
   als die Kästen selbst)
   ========================================================== */
.section-details {
  background-color: var(--farbe-hintergrund);
  color: var(--farbe-text);
}

.details-heading {
  color: var(--farbe-text);
}

.details-subtitle {
  text-align: center;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--farbe-text-muted);
  max-width: 480px;
  margin: -1rem auto 3rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Button, der die restlichen Feature-Zeilen einblendet */
.details-more-toggle {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--schrift-text);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--farbe-akzent-dunkel);
  padding: 0.5rem;
}

.details-more-toggle:hover {
  color: var(--farbe-text);
}

.details-more-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.details-more-toggle:hover .details-more-icon {
  transform: translateY(3px);
}

/* Container für die per Button eingeblendeten Feature-Zeilen */
.details-more {
  grid-column: 1 / -1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  animation: detailsReveal 0.5s ease;
}

/* [hidden] muss die eigene display:flex-Regel oben überstimmen, sonst bleibt der Block sichtbar */
.details-more[hidden] {
  display: none;
}

@keyframes detailsReveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.details-card {
  background: linear-gradient(135deg, var(--farbe-hintergrund-alt) 0%, #f3ece2 100%);
  color: var(--farbe-text);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  min-width: 0; /* verhindert, dass eine Karte das Grid sprengt (z.B. lange Countdown-Labels) */
}

.details-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--farbe-akzent-dunkel);
}

/* Breite Zeile: Text links, Beispiel/Vorschau rechts (z.B. Countdown-Karte) */
.details-card-split {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  text-align: left;
  min-height: 0;
}

.details-card-split .details-card-text {
  flex: 1;
}

.details-card-split .details-card-text h3 {
  margin-bottom: 0.5rem;
}

.details-card-split .details-card-text p {
  margin: 0;
}

.details-card-split .details-card-example {
  flex-shrink: 0;
  text-align: center;
  max-width: 280px;
}

.details-card .venue-time {
  color: var(--farbe-akzent-dunkel);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.contact-name {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.contact-person-name {
  font-family: var(--schrift-ueberschrift);
  font-size: 1.15rem;
  color: var(--farbe-akzent-dunkel);
  margin-bottom: 0.5rem;
}

.contact-line {
  font-size: 0.9rem;
}

.contact-line a {
  color: var(--farbe-text);
  text-decoration: none;
  border-bottom: 1px solid var(--farbe-akzent);
  transition: color 0.3s, border-color 0.3s;
}

.contact-line a:hover {
  color: var(--farbe-akzent-dunkel);
  border-color: var(--farbe-akzent-dunkel);
}

.details-card p {
  font-size: 0.9rem;
  color: var(--farbe-text-muted);
}

/* Testweise leere Kästen: dezent angedeutet, damit man den Platz sieht */
.details-card-empty {
  background: transparent;
  border: 2px dashed rgba(124, 98, 75, 0.3);
  box-shadow: none;
}

/* Countdown, eingebettet in eine weiße Details-Card */
.details-card .countdown {
  width: 100%;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 0.6rem 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.03);
}

.countdown-value {
  font-family: var(--schrift-ueberschrift);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--farbe-akzent-dunkel);
}

.countdown-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--farbe-text-muted);
  margin-top: 0.3rem;
}

/* ==========================================================
   Venue-Zeit (im Details-Grid verwendet)
   ========================================================== */
.venue-time {
  margin-top: 0.5rem;
  color: var(--farbe-akzent-dunkel);
  font-weight: 500;
}

/* ==========================================================
   RSVP-Formular
   ========================================================== */
.rsvp-deadline {
  text-align: center;
  margin-bottom: 2.5rem;
  font-style: italic;
  color: var(--farbe-text-muted);
}

.rsvp-form {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 260px;
  margin: 0 auto 2.5rem;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--farbe-text-muted);
  border: 1px solid #dcd6cd;
  background-color: #fff;
  transition: all 0.3s;
}

.step-dot.is-active {
  color: #fff;
  background-color: var(--farbe-akzent);
  border-color: var(--farbe-akzent);
}

.step-dot.is-done {
  color: #fff;
  background-color: var(--farbe-akzent-dunkel);
  border-color: var(--farbe-akzent-dunkel);
}

.step-line {
  flex: 1;
  height: 1px;
  background-color: #dcd6cd;
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.form-step.is-active {
  display: flex;
}

.form-step-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: -0.5rem;
}

.form-fieldset {
  border: 1px solid #dcd6cd;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-fieldset legend {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 0.4rem;
}

/* Stepper-Feld (Ticket-Style +/-) für Personen/Kinder */
.stepper-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stepper-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.stepper {
  display: flex;
  align-items: center;
  border: 1px solid #dcd6cd;
  border-radius: 999px;
  overflow: hidden;
}

.stepper-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--farbe-akzent-dunkel);
  cursor: pointer;
  transition: background-color 0.2s;
}

.stepper-btn:hover {
  background-color: var(--farbe-hintergrund-alt);
}

.stepper input {
  width: 44px;
  border: none;
  border-left: 1px solid #dcd6cd;
  border-right: 1px solid #dcd6cd;
  text-align: center;
  font-family: var(--schrift-text);
  font-size: 0.95rem;
  padding: 0.6rem 0;
  background-color: #fff;
  -moz-appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  font-size: 0.95rem;
  cursor: pointer;
}

.radio-label input {
  width: auto;
  accent-color: var(--farbe-akzent);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-nav .btn {
  flex: 1;
}

.btn-outline {
  background-color: transparent;
  color: var(--farbe-akzent-dunkel);
  border: 1px solid var(--farbe-akzent);
}

.btn-outline:hover {
  background-color: var(--farbe-akzent);
  color: #fff;
}

.btn-outline:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-outline:disabled:hover {
  background-color: transparent;
  color: var(--farbe-akzent-dunkel);
}

.rsvp-thank-you {
  display: none;
  text-align: center;
  font-family: var(--schrift-ueberschrift);
  font-size: 1.5rem;
  color: var(--farbe-akzent-dunkel);
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 0;
}

.rsvp-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.rsvp-form input,
.rsvp-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #dcd6cd;
  border-radius: 0; /* Cleanes, eckiges Design */
  font-family: var(--schrift-text);
  font-size: 0.95rem;
  background-color: #fff;
  transition: border-color 0.3s;
}

.rsvp-form input:focus,
.rsvp-form textarea:focus {
  outline: none;
  border-color: var(--farbe-akzent);
}

/* ==========================================================
   Button
   ========================================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--farbe-akzent);
  color: #fff;
  text-decoration: none;
  border: none;
  font-family: var(--schrift-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
}

.btn:hover {
  background-color: var(--farbe-akzent-dunkel);
}

.btn-hero {
  background-color: transparent;
  border: 1px solid #fff;
}

.btn-hero:hover {
  background-color: #fff;
  color: var(--farbe-text);
}

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--farbe-hintergrund-alt);
  color: var(--farbe-text-muted);
}

/* ==========================================================
   Responsive Ansichten / Mobilgeräte
   ========================================================== */
@media (max-width: 768px) {
  .site-header {
    position: sticky;
    background-color: var(--farbe-hintergrund);
    border-bottom: 1px solid var(--farbe-hintergrund-alt);
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-logo, .nav-links a {
    color: var(--farbe-text);
  }

  .nav-logo-img {
    height: 38px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .lang-btn {
    color: var(--farbe-text-muted, rgba(0, 0, 0, 0.5));
  }

  .lang-btn:hover,
  .lang-btn.active {
    color: var(--farbe-text);
  }

  .hero {
    height: 80vh;
    height: 80dvh;
  }

  .profile-grid {
    flex-direction: column;
    gap: 4rem;
  }

  /* Auf Mobilgeräten wird das Paar logisch ganz oben dargestellt */
  .profile-center {
    order: 0;
  }

  .profile-side {
    order: 1;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .details-card-split {
    flex-direction: column;
    text-align: center;
  }

  .countdown-item {
    min-width: 60px;
  }
}