@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Whisper&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Whisper&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body,
html {
  height: auto;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #e2a13e 0%, #ad5e04 50%, #ffc583 100%);
  overflow-x: hidden;
}

.shown {
  display: block;
}

.hidden {
  display: none;
}

.nav {
  position: fixed;
  top: 7%;
  left: 4%;
  width: 50px;
  height: 50px;
  background-color: #b13d16;
  color: white;
  padding: 10px;
  z-index: 10;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navToggle {
  background: none;
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.navMenu {
  position: absolute;
  flex-direction: column;
  background-color: #b13d16;
  top: 100%;
  left: 0;
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  color: antiquewhite;
  padding: 20px;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  opacity: 1;
  transform: translateY(-10px);
  transition: opacity 1s ease, transform 0.3s ease;
}
.navMenu a {
  display: block;
  padding: 16px 32px;
  color: antiquewhite;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: background 0.2s;
  border-radius: 6px;
}
.navMenu a:hover {
  background: #c26c09;
  color: antiquewhite;
}

.headerMobil {
  display: none;
}

.headerMobilText {
  display: none;
}

.navMenu .show {
  opacity: 1;
  max-height: 500px;
  pointer-events: auto;
  padding: 20px 0;
}

.header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .headerSwiper {
  width: 100%;
  height: 800px;
  z-index: 1;
}
.header .swiper-slide img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}
.header .headerText {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: antiquewhite;
  pointer-events: none;
  font-family: "Imperial Script", cursive;
  width: 100%;
  height: 78%;
  max-height: 100%;
  justify-content: center;
  box-sizing: border-box;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
}
.header .headerText h1 {
  font-size: 10rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  word-break: break-word;
  text-align: center;
}
.header .headerText h2 {
  font-size: 7rem;
  margin: 0;
  word-break: break-word;
  text-align: center;
}
.header .headerText p {
  font-size: 5rem;
  margin: 10px 0;
  word-break: break-word;
  text-align: center;
}

a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: black;
}

.rsvp {
  width: 30%;
  margin-top: 5px;
  box-shadow: -1px 14px 43px -7px rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  padding: 4px;
  background-color: #974124;
  font-size: 75px;
  display: flex;
  justify-content: center;
  animation: bounce 6s infinite;
  animation-delay: 5s;
}
.rsvp:hover {
  animation-play-state: paused;
  cursor: pointer;
  background-color: #d1704f;
}
.rsvp:hover a {
  color: aliceblue;
}
.rsvp a {
  display: block;
  width: 100%;
  text-align: center;
  color: aliceblue;
  text-decoration: none;
  font-family: "Whisper", serif;
}

.crate {
  display: block;
  font-family: "Montserrat", sans-serif;
}

.sectionDivider {
  width: 0;
  height: 12px;
  margin: 40px auto 24px auto;
  background: #000;
  border-radius: 8px;
  transition: width 1s cubic-bezier(0.4, 2, 0.6, 1);
}

.sectionDivider.expanded {
  width: 40%;
}

.cardWrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.cardContent {
  width: 40%;
  align-items: center;
  text-align: center;
}

#friday h2 {
  text-decoration: underline;
}

#saturday h2 {
  text-decoration: underline;
}

#sunday h2 {
  text-decoration: underline;
}

.stayContent {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 600px;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  margin: 2rem 0;
}

.stayIntro {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 100%;
  max-height: 800px;
}
.stayIntro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.stayIntro h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.stayOptions {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin: 2rem 0;
}

.option {
  position: relative;
  flex: 1 1 0;
  max-width: 350px;
  height: 300px;
  display: block;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.option .overlayText {
  position: absolute;
  color: antiquewhite;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 80%, transparent 100%);
  pointer-events: none;
  text-align: center;
}
.option .overlayText h1 {
  margin: 0 0 0.3rem 0;
}

.mapContent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 2rem auto;
}

.map iframe {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.mapText {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  height: 100%;
}
.mapText h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.mapText h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.exploreContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 2rem auto;
}

.ashokanMap {
  max-width: 45%;
  max-height: 100%;
}
.ashokanMap img {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.exploreText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 45%;
}
.exploreText a {
  color: antiquewhite;
  text-decoration: none;
  font-weight: bolder;
}
.exploreText p {
  font-size: 1.4rem;
}

.giftsContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 2rem 0;
}
.giftsContent p {
  font-size: 1.4rem;
}
.giftsContent a {
  color: #000;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}
.giftsContent a:hover {
  color: antiquewhite;
  cursor: pointer;
}

.donation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.donation img {
  max-width: 400px;
  max-height: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  margin-right: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.donation img:hover {
  transform: scale(1.18);
  transition: transform 0.5s ease;
  cursor: pointer;
}

.FAQblock {
  padding: 10px;
}
.FAQblock h3 {
  margin-bottom: 4px;
}
.FAQblock p {
  margin-top: 0;
}

@media only screen and (max-width: 650px) {
  body,
  html {
    height: auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  .nav {
    width: 30px;
    height: 30px;
  }
  .nav .navToggle {
    width: 100%;
    height: 100%;
  }
  .nav .navMenu {
    font-size: 1.1rem;
    padding: 8px 10px;
    min-width: 140px;
    max-width: 80vw;
    border-radius: 6px;
  }
  .nav .navMenu a {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .headerSwiper {
    display: none !important;
  }
  .headerText {
    display: none !important;
  }
  .headerMobil {
    display: block;
    width: 100%;
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  .headerMobil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .headerMobil .headerMobilText {
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 10px;
    text-align: center;
    color: antiquewhite;
    font-family: "Imperial Script", cursive;
    letter-spacing: 0.04em;
  }
  .headerMobil .headerMobilText h1 {
    font-size: 4.1rem;
    line-height: 1.1;
  }
  .headerMobil .headerMobilText h2 {
    font-size: 3rem;
    line-height: 0.9;
  }
  .headerMobil .headerMobilText p {
    font-size: 2rem;
    line-height: 0.8;
  }
  .rsvp {
    border-radius: 50%;
    width: 50%;
  }
  .donation {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cardWrapper {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
  .cardContent {
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0;
  }
  .stayContent {
    height: auto !important;
    margin: 0 auto;
    padding: 0.5rem 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .stayIntro {
    padding: 1.2rem 0.5rem;
    margin-bottom: 1.2rem;
    max-width: 100%;
  }
  .stayOptions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .option {
    width: 100%;
    min-height: 400px;
    height: auto;
    margin-bottom: 1rem;
  }
  .exploreContent {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .exploreContent .exploreText {
    max-width: 100%;
    padding: 0.5rem;
  }
  .ashokanMap {
    width: 100%;
    height: auto;
  }
  .ashokanMap img {
    width: 100%;
    min-width: 300px;
    height: auto;
    max-height: 400px;
    display: block;
  }
  .mapContent {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .mapContent .mapText {
    order: 1;
  }
  .mapContent .map {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
  }
  .mapContent .map iframe {
    width: 100%;
    display: block;
  }
  .ashokanMap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .ashokanMap img {
    width: 100%;
    height: 400px;
    display: block;
  }
  .sectionDivider {
    width: 80% !important;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  2%, 12%, 22% {
    transform: translateY(10px);
  }
  7%, 17%, 27% {
    transform: translateY(0px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=styles.css.map */
