/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter', sans-serif; line-height:1.6; color:#2C2E3C; background:#fff; }

/* Header dunkel */
header nav {
  display:flex; justify-content:space-between; align-items:center;
  padding:1rem 2rem; background:#2C2E3C; border-bottom:1px solid #1f202c;
  position:sticky; top:0; z-index:100;
}
header nav .logo { height:40px; }
.nav-links { list-style:none; display:flex; gap:1.5rem; align-items:center; }
.nav-links li a { text-decoration:none; color:#fff; font-weight:600; transition:0.3s; }
.nav-links li a:hover { color:#fff; }

.logo-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.app-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

/* Einheitliche H2-Überschriften */
h2 {
  font-size: 1.5rem;       /* gleiche Größe für alle h2 */
  margin-bottom: 1rem;     /* Abstand zum nachfolgenden Inhalt */
  color: #2C2E3C;          /* Textfarbe */
  text-align: center;      /* optional, wenn alle zentriert sein sollen */
}

/* Hero */
.hero {
  display: flex;
  justify-content: center;  /* Center text + image as a group horizontally */
  align-items: stretch;     /* Image hugs top & bottom */
  position: relative;
  min-height: 500px;        /* Adjust as needed */
  gap: 3rem;                /* <-- horizontal padding between text and image */
  background: #F7F7F7;
}

.hero-content {
  flex: 0 1 800px;          /* Text takes natural width */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Text vertically centered */
  z-index: 1;
    padding: 0 2rem; /* ← left & right padding */

}

.hero-image-wrapper {
  flex: 0 1 300px;          /* Image width */
  position: relative;       /* For absolute positioning of image */
}


.hero-image {
  position: absolute;       /* Make image fill wrapper */
  top: 0;
  bottom: 0;
  right: 0;                 /* Stick to the right */
  width: auto;
  height: 100%;             /* Fill container height */
  object-fit: contain;      /* Keep aspect ratio */
}



.hero-content h1 { font-size: 2.5rem; margin: 0 0 0.5rem 0; }
.hero-content p { font-size: 1.2rem; margin: 0 0 1rem 0; }

.hero-content .store-buttons { 
  display: flex; 
  gap: 1rem; 
  margin-top: 20px;
  justify-content: flex-start;
}

.hero-content .store-buttons a img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media(max-width: 768px){
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    min-height: auto;
    padding-top: 40px;
  }

  .hero-content {
    justify-content: center;
    text-align: center;
  }

  .hero-image {
    position: static; /* Bild wieder normal einreihen */
    margin-top: 20px;
    max-width: 80%;
  }

  .store-buttons { justify-content: center; }
}
/* =========================
   Event Slider (CLEAN)
========================= */
/* Event Section als eigenen hellen Container mit weißem Abstand */
#events {
  background: #F7F7F7;      /* hellgrau wie bei FAQ */
  padding: 4rem 2rem;        /* innen: Abstand oben/unten + Seiten */
  margin: 2rem 0;            /* außen: weißer Abstand zu anderen Containern */
  border-radius: 16px;       /* optional: leicht abgerundet wie Cards */
}

/* H2-Abstand */
#events h2 {
  margin-bottom: 2rem;
  color: #2C2E3C;
  text-align: center;
}

/* Event-Cards leicht abgehoben */
#events .event-slider .event {
  margin: 0 auto;           
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 16px;
  overflow: hidden;
}

.event-slider-wrapper {
  overflow: hidden;
  max-width: 900px;
  margin: 2rem auto 0;
}

.event-slider {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

/* Event card */
.event-slider .event {
  min-width: 100%;
   max-width: 400px;           /* maximale Breite */
  background: #ffffff;        /* Hintergrundfarbe */
  border-radius: 16px;        /* abgerundete Ecken */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0rem;            /* etwas Padding innen */
  margin: 0 auto;             /* zentriert im Slider */
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
  opacity: 1 !important;
  transform: none !important;
}

.event-slider .event img {
  width: 100%;                /* füllt die Card */
  height: auto;
  border-radius: 12px;        /* rund wie die Card */
  object-fit: cover;          /* Bild wird passend zugeschnitten */
  margin-bottom: 1rem;
}


/* Text BELOW image */
.event-slider .event h3 {
  margin-top: 0rem;
  font-size: 1.2rem;
  text-align: center;
}

.event-slider .event p {
  font-size: 0.95rem;
  text-align: center;
  padding: 0 1.25rem 1.25rem;
}


/* Dots */
.event-dots {
  text-align: center;
  margin-top: 1rem;
}

.event-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.event-dots .dot.active {
  background: #2C2E3C;
}

/* Hochzeit Info Sektion */
#wedding-info {
  background-color: #f7f7f7;    /* hellgrau für sanften Hintergrund */
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05); /* leichter Schatten */
  margin: 2rem auto;
  max-width: 800px;             /* Text läuft nicht über die ganze Breite */
  text-align: left;             /* Text linksbündig für bessere Lesbarkeit */
  line-height: 1.7;             /* angenehme Zeilenhöhe */
}



