:root {
  --ivorywhite: #fbfaf6;
  --midnightblue: #1f2a44;
  --sagegreen: #9caf9a;
  --lightsagegreen: #eff6ee;
  --champagnegold: #e3bd5f;
  --darker: #f6f3ee;
}


.body {
  background-color: var(--ivorywhite);
  color: var(--midnightblue);
  font-family: freight-display-pro, sans-serif;
  font-size: 24px;
  font-weight: 100;
  line-height: 36px;
}

.body.rsvp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.tag-invite {
  margin-left: 10px;
  background-color: var(--champagnegold);
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  font-size: 10px;
}

.extrainforow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.matrix-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    font-size: 14px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.matrix-table th {
  font-weight: bold;
  background-color: var(--lightsagegreen);
  padding: 8px;
  border: 1px solid var(--lightsagegreen);
}

.matrix-table td {
  padding: 8px;
  vertical-align: middle;
  min-height: 20px;
  font-weight: normal;
  border: 1px solid var(--lightsagegreen);
  font-size: 12px;
}

.matrix-table tr:last-child td:first-child {
  border-bottom-left-radius: 0px;
}

.matrix-table tr:last-child td:last-child {
  border-bottom-right-radius: 0px;
}

.matrix-table th:first-child {
  border-top-left-radius: 5px;
}

.matrix-table th:last-child {
  border-top-right-radius: 5px;
}

.loading-ui {
  display: none;
  width: 100px;
}


.error-melding {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 8px;

  background: #ffe6e6;
  border: 1px solid #ffb3b3;
  color: #b30000;

  font-family: system-ui, sans-serif;
  font-size: 15px;

  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  animation: fadeIn 0.25s ease-out;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pasword-forget-holder {
  justify-content: flex-end;
  margin-top: -10px;
  display: flex;
}

.paswoord-forget {
  color: var(--midnightblue);
  text-decoration: none;
  font-size: 12px;
}

.colorpalet-im {
  max-width: 800px;
  width: 100%;
}

.phonenavlink {
  text-decoration: none;
  color: var(--midnightblue);
}

.name-rsvp {
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.inputfield {
  background-color: var(--darker);
  border-radius: 5px;
  max-width: 300px;
}

.loadingholder {
  z-index: 9999;
  position: fixed;
  height: 100vh;
  width: 100vw;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--ivorywhite);
  top: 0;
}

.status-tag {
  display: inline-block;
  padding: 0.15em 0.6em;
  margin: 0 0.25em;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid var(--sagegreen);
}

.status-tag.accepted {
  color: #1b5e20;
  background-color: #e6f4ea;
  border-color: #1b5e20;
}

.status-tag.pending {
  color: #8a6d1d;
  background-color: #fff4db;
  border-color: #8a6d1d;
}

.status-tag.declined {
  color: #b71c1c;
  background-color: #fdecea;
  border-color: #b71c1c;
}

.contentrsvp {
  padding: 40px;
}

.ui-message {
  top: 20px;
  right: 10px;
  position: fixed;
  background-color: #F4FFF4;
  z-index: 203;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  color: #175106;
  padding-right: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--beige);
  transition: opacity 0.3s ease,
}

.ui-message.error {
  background-color: #fbe9e1;
  color: #7a1202;
}

.ui-message.info {
  background-color: #fbf7ce;
  color: var(--brown);
}

.close-ui-message {
  background-color: transparent;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}


.smallicon {
  width: 20px;
  height: 20px;
}

