
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --col-cream: #fdfaf6;
  --col-vista-white: #e8e5e2;
  --col-vista-white: #E5E7E6;
  --col-vista-white-100: #f1efed;
  --col-vista-white-100: #eeeeeed8;
  --col-alb-white: #f9e8d3;
  --col-dawn-pink: #f2e9de;
  --col-light-gray: #f7f7f7;
  --col-medium-gray: #616361;
  --col-dark-gray: #414141;
  --col-grape: #0075F2;
  --col-emerald: #88BB92;
  --col-paprika: #890025;
  --col-gold-500: #d28603;
  --col-gold-600: #b96506;
  --col-forest-green: #eae3da;
  --col-forest-green: #D6D5C990;
}

body {
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  background-color: #c3bfb0;
  background: url("../bgpic.jpg") no-repeat, #c3bfb0;
  background-size: 250%;
  background-position: center 60px;
}

@media (min-width: 430px) {
  body {
    background-size: 180%;
    background-position: center 0px;
  }
}

@media (min-width: 640px) {
  body {
    background-size: 175%;
    background-position: center 20px;
  }
}

@media (min-width: 1024px) {
  body {
    background-size: 150%;
    background-position: center -80px;
  }
}
@media (min-width: 1400px) {
  body {
    background-size: 100%;
    background-position: center -80px;
  }
}


h1 {
  color: var(--col-paprika);
}

.cta {
  background-color: var(--col-gold-500);
  font-family: "Playfair Display";
  font-weight: 800;
}

.cta:hover {
  background-color: var(--col-gold-600);
}

.cnt-highlight {
  /*background-color: var(--col-forest-green);*/
}

/* SVG-Icons für Features */
.icon-svg {
    width: 4rem; /* 64px */
    height: 4rem; /* 64px */
    color: var(--col-paprika); /* forest-900 */
}

#step-1, #step-2, #step-3, #step-4, #step-5 {
  background-color: var(--col-vista-white-100);
  backdrop-filter: blur(10px);
}

#step-5 p {
  font-family: "Inter";
}

.step-header {
  font-family: "Inria Serif";
}

.progressbar-h2 {
  box-shadow: 2px 2px 1px 0px #d6d6d6;
}

.progressbar-div {
  box-shadow: 2px 2px 1px 0px #d6d6d6;
}

/* Progressbar Container */
.progressbar-container {
  width: 100%;
  padding: 15px 0; /* Vertikaler Abstand oben/unten */
  display: flex; /* Für Zentrierung der Progressbar */
  justify-content: center; /* Zentriert die Progressbar horizontal */
  align-items: center; /* Zentriert vertikal falls nötig */
  background-color: transparent; /* Oder passend zum Header-Hintergrund */
}

/* Progressbar Liste */
.progressbar {
  display: flex; /* Schritte nebeneinander anordnen */
  list-style: none; /* Keine Standard-Listenpunkte */
  padding: 0;
  margin: 0;
  position: relative; /* Wichtig für die Verbindungslinien */
}

/* Verbindungslinien zwischen den Schritten */
.progressbar-step:not(:first-child):before {
  content: '';
  position: absolute;
  top: 50%;
  /* Die Linie beginnt links vom Kreis und geht bis zur Mitte des vorherigen Kreises */
  left: -30px; /* Dieser Wert muss an width + 2x margin angepasst werden. (14px + 2*15px = 44px) */
             /* Hier setzen wir sie 30px nach links, damit sie zwischen den Elementen liegt */
  width: 28px; /* Breite der Linie zwischen den Kreisen (z.B. 2x Margin des Kreises) */
  height: 2px;
  background-color: #e0e0e0; /* Farbe der Linie */
  z-index: -1; /* Hinter dem Kreis */
  transform: translateY(-50%);
}

.progressbar-step.active::before {
    background-color: #8b0000;
}

.progressbar-step.completed::before {
    background-color: #8b0000;
}