/* Absatz etwas Abstand geben */
#wedding-info p {
  font-size: 1rem;
  margin-bottom: 0;
}


/* Checkliste zweispaltig mit Hintergrundfarbe */
#wedding-checklist {
  background-color: #f7f7f7; /* ganze Reihe hellgrau */
  padding: 2rem;
  border-radius: 12px; /* abgerundete Ecken */
  box-shadow: 0 4px 8px rgba(0,0,0,0.05); /* leichter Schatten */
  margin: 2rem auto;
  max-width: 1000px;
}

.checklist {
  list-style: none;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Zwei Spalten */
  gap: 1rem 3rem; /* Zeilen- und Spaltenabstand */
  text-align: left;
  font-size: 1rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Version: eine Spalte */
@media(max-width: 768px) {
  .checklist {
    grid-template-columns: 1fr; /* nur eine Spalte auf Handys */
    gap: 0.75rem 0;
  }
}


/* Keep other feature icons small */
/* Nur kleine Icons – NICHT für Vorteil-Cards */
.feature-grid .feature img {
  width: 70%;
}

/* Features */
.features { 
  padding: 2rem 2rem; 
  text-align: center; 
  background: #fff; 
}
/* Features / Vorteile von MUUNA */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 300px)); /* max 2 Cards nebeneinander */
  gap: 8rem;
  margin-top: 2rem;
  justify-content: center;  /* zentriert die Karten innerhalb des Grids */
}

.feature {
  background: #F7F7F7;
  border-radius: 16px;
  padding: 0;                 /* ❗ kein Innenabstand */
  overflow: hidden;           /* ❗ wichtig für abgerundete Ecken */
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.5s;
  opacity: 0;
  transform: translateY(20px);
  text-align: center;
}


.feature.bg-light { 
  background: #F7F7F7; 
}

.feature img { 
  width: 80px; 
  margin-bottom: 1rem; 
}

.feature h3 { 
  margin-bottom: 0.5rem; 
}

.feature p { 
  font-size: 0.9rem; 
}

.feature.fade-in { 
  animation: fadeUp 1s forwards; 
  animation-delay: 0.2s; 
}

/* QR-Code / Tischaufsteller Feature */
#qrcode {
  padding: 4rem 2rem;
  background: #F7F7F7;
  text-align: center;
}




#qrcode .feature-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: stretch; /* gleiche Höhe der Karten */
}
/* QR-Code Feature ohne Padding für das Bild */
#qrcode .feature {
  flex: 1 1 400px;
  max-width: 600px;
  background: #fff;
  border-radius: 16px;
  padding: 0; /* entfernt das Padding komplett */
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  overflow: hidden; /* damit Bild an die Ecken stößt */
}

/* Bild füllt die gesamte Breite + Ecken berühren */
#qrcode .feature img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0; /* Bild ragt bis zur Kartenecke */
}

/* Optional: Text unten leicht absetzen */
#qrcode .feature h3,
#qrcode .feature p {
  padding: 0.3rem; /* oder margin-bottom nur beim <p> */
  text-align: center;
}


/* Hover-Effekt */
#qrcode .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* Reviews */

.review-avatar {
  width: 150px;       /* increased from 72px */
  height: 150px;      /* increased from 72px */
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  border: 2px solid #F7F7F7;
}


.review-slider-wrapper {
  overflow: hidden;
  max-width: 900px;
  margin: 3rem auto;
  position: relative;
  padding: 0 1rem; /* small padding so cards don’t touch edges */
}
.review-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 1rem; /* Abstand zwischen den Reviews */
  padding: 1rem 0; /* optional: Abstand oben und unten */
}

.review-slider .review {
  flex: 0 0 calc(100% - 1rem); /* 1rem weniger wegen gap */
  background: #F7F7F7;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-slider .review:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.12);
}

.review-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  color: #2C2E3C;
  max-width: 500px;
}

.review-rating {
  font-size: 1.3rem;
  color: #FFB400; /* gold stars */
  margin-bottom: 0.8rem;
  letter-spacing: 2px; /* better spacing between stars */
}

.review-author {
  font-weight: 700;
  font-size: 1rem;
  color: #2C2E3C;
  margin-top: 0.5rem;
}


/* Video */
.video-section { padding:4rem 2rem; text-align:center; background:#fff; }
.video-wrapper video { width:100%; max-width:600px; border-radius:12px; box-shadow:0 5px 15px rgba(0,0,0,0.1); }
/* Container: Hintergrund + Padding, Überschrift & Intro mittig */

/* How-To / Anwendung: ganze Reihe hellgrau */
#howto {
  background-color: #f7f7f7;  /* gesamte Reihe */
  padding: 2rem 3rem;
  border-radius: 12px;        /* abgerundete Ecken */
  box-shadow: 0 4px 8px rgba(0,0,0,0.05); /* leichter Schatten */
  margin: 2rem auto;
  max-width: 1000px;
  text-align: center;          /* Überschrift & Intro mittig */
  font-family: sans-serif;
}
.howto, .pricing, .faq { 
  padding: 4rem 2rem; 
  background: #F7F7F7; 
  margin-bottom: 1rem; 
  text-align: center; /* Überschrift & Intro mittig */
  font-family: sans-serif;
}

