@charset "UTF-8";
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Avenir_Next_Bold.woff2") format("woff2"), url("fonts/Avenir_Next_Bold.woff") format("woff");
}
@font-face {
  font-family: "Avenir Next";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Avenir_Next_Demi.woff2") format("woff2"), url("fonts/Avenir_Next_Demi.woff") format("woff");
}
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Avenir_Next_Regular.woff2") format("woff2"), url("fonts/Avenir_Next_Regular.woff") format("woff");
}
@font-face {
  font-family: "Zaslia";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Zaslia.woff2") format("woff2"), url("fonts/Zaslia.woff") format("woff");
}
@font-face {
  font-family: "Zilla Slab";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Zilla_Slab.woff2") format("woff2"), url("fonts/Zilla_Slab.woff") format("woff");
}
@font-face {
  font-family: "Billstone";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("fonts/billstone.woff2") format("woff2"), url("fonts/billstone.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir Next", system-ui, -apple-system, sans-serif;
  font-weight: normal;
  line-height: 1.4;
  font-size: 1.14rem;
  overflow-x: clip;
}

.no-scroll {
  overflow: hidden;
}

.access-denied-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: center;
  width: calc(100% - 2rem);
  max-width: 500px;
}
.access-denied-message p {
  width: 100%;
  max-width: 300px;
  margin: 0.6rem auto 1.2rem auto;
}
.access-denied-message h2 {
  line-height: 1;
  margin-bottom: 1.1rem;
}
.access-denied-message input {
  margin-bottom: 1.2rem;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  text-align: center;
}
.access-denied-message button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  background-color: #446F4E;
  color: white;
  cursor: pointer;
}
.access-denied-message button:hover {
  background-color: #34603b;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(5px);
}

b {
  font-weight: 600;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: underline;
  color: inherit;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}
a:hover {
  text-underline-offset: 6px;
}
a[href^=http]::after {
  content: "↗";
  font-size: 0.8rem;
  margin-left: 4px;
  text-decoration: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 3rem;
}

.my-8 {
  margin: 2rem 0;
}

.mt-12 {
  margin-top: 4rem;
}