/* Styling für einzelne Schritte */
.progressbar-step {
  width: 18px; /* Größe der Kreise */
  height: 18px;
  border-radius: 50%; /* Macht die Elemente zu Kreisen */
  background-color: #FFFFFF; /* Standardfarbe für zukünftige Schritte (hellgrau) */
  border: 2px solid #FFFFFF; /* Dickere Umrandung für Hervorhebung */
  outline: 2px solid #e0e0e0;
  margin: 0 15px; /* Abstand zwischen den Kreisen */
  position: relative; /* Für Z-Index und eventuelle Overlays */
  z-index: 1; /* Über der Verbindungslinie */
  transition: background-color 0.3s ease, border-color 0.3s ease; /* Sanfte Übergänge */
}

/* Styling für abgeschlossene Schritte */
.progressbar-step.completed {
  background-color: #FFFFFF; /* Markenfarbe / Akzentfarbe für erledigte Schritte */
  border: 2px solid #FFFFFF;
  outline: 2px solid #8b0000;
}

/* Styling für den aktiven (aktuellen) Schritt */
.progressbar-step.active {
  background-color: #8b0000; /* Markenfarbe / Akzentfarbe für den aktiven Schritt */
  border: 2px solid #FFFFFF; /* Dickere Umrandung für Hervorhebung */
  outline: 2px solid #8b0000;
  /* Oder eine stärkere visuelle Betonung, z.B. leichter Schatten oder etwas größer */
  /* box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.3); */
}

/* Optionale, dezente Hervorhebung des aktiven Schritts durch Vergrößerung */
/*
.progressbar-step.active {
    width: 18px;
    height: 18px;
    margin: 0 13px; // Anpassung des Margins wegen der Größenänderung
}
*/

.element-header {
  font-family: "Inria Serif";
  color: var(--col-medium-gray);
}

.checkbox, input[type=radio] {
  accent-color: var(--col-grape);
}

.nav-buttons {
  background-color: var(--col-vista-white-100);
  backdrop-filter: blur(10px);
}

.nav-buttons #btnStepNext {
  /*background-color: var(--col-emerald);*/
}

.nav-buttons #btnReset:hover {
  /*background-color: #6c3f3f;*/
}

.nav-buttons #btnStepPrev:hover {
  /*background-color: var(--col-medium-gray);*/
}

select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
  background-position: 100%;
  background-repeat: no-repeat;
}

.page-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: white;
  background: url("../schriftzug.jpg");
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}

.headline {
  font-family: "Playfair Display";
  font-weight: 800;
  text-shadow: 0px 4px 3px rgba(228, 228, 228, 0.4),
              0px 8px 13px rgba(228, 228, 228,0.1),
              0px 18px 23px rgba(228, 228, 228,0.1);
}

.subheadline {
  font-family: "Playfair Display";
}

.textcontent {
  backdrop-filter: blur(5px);
}
.menu {
  font-family: "Inter", sans-serif;
}

.menu a {
  color: var(--col-paprika);
  text-decoration: underline;
  text-decoration-color: var(--col-paprika);
}

.menu a:hover {
  color: black;
}

.card-preview {
    container-type: inline-size;
    font-family: 'Great Vibes';
    padding: 0;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 600/417;
}

.card-preview span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-preview span#guest-preview {
    font-size: 10cqw;
    top: 40%;
}

.card-preview span#table-preview {
    font-size: 8cqw;
    top: 60%;
}

#guestListTable {
  width: 100%;
}

#guestListTable thead {
  font-family: "Inria Serif";
}

#guestListTable tbody:before {
    content:"@";
    display:block;
    line-height:10px;
    visibility: hidden;
}

#guestListTable td {
    padding: 5px;
}

#guestListTable input {
    max-width: 100%;
    width: 100%;
}

.pinterest-cta {
  background-image: url("../pinterest-icon.svg");
  width: 30px;
  aspect-ratio: 1;
  display: inline-block;
}

.instagram-cta {
  background-image: url("../instagram-icon.svg");
  background-size: contain;
  width: 30px;
  aspect-ratio: 1;
  display: inline-block;
}

.trustpilot-cta {
  background-image: url("../trustpilot-icon.svg");
  background-size: contain;
  height: 30px;
  aspect-ratio: 4.06;
  display: inline-block;
  display: none;
}