.invite-block {
  padding: 10px;
  border-top: 1px solid var(--midnightblue);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rsvpcontainer {
  justify-content: flex-start;
  align-items: stretch;
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  border: 1px solid var(--sagegreen);
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.rsvpcontainer.centered {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
}

._100width {
  width: 100%;
}

.overviewrsvp {
  background-color: var(--lightsagegreen);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 300px;
  width: 300px;
  padding: 20px;
  display: flex;
}

.herosection {
  background-image: url('../images/hero-front.png'), linear-gradient(90deg, var(--ivorywhite), #fbfaf6 13%, #fbfaf600 49%, #fbfaf6 89%, var(--ivorywhite)), linear-gradient(180deg, var(--ivorywhite), #f6f3ee66 28%, #f6f3ee00 43%, #f6f3ee00), url('../images/hero-back.jpg');
  background-position: 50% 100%, 0 0, 0 0, 50% 100%;
  background-repeat: no-repeat, repeat, repeat, no-repeat;
  background-size: cover, auto, auto, cover;
  height: 100vh;
  min-height: 50vw;
  position: relative;
}

.nav {
  justify-content: center;
  height: 100px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.container {
  width: 90%;
}

.container.centered {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container.centered.solo {
  text-align: center;
  width: 70%;
}

.innernav {
  justify-content: space-around;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.lindsey {
  font-family: lindsey-signature, sans-serif;
}

.lindsey.bigger {
  font-size: 42px;
  line-height: 46px;
}

.lindsey.rsvp-top {
  font-size: 34px;
  line-height: 66px;
  margin-top: 20px;
}

.linknav {
  color: var(--midnightblue);
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-family: tt-ricordi-allegria, sans-serif;
  font-size: 46px;
  line-height: 50px;
  text-decoration: none;
  display: flex;
}

.linknav.w--current {
  color: var(--midnightblue);
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
}

.textlink {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 200;
  line-height: 80px;
}

.section {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 34px;
  display: flex;
}

.dateswithcontent {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.dateswithcontent.spacearound {
  justify-content: space-around;
  align-items: flex-start;
  max-width: 800px;
}

.dateswithcontent.getuigen {
  justify-content: space-around;
}

.contentdates {
  text-align: center;
  width: 35%;
}

.titledates {
  text-transform: uppercase;
  font-family: tt-ricordi-allegria, sans-serif;
  font-size: 32px;
  line-height: 38px;
}

.linatevyewithgreenbg {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.linatevye {
  z-index: 2;
  font-family: lindsey-signature, sans-serif;
  font-size: 66px;
  line-height: 88px;
  position: relative;
}

.greensplash {
  height: 100%;
}

.holdergeensplash {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.button {
  background-color: var(--darker);
  color: var(--midnightblue);
  box-shadow: 0 2px 5px 0 var(--sagegreen);
  text-align: center;
  text-transform: uppercase;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 10px;
  min-width: 140px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
}

.button.secondary {
  text-transform: none;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.button.secondary.reset {
  margin-bottom: 20px;
}

.button.accept {
  background-color: var(--sagegreen);
  color: var(--ivorywhite);
  text-transform: none;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
  line-height: 24px;
}

.button.decline {
  background-color: var(--lightersagegreen);
  color: var(--midnightblue);
  text-transform: none;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
  line-height: 24px;
}

.datesholder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.date {
  background-image: url('../images/date-im-3.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 200px;
  width: 18vw;
  height: 36vw;
  position: relative;
}

.date.month {
  background-image: url('../images/date-im-2.jpg');
}

.date.day {
  background-image: url('../images/date-im-1.jpg');
  background-position: 50%;
  background-size: cover;
}

.datenumber {
  color: var(--ivorywhite);
  text-shadow: 0 3px 6px #0003;
  font-family: tt-ricordi-allegria, sans-serif;
  font-size: 10vw;
  line-height: 10vw;
  position: absolute;
  inset: auto -1.6vw -1.6vw auto;
}

.datenumber.outer {
  color: var(--midnightblue);
}

.datenumberparent {
  z-index: 3;
  border-radius: 200px;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.datenumberparent.outer {
  z-index: 2;
  overflow: visible;
}

.intro-enveloppe {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.leaves {
  z-index: 10;
  padding: 10px;
  position: fixed;
  inset: auto auto 0% 0%;
  width: 180px;
}

.leaves-im {
  transform: rotate(40deg);
}

.detailtitle {
  margin-bottom: 10px;
  font-family: p22-allyson-pro, sans-serif;
  font-size: 50px;
  line-height: 60px;
}

.gold-circle {
  background-color: var(--champagnegold);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.divider-circle-holder {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.rightsidetext {
  text-align: center;
  width: 55%;
}

.paragraf {
  margin-bottom: 20px;
}

.paragraf.thicker {
  font-weight: 400;
}

.sectiontitle {
  margin-bottom: 60px;
  font-family: tt-ricordi-allegria, sans-serif;
  font-size: 40px;
  line-height: 44px;
}

.leftrightpart {
  flex-flow: column;
  align-items: flex-start;
  width: 45%;
  display: flex;
}

.imagerightside {
  object-fit: cover;
  border-radius: 10px;
  width: 300px;
  max-height: 400px;
  box-shadow: 0 2px 5px #0003;
}

.contactblock {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 45%;
  display: flex;
}

.contactblock.laura {
  justify-content: flex-end;
}

.contactcircle {
  border: 1px solid var(--champagnegold);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  box-shadow: 0 2px 5px #0003;
  filter: grayscale(100);
}

.contentcontactblock {
  text-align: left;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.contentcontactblock.right {
  text-align: right;
  align-items: flex-end;
}

.smalltext {
  color: var(--sagegreen);
  font-size: 20px;
  line-height: 26px;
}

.boldtext {
  font-weight: 700;
}

.spacer {
  height: 10px;
}

.contentwithline {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.scheduleblock {
  justify-content: space-between;
  display: flex;
  position: relative;
}

.scheduleblock .leftpartscheduleblock {
  opacity: 0.2;
}

.scheduleblock.highlighted .leftpartscheduleblock {
  opacity: 1;
}

.scheduleblock .rightpartscheduleblock {
  opacity: 0.2;
}

.scheduleblock.highlighted .rightpartscheduleblock {
  opacity: 1;
}

.leftpartscheduleblock {
  text-align: center;
  width: 35%;
  transition: 0.3s opacity linear;
}

.rightpartscheduleblock {
  text-align: center;
  width: 55%;
  transition: 0.3s opacity linear;
}

.progressline {
  background-color: var(--champagnegold);
  border-radius: 10px;
  width: 5px;
  height: 100%;
  position: absolute;
  left: 40%;
}

.progressdot {
  border: 3px solid var(--champagnegold);
  background-color: var(--ivorywhite);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  inset: 0% auto auto calc(40% - 15px);
}

.linksholder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link {
  color: var(--midnightblue);
  font-size: 20px;
  line-height: 28px;
}

.locationicon {
  width: 50px;
}

.locationwithicon {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
}

.menuicon {
  width: 30px;
  height: 30px;
  display: none;
  cursor: pointer;
}

.phonenav {
  z-index: 999;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--darker);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  display: none;
  opacity: 0;
  position: fixed;
  inset: 0%;
  transition: 1s opacity linear;
}

.phonenav.open {
  display: flex;
  opacity: 1;
}

.closebtn {
  background-color: var(--sagegreen);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  position: absolute;
  inset: 20px 20px auto auto;
}

@media screen and (max-width: 991px) {
  .container.centered.solo {
    width: 90%;
  }

  .inputfield {
    font-size: 16px;
  }

  .body {
    font-size: 20px;
    line-height: 28px;
  }

  .detailtitle {
    font-size: 44px;
    line-height: 52px;
  }

  .rightsidetext {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .rightsidersvp {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    border-left-style: none;
    border-radius: 10px;
    width: 100%;
    min-height: 0;
    margin-top: 40px;
    position: static;
    margin-bottom: 100px;
  }

  .date {
    width: 25vw;
    height: 40vw;
  }

  .leaves {
    width: 100px;
  }

  .rsvpcontainer {
    flex-direction: column;
  }

  .overviewrsvp {
    width: 100%;
}

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

  .innernav {
    justify-content: space-between;
  }

  .linknav {
    display: none;
  }

  .linknav.linatevye {
    font-size: 44px;
    display: flex;
  }

  .dateswithcontent {
    flex-flow: column;
  }

  .contentdates {
    width: 100%;
  }

  .leftrightpart {
    align-items: center;
    width: 100%;
  }

  .contactblock {
    width: 100%;
    max-width: 400px;
  }

  .contactblock.laura {
    justify-content: flex-end;
    flex-direction: row-reverse;
  }

  .contentcontactblock.right {
    text-align: left;
    align-items: flex-start;
  }

  .scheduleblock {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .leftpartscheduleblock, .rightpartscheduleblock {
    width: 80%;
  }

  .progressline {
    left: 95%;
  }

  .progressdot {
    inset: 0% auto auto calc(95% - 15px);
  }

  .menuicon {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .contactcircle {
    width: 100px;
    height: 100px;
  }

  .rightpartscheduleblock {
    width: 85%;
  }
}


