@import url("https://fonts.cdnfonts.com/css/brigitha-signature");
@font-face {
  font-family: "Monserrat";
  src: url("../static/fonts/Montserrat.ttf") format("truetype");
  font-weight: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
}

/* Global styles */
.nav {
  position: absolute;
  top: 2.5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 5vw;
  z-index: 10;
  width: 100%;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 5vw;
  justify-content: center;
}

.nav-item a {
  color: #F9F6ED;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
}

/* Hero section styles */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #F9F6ED;
}

.hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  background: linear-gradient(0deg, rgba(53.6, 30.09, 30.09, 0.5) 0%, rgba(53.6, 30.09, 30.09, 0.8) 100%);
}

.hero .hero-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #F9F6ED;
  font-size: 8vw;
  font-family: "Brigitha Signature", sans-serif;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
}

.hero .invitation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #F9F6ED;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: auto;
}

.hero .invitation-text {
  text-align: center;
  color: #48101D;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.hero .invitation-date {
  text-align: center;
  color: #48101D;
  font-size: 2rem;
  font-family: "Brigitha Signature", sans-serif;
  font-weight: 400;
  margin: 0;
}

.hero .invitation-divider {
  width: 100%;
  border: none;
  border-top: 0.06vw solid #693541;
  margin: 0;
}

/* Accommodation section styles */
.accommodation {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  height: 100vh;
  background: #F9F6ED;
  overflow: hidden;
}

.accommodation .accommodation-title {
  color: #48101D;
  font-size: 4vw;
  font-family: "Brigitha Signature";
  font-weight: 400;
  text-align: center;
  margin-top: 4rem;
}

.accommodation .location-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.accommodation .location-name {
  color: #48101D;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.accommodation .location-address {
  color: #48101D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.accommodation .image-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  place-items: center;
}

.accommodation .accomodation-items {
  height: 80%;
  width: auto;
  aspect-ratio: 16/9;
  border: 0;
}

.ceremony {
  display: grid;
  grid-template-columns: 1fr 10vw 1fr;
  place-items: center;
  min-height: 100vh;
  background: #48101D;
  color: #F9F6ED;
}

.ceremony .divider-container {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.ceremony .divider-container .divider {
  width: 0.05rem;
  height: 85%;
  background-color: #F9F6ED;
  margin: 0 auto;
}

.ceremony .ceremony-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ceremony .ceremony-title {
  width: 35vw;
  font-size: 3vw;
  font-family: "Brigitha Signature", cursive;
  font-weight: 400;
  margin: 0;
}

.ceremony .ceremony-image-container {
  width: 35vw;
  height: auto;
  margin-top: 5vh;
}

.ceremony .ceremony-image {
  width: 100%;
  height: auto;
  background: #F9F6ED;
}

.ceremony .ceremony-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 15vw;
  padding: 0.625rem;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: #F9F6ED;
  border: 1px solid #F9F6ED;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  background: #F9F6ED;
}

.contact .contact-title {
  text-align: center;
  color: #48101D;
  font-size: 5vw;
  font-family: "Brigitha Signature", cursive;
  font-weight: 400;
  margin-bottom: 5vh;
}

.contact .contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact .contact-card {
  width: 25vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-card-flipper-container {
  perspective: 1000px;
}

.contact-card-flipper-container:hover .contact-card--flipper {
  transform: rotateY(180deg);
}

.contact-card-flipper-container, .contact-card--front, .contact-card--back, .contact-image {
  width: 25vw;
  height: 25vw;
}

.contact-card--flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.contact-card--front, .contact-card--back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-card--front {
  z-index: 2;
  transform: rotateY(0deg);
}

.contact-card--back {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.8rem;
  background: #FFFFFF;
  transform: rotateY(180deg);
}

.contact-detail {
  width: 80%;
  height: auto;
  margin: 0 auto;
  font-size: 2em;
  font-size: 1.1em;
}

.contact-name {
  color: #48101D;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.contact-image {
  aspect-ratio: 1/1;
}

/* FAQ section styles */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 88vh;
  padding: 2rem;
  background: #48101D;
}

.faq-title {
  color: #F9F6ED;
  font-size: 5vw;
  font-family: "Brigitha Signature", cursive;
  font-weight: 400;
  margin-bottom: 4rem;
}

.faq-container {
  width: 100%;
  margin: 0 auto;
  padding: 0.5em;
}

.faq-item {
  width: 80%;
  background: #F9F6ED;
  color: #48101D;
  margin: 0.5em auto;
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 1em 1em 0;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  margin: -1em -1em 0;
  padding: 1em;
}

.faq-item[open] {
  padding: 1em;
}

.faq-item[open] .faq-question {
  border-bottom: 1px solid #48101D;
  margin-bottom: 1em;
}

/* Footer styles */
.footer {
  position: relative;
  height: 12vh;
  background: #F9F6ED;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2em;
  color: #48101D;
}

.footer .logo {
  font-size: 2rem;
  font-family: "Brigitha Signature", cursive;
  font-weight: 400;
  white-space: nowrap;
}

.footer .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem;
}

.footer .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.footer .nav-item a {
  color: #48101D;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

/* Tablet styles */
@media (max-width: 768px) {
  .nav-list {
    gap: 3vw;
  }
  .hero .hero-title {
    font-size: 12vw;
  }
  .accommodation .accommodation-title {
    font-size: 6vw;
  }
  .accommodation .image-container {
    grid-template-columns: 1fr;
  }
  .ceremony {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .ceremony .ceremony-title,
  .ceremony .ceremony-image-container {
    width: 60vw;
  }
  .ceremony .ceremony-link {
    width: 30vw;
  }
  .ceremony .divider-container {
    display: none;
  }
  .contact .contact-card {
    width: 40vw;
  }
  .contact .contact-image {
    width: 40vw;
    height: 40vw;
  }
}
/* Mobile styles */
@media (max-width: 480px) {
  .nav {
    display: none;
  }
  .hero .invitation {
    width: 100%;
  }
  .accommodation .accommodation-title {
    font-size: 8vw;
  }
  .ceremony {
    padding-bottom: 1rem;
  }
  .ceremony .ceremony-title {
    margin-top: 2rem;
  }
  .ceremony .ceremony-image-container {
    margin-top: 2vh;
  }
  .ceremony-link {
    width: 100% !important;
  }
  .ceremony .ceremony-title,
  .ceremony .ceremony-image-container {
    width: 80vw;
  }
  .ceremony .ceremony-link {
    width: 50vw;
  }
  .contact .contact-card {
    width: 80vw;
  }
  .contact .contact-image {
    width: 80vw;
    height: 80vw;
  }
  .faq-title {
    margin-bottom: 1rem;
  }
  .faq-item {
    width: 100%;
  }
  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

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