/* Steps-Liste: linksbündig, keine automatische Nummerierung */
.howto-steps {
  list-style: none;       /* keine automatische Nummerierung */
  margin: 2rem auto 0;    /* zentriert den Container, Abstand oben */
  max-width: 600px;
  padding-left: 0;
  text-align: left;       /* nur die Steps linksbündig */
}

/* Einzelne Step-Listelemente */
.howto-steps li {
  margin-bottom: 2rem;
  display: flex;           /* Nummer + Text nebeneinander */
  align-items: flex-start;
}

/* Nummern-Styling: Kreis */
.howto-steps .step-number {
  width: 2rem;
  height: 2rem;
  background-color: #6c6c6c; /* schöne Farbe für den Kreis */
  color: white;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Text im li: Zeilenumbruch ordentlich */
.howto-steps li strong {
  display: block;  /* Überschrift des Steps auf eigene Zeile */
  margin-bottom: 0.3rem;
}
/* Pricing Grid */
.pricing-grid { 
  display: flex; 
  justify-content: center; 
  gap: 2rem; 
  flex-wrap: wrap; 
  margin-top: 2rem; 
  padding: 0 1rem;
}

.plan { 
  background: #fff; 
  padding: 2.5rem 2rem; 
  border-radius: 20px; 
  box-shadow: 0 8px 30px rgba(0,0,0,0.07); 
  width: 400px; 
  max-width: 90%; 
  transition: all 0.3s ease; 
  text-align: center;
}

.plan:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.15); 
}

/* Headings & Price */
.plan h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.plan .price {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.plan .price span {
  font-weight: bold;
  color: #ff6b6b; /* Highlight-Color für Preis */
}

/* Features List */
.plan ul.features { 
  list-style: none; 
  padding: 0; 
  margin: 0;
  text-align: left;
}

.plan ul.features li {
  margin-bottom: 1rem; 
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #333;
}

.feature-icon {
  font-size: 1.4rem;
}

/* Store Buttons */
.plan .store-buttons { 
  display: flex; 
  gap: 1rem; 
  margin-top: 2rem;
  justify-content: center; 
  flex-wrap: wrap; 
}

.plan .store-buttons a img { 
  width: auto; 
  height: 45px; 
  object-fit: contain; 
  display: block; 
  transition: transform 0.2s ease;
}

.plan .store-buttons a img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px){
  .plan { 
    width: 100%; 
    padding: 2rem 1.5rem;
  }
  .plan .store-buttons { 
    justify-content: center; 
  }
}

.price-container {
  display: flex;
  flex-direction: column; /* untereinander */
  align-items: center;
  margin-bottom: 2rem;
  gap: 0.3rem;
}

.price-free {
  font-size: 1.2rem;
  color: #555;
}

.price-free strong {
  color: #28a745; /* grüner Akzent für "kostenfrei" */
}

.price-pro {
  font-size: 1rem;
  color: #ff6b6b; /* Highlight für Pro-Version */
}

.price-pro strong {
  font-weight: bold;
}


/* FAQ Background Weiß */
.faq { 
  background: #fff;  
  padding: 4rem 2rem;
  text-align: center; /* Überschrift bleibt zentriert */
  margin-bottom: 1rem;
  font-family: sans-serif;
}

/* FAQ Liste */
.faq-list {
  list-style: none; 
  max-width: 700px; 
  margin: 2rem auto 0;
  padding: 0;
  text-align: left;
}

/* Einzelne FAQ Items */
.faq-list li {
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background-color: #f7f7f7; /* leichter Hintergrund für jede Frage */
  transition: transform 0.2s ease;
}

/* Hover Effekt für leichten „Pop“ */
.faq-list li:hover {
  transform: translateY(-3px);
}

/* Frage Styling */
.faq-question {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  color: #333;
}

/* Antwort Styling */
.faq-answer {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Footer */
.footer { background:#2C2E3C; color:#fff; text-align:center; padding:2rem; }
.footer a { color:#ff4081; }

.social-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  color: #ff4081;
  text-decoration: none;
  font-size: 0.75rem; /* small label */
}

.social-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* Responsive */
@media(max-width:768px){
  nav { flex-direction:column; gap:1rem; }
  .nav-links { flex-direction:column; gap:1rem; }
  .hero { flex-direction:column; text-align:center; align-items:center; }
  .hero-image-wrapper { justify-content:center; align-items:center; }
  .hero-content h1 { font-size:2rem; margin-bottom:0.5rem; }
  .feature-grid { grid-template-columns:1fr; }
  .plan { width:100%; }
  .store-buttons { justify-content:center; }
}