.p-0 {
  padding: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-12 {
  padding-top: 4rem !important;
  padding-bottom: 6rem !important;
}

.pt-12 {
  padding-top: 2rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

h1 {
  font-family: "Zilla Slab", serif;
  font-size: 3.5rem;
  font-weight: normal;
  line-height: 1.1;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
    hyphens: auto;
    margin-bottom: 1rem !important;
  }
}

h2 {
  font-family: "Zilla Slab", serif;
  font-size: 2rem;
  font-weight: normal;
}

.balanced {
  text-wrap-style: balance;
}

.text-center {
  text-align: center;
}

.h-70vh {
  height: 70vh !important;
}

.d-flex {
  display: flex !important;
}

.justify-center {
  justify-content: center !important;
}

.align-center {
  align-items: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.h-auto {
  height: auto !important;
  min-height: unset !important;
}

.w-100 {
  width: 100%;
}

.max-w-500 {
  max-width: 500px;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-700 {
  max-width: 700px;
}

.hero {
  overflow: hidden;
  width: calc(100vw - 60px);
  height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  background-color: #446F4E;
  border-radius: 15px;
  margin: 30px;
  background-image: url(../../images/hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  z-index: 0;
}
@media (max-width: 868px) {
  .hero {
    margin: 15px;
    width: calc(100vw - 30px);
  }
  .hero::after, .hero::before {
    height: 200px;
  }
  .hero::before {
    height: 300px;
  }
}
.hero h1 {
  font-family: "Zaslia", sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  position: absolute;
  left: 40px;
  top: 40px;
  font-weight: bolder;
  z-index: 1;
}
@media (max-width: 868px) {
  .hero h1 {
    font-size: 2.5rem;
    left: 20px;
    top: 20px;
  }
}
.hero .wedding-countdown {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
@media (max-width: 868px) {
  .hero .wedding-countdown {
    transform: translateX(-50%) scale(0.6);
    bottom: 20px;
  }
}
.hero .wfh {
  width: 100%;
  text-align: center;
  font-family: "Billstone", sans-serif;
  font-size: 60px;
  line-height: 1.3;
  white-space: nowrap;
  margin-bottom: 10px;
  text-shadow: 1px 1px 10px rgb(0, 0, 0);
}
.hero .wfh br {
  display: none;
}
@media (max-width: 600px) {
  .hero .wfh {
    margin-bottom: 5px;
  }
  .hero .wfh br {
    display: initial;
  }
}
.hero .countdown {
  font-size: 2rem;
  font-weight: normal;
  font-family: "Aventir Next", sans-serif;
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .hero .countdown {
    gap: 10px;
    scale: 1.1;
    margin-bottom: -20px;
    margin-top: 15px;
  }
}
.hero .countdown .countdown--item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .countdown .countdown--item .countdown--number {
  font-size: 3.5rem;
  line-height: 1.1;
  width: 100px;
  text-align: center;
  display: block;
}
.hero .countdown .countdown--item .countdown--label {
  display: block;
  font-size: 1rem;
  width: 100px;
  text-align: center;
}
.hero .bubble {
  text-decoration: none !important;
  position: absolute;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50px;
  right: 50px;
  bottom: auto;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  color: #446F4E;
  font-family: "Zilla Slab", serif;
  font-size: 1.3rem;
  line-height: 1.1;
  text-align: center;
  rotate: 10deg;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s ease-in-out, bottom 0.5s ease-in-out, right 0.5s ease-in-out, top 0.5s ease-in-out;
}
.hero .bubble span {
  display: block;
  position: relative;
  top: -3px;
  line-height: 1;
}
@media (max-width: 868px) {
  .hero .bubble {
    opacity: 1;
    right: 20px;
    top: auto;
    bottom: 30%;
  }
}
@media (max-width: 868px) and (max-height: 700px) {
  .hero .bubble {
    bottom: 40%;
  }
}

hr {
  position: relative;
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #FFFFFF 0%, #446f4e 50%, #FFFFFF 100%);
  margin: 35px 30px;
  z-index: 0;
  overflow: visible;
}
hr::after {
  content: "";
  display: block;
  width: 170px;
  height: 38px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  background-image: url("../../images/hr.svg");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 600px) {
  hr {
    height: 2px;
  }
  hr::after {
    width: 100px;
    height: 23px;
    top: -8px;
    background-size: contain;
  }
}

.green-background {
  background-color: #446F4E;
  min-height: 200px;
  padding: 4rem;
  color: white;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 70vh;
}
.three-columns .column {
  text-align: center;
  padding: 4rem 0;
  font-family: "Avenir Next", sans-serif;
  font-weight: normal;
  font-size: 1.18rem;
  line-height: 1.3;
}
.three-columns .column.middle-column {
  background-color: #ECF1ED;
  position: relative;
}
.three-columns .column.middle-column::after {
  display: block;
  content: "";
  width: 38px;
  height: 650px;
  background-image: url("../../images/full-hr.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.three-columns .column.middle-column::before {
  display: block;
  content: "";
  width: 38px;
  height: 650px;
  background-image: url("../../images/full-hr.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1300px) {
  .three-columns {
    min-height: auto !important;
  }
  .three-columns .ablauf {
    height: 80vh !important;
  }
}
@media (max-width: 868px) {
  .three-columns {
    grid-template-columns: 1fr;
  }
  .three-columns .column {
    padding: 2.5rem 1.5rem 4rem !important;
  }
  .three-columns .column:first-child {
    padding-top: 0.4rem !important;
  }
  .three-columns .middle-column::after, .three-columns .middle-column::before {
    background-image: url("../../images/full-hr-rotated.svg") !important;
    width: 390px !important;
    height: 38px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    bottom: -18px !important;
    transform: translateX(-50%) !important;
  }
  .three-columns .middle-column::before {
    top: -18px !important;
    bottom: auto !important;
  }
}

section {
  position: relative;
  min-height: 100vh;
}
section.bg-gray {
  background-color: #F7F7F7;
}
section.split-section {
  height: 100vh;
  display: flex;
  overflow: clip;
}
@media (min-height: 1080px) {
  section.split-section {
    height: 80vh !important;
  }
}
@media (max-width: 1300px) {
  section.split-section {
    height: auto;
  }
}
@media (max-width: 868px) {
  section.split-section {
    flex-direction: column;
  }
}
section .right-image-section {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 100%;
  transition: right 0.5s ease-in-out;
}
@media (max-width: 1300px) {
  section .right-image-section {
    right: -200px;
  }
}
@media (max-width: 868px) {
  section .right-image-section {
    right: 0px;
    position: relative;
    width: 100%;
    height: auto;
  }
}
section .split-left-column {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 4rem;
  z-index: 9;
}
@media (min-width: 2000px) {
  section .split-left-column {
    align-items: flex-end;
    width: 55% !important;
  }
}
@media (max-width: 868px) {
  section .split-left-column {
    width: 100%;
    padding: 1.4rem 2.5rem !important;
  }
}
@media (max-width: 868px) {
  section {
    padding: 2.5rem 1.5rem !important;
  }
}

@media (max-width: 1000px) {
  .illustration-container {
    padding: 0 1.3rem !important;
    overflow: auto;
    height: 70vh !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }
  .illustration-container img {
    height: 100% !important;
    width: unset !important;
    max-width: unset !important;
    pointer-events: none;
    user-select: none;
  }
}
@media (max-width: 600px) {
  .illustration-container {
    height: 83vh !important;
  }
}

.wrapper {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}
.wrapper.small {
  max-width: 800px;
}

.text-columns {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 5rem;
}
.text-columns li {
  margin-bottom: 1.5rem;
  display: inline-block;
  text-wrap-style: balance;
  line-height: 1.3;
}
.text-columns li::first-letter {
  position: relative;
  margin-top: -5px;
  font-weight: bold;
  font-family: "Zilla Slab", serif;
  font-size: 150%;
  line-height: 1;
  margin-right: 2px;
  float: left;
}
@media (max-width: 868px) {
  .text-columns {
    columns: 1;
  }
  .text-columns li {
    hyphens: auto;
  }
}

[data-transition][data-transition*=fadein] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-transition][data-transition*=fadein].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-transition][data-transition*=up] {
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-transition][data-transition*=up].in-view {
  transform: translateY(0);
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row .col-md-6 {
  width: 50%;
}
@media (max-width: 868px) {
  .row .col-md-6 {
    width: 100% !important;
  }
}

.nowrap {
  white-space: nowrap;
}

form .person-group {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
}
form .person-group h3 {
  font-weight: normal;
  margin-bottom: 1rem;
}
form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
form .form-group > label {
  font-weight: 600;
  margin-bottom: 4px;
}
form .form-group .radio-group {
  display: flex;
  gap: 1rem;
}
form .form-group .radio-group.vertical {
  gap: 0.1rem;
  gap: 5px;
  flex-direction: column;
}
form .form-group input {
  background-color: transparent !important;
  border: 0;
  border-bottom: 2px solid white;
  outline: none;
  color: white;
}
form .form-group input[type=radio] {
  place-content: center;
  appearance: none;
  width: auto;
  border: 2px solid white;
  border-radius: 50%;
  height: 20px;
  position: relative;
  top: 3px;
  aspect-ratio: 1/1;
}
form .form-group input[type=radio]:checked {
  background-color: white !important;
  padding: 4px;
}
form .form-group select, form .form-group textarea {
  border: 2px solid white;
  background-color: transparent !important;
  color: white;
  outline: none;
  border-radius: 4px;
  padding: 8px;
}
form .form-group button {
  background-color: white;
  color: #446F4E;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
form .form-group button:hover {
  background-color: #34603b;
  color: white;
}

.image-slide-track {
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  padding: 80px 0 130px 0;
  scroll-behavior: smooth;
}
.image-slide-track .image-slider {
  min-width: 2000px;
  display: flex;
  transition: transform linear;
  width: max-content;
  overflow: visible;
}
.image-slide-track .image-slider .image-slide {
  position: relative;
  top: 50%;
  height: 300px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  transform: rotate(0deg);
  border-radius: 2px;
  border: 10px solid white;
  border-bottom: 40px solid white;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
  transition: scale 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  will-change: transform, scale, box-shadow;
  scale: 1;
}
.image-slide-track .image-slider .image-slide:hover, .image-slide-track .image-slider .image-slide.active {
  scale: 1.5;
  z-index: 10;
  transition: scale 0.3s ease, transform 0.3s ease;
  transform: rotate(0deg) !important;
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.6);
}
@media (max-width: 600px) {
  .image-slide-track .image-slider .image-slide:hover, .image-slide-track .image-slider .image-slide.active {
    scale: 1.2;
    max-width: 80vw !important;
  }
}
.image-slide-track .image-slider .image-slide:nth-child(odd) {
  transform: rotate(5deg);
}
.image-slide-track .image-slider .image-slide:nth-child(even) {
  transform: rotate(-5deg);
}
.image-slide-track .image-slider .image-slide:nth-child(4n+1) {
  transform: rotate(3deg);
}
.image-slide-track .image-slider .image-slide:nth-child(4n+3) {
  transform: rotate(7deg);
}
.image-slide-track .image-slider.paused {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marked {
  color: #d7232c;
}/*# sourceMappingURL=layout.css.map */