@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400&display=swap");
:root {
  --blue: #344666;
  --white: #faf0e0;
  --ultra-white: #fafafa;
  --darkpurple: #0e0b14;
  --black: #000000;
  --brown: #2c1b01;
  --violet: #a239ca;
  --lighterviolet: #be4eeb;
  --gray: #202020;
  --darkgray: #1c1c1c;
  --gold: #d4b695;
  --green: #326647;
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 783px) {
  .max-width {
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

@media (max-width: 782px) {
  .mobile-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

body {
  padding: 0;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.3;
  background-color: var(--ultra-white);
  scroll-behavior: smooth;
}
@media (min-width: 783px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 782px) {
  body {
    text-align: center;
    background-color: var(--ultra-white);
  }
}

@media (min-width: 783px) {
  .grid-2-col > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.desktop {
  display: none;
}
@media (min-width: 783px) {
  .desktop {
    display: block;
  }
}

.mobile {
  display: none;
}
@media (max-width: 782px) {
  .mobile {
    display: block;
  }
}

.container {
  margin: 0 auto;
  overflow: hidden;
  top: -13px;
  position: relative;
  z-index: 100;
}

.modal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 10%;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}
@media (max-width: 782px) {
  .modal {
    top: 0;
  }
}

.modalMusic {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 10%;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}
@media (max-width: 782px) {
  .modalMusic {
    top: 0;
  }
}

.music_player {
  display: block;
  position: relative;
  text-align: center;
  margin: 0 auto !important;
}

.music_wrapper {
  width: 340px;
  height: auto;
  margin: 0 auto;
  position: relative;
  top: 40%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  width: 142.224vh;
  max-width: 80vw;
  margin: 0 auto;
  position: relative;
}

.modal-wrapper {
  position: absolute;
  padding-bottom: 56.25%;
  height: 0;
  width: 100%;
}
.modal-wrapper iframe {
  position: absolute;
  top: 5px;
  left: 5px;
  min-width: 100%;
  min-height: 100%;
  background-color: var(--black);
  border: 5px solid black;
}

.close {
  float: right;
  font-weight: bold;
  position: absolute;
  right: -20px;
  top: -15px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  text-align: center;
  font-size: 50px;
  line-height: 42px;
  padding: 0;
  color: var(--violet);
  border: 3px solid var(--white);
}

.decor-wraper {
  width: 100%;
  min-height: 100%;
  overflow-y: hidden;
}

.close:hover,
.close:focus {
  color: var(--lighterviolet);
  text-decoration: none;
  cursor: pointer;
}

@keyframes dissapear {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes drop-down {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.centered-image {
  text-align: center;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .centered-image {
    margin-bottom: 0;
  }
}

.centered-image img {
  max-width: 200px;
  height: auto;
}
@media (max-width: 1320px) {
  .centered-image img {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .centered-image img {
    max-width: 60px;
  }
}

.navigation {
  position: relative;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--ultra-white);
  box-sizing: border-box;
  z-index: 201;
  opacity: 1;
  box-shadow: none;
  transition: all 0.3s ease;
}
.navigation > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation > div .logo {
  text-align: left;
}
.navigation > div .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation > div nav {
  text-align: right;
}
.navigation > div nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 0;
  margin: 0;
  align-items: center;
}
.navigation > div nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer !important;
}
.navigation > div nav ul li a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--blue);
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.2s ease;
  cursor: pointer !important;
}
.navigation > div nav ul li a:hover {
  color: var(--brown);
}
.navigation > div nav ul li:not(:last-child)::after {
  content: "|";
  margin-left: 1em;
  color: var(--brown);
}
@media (max-width: 1024px) {
  .navigation > div nav ul li:not(:last-child)::after {
    content: none;
  }
}
@media (min-width: 1320px) {
  .navigation nav {
    text-align: right;
  }
  .navigation nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
  }
  .navigation nav ul li {
    display: inline-block;
  }
}

.navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--ultra-white);
  box-shadow: 0px 27px 35px -9px rgba(0, 0, 0, 0.3);
}

.center-nav nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.center-nav nav ul li {
  position: relative;
}
.center-nav nav ul li:not(:last-child)::after {
  content: "|";
  margin-left: 1em;
  color: var(--black);
  pointer-events: none;
}
.center-nav nav ul li a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.center-nav nav ul li a:hover {
  color: var(--brown);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  margin-left: auto;
}
.hamburger .burger-inner,
.hamburger .burger-inner::before,
.hamburger .burger-inner::after {
  content: "";
  display: block;
  background-color: var(--blue);
  height: 3px;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger .burger-inner {
  position: relative;
}
.hamburger .burger-inner::before {
  position: absolute;
  top: -8px;
  width: 100%;
}
.hamburger .burger-inner::after {
  position: absolute;
  top: 8px;
  width: 100%;
}

@media (max-width: 1320px) {
  .navigation {
    padding-bottom: 0;
    padding-top: 27px;
  }
  .hamburger {
    display: flex;
  }
  .navigation .wrap nav ul {
    flex-direction: column;
    gap: 20px;
    background-color: var(--ultra-white);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0 0 !important;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    z-index: 998;
  }
  .navigation.open .wrap nav ul {
    display: flex;
    max-height: 500px;
    padding: 30px 0;
  }
  .navigation nav ul li:not(:last-child)::after {
    content: none;
  }
}
.hamburger.active .burger-inner {
  background: transparent;
}

.hamburger.active .burger-inner::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.active .burger-inner::after {
  transform: rotate(-45deg);
  top: 0;
}

.top {
  position: relative;
  width: 100%;
  height: auto !important;
  box-sizing: border-box;
  margin-bottom: -10px;
}
.top img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.top p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
}
@media (min-width: 783px) {
  .top p {
    font-size: 22px;
  }
}
.top p span {
  display: block;
  font-weight: bold;
  font-size: 16px;
}
@media (min-width: 783px) {
  .top p span {
    font-size: 18px;
  }
}

#myVideo {
  position: relative;
  display: flex;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: auto !important;
  z-index: 100;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
#preloader .wolf-logo {
  width: 200px;
  height: auto;
  color: var(--gold);
  animation: breathe 4s ease-in-out infinite, bob 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
@keyframes bob {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(8px) scale(1.02);
  }
}
body.loading {
  overflow: hidden;
}

.wedding-footer {
  background-color: var(--gray);
  color: var(--white);
  padding: 60px 20px 30px;
  text-align: center;
}
.wedding-footer .copyright {
  margin-top: 40px;
  font-size: 14px;
  color: var(--white);
  opacity: 0.6;
}
.wedding-footer h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.wedding-footer p {
  font-size: 16px;
  margin-bottom: 30px;
}
.wedding-footer .contacts {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.wedding-footer .contact-card {
  background-color: var(--darkgray);
  padding: 20px;
  border-radius: 12px;
  width: 220px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.wedding-footer .contact-card .icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--gold);
}
.wedding-footer .contact-card h4 {
  font-size: 18px;
  margin: 5px 0;
}
.wedding-footer .contact-card p {
  font-size: 15px;
  margin: 5px 0;
}
.wedding-footer .contact-card p a {
  color: var(--white);
  text-decoration: none;
}
.wedding-footer .contact-card p a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contacts {
    flex-direction: column;
    align-items: center;
  }
}
.event-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  padding-top: 10px;
  box-sizing: border-box;
  color: var(--blue);
}

.event-content {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.event-info {
  flex: 1 1 300px;
  min-width: 280px;
}
.event-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.event-info .event-datetime {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 50px;
}
.event-info .event-datetime p {
  font-size: 18px;
  margin: 0;
  display: flex;
  align-items: center;
}
.event-info .event-datetime p .icon {
  margin-right: 10px;
  font-size: 50px;
  color: var(--gold);
  width: 50px;
  text-align: center;
}
.event-info .event-address {
  font-size: 18px;
  margin-top: 60px;
  display: flex;
  align-items: center;
}
.event-info .event-address .icon {
  margin-right: 10px;
  font-size: 50px;
  color: var(--gold);
  width: 50px;
  text-align: center;
}

.event-map {
  flex: 1 1 500px;
  min-width: 300px;
}
.event-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  border: none;
}

@media (max-width: 768px) {
  .event-content {
    flex-direction: column;
    align-items: center;
  }
  .event-datetime {
    justify-content: center;
  }
  .event-address {
    justify-content: center;
    text-align: center;
  }
  .event-map {
    width: 100%;
  }
}
.countdown-section {
  background-color: #f2f2f2;
  padding: 60px 20px;
  text-align: center;
}

.countdown-container {
  max-width: 800px;
  margin: 0 auto;
}
.countdown-container h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--blue);
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-item span {
  font-size: 48px;
  font-weight: bold;
  color: var(--gold);
}
.countdown-item label {
  font-size: 16px;
  color: var(--blue);
  margin-top: 8px;
}

@media (max-width: 600px) {
  #countdown {
    gap: 20px;
  }
  .countdown-item span {
    font-size: 36px;
  }
}
.about-section {
  padding: 60px 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.about-content {
  display: flex;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1 1 500px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--blue);
}
.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-text {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .fullwidth-photo.with-text .photo-heading h2 {
    font-size: 32px;
    padding: 8px 20px;
  }
}
.fullwidth-photo img {
  width: 100%;
  height: 1080px;
  max-height: 1080px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 600px) {
  .fullwidth-photo img {
    object-position: 43% center;
  }
}

.gifts-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
.gifts-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--blue);
}
.gifts-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.gifts-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.gift-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}
.gift-item .icon {
  font-size: 50px;
  color: var(--gold);
  margin-bottom: 10px;
}
.gift-item p {
  font-size: 16px;
  color: var(--black);
}
.gift-item .faded {
  opacity: 0.4;
}

@media (max-width: 600px) {
  .gift-item .icon {
    font-size: 36px;
  }
}
.schedule-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.schedule-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--blue);
}
.schedule-section h3 {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--blue);
}

.schedule-container {
  max-width: 800px;
  margin: 0 auto;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 50px;
}
.schedule-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px 20px;
  background-color: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s;
}
.schedule-list li:hover {
  background-color: #f0f0f0;
}
.schedule-list li .time {
  font-weight: bold;
  font-size: 18px;
  color: var(--gold);
  min-width: 80px;
  text-align: left;
}
.schedule-list li .event {
  font-size: 18px;
  text-align: left;
  color: var(--black);
  padding-left: 20px;
}

@media (max-width: 600px) {
  .schedule-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .schedule-list li .time {
    margin-bottom: 5px;
  }
  .schedule-list li .event {
    padding-left: 0;
  }
}
.meeting-section {
  background-color: #f2f2f2;
  padding: 60px 20px;
  text-align: center;
}
.meeting-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--blue);
}
.meeting-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--black);
}
.meeting-section .calendly-embed {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.meeting-section .calendly-inline-widget {
  width: 100%;
  min-height: 700px;
}

.rsvp-section {
  background-color: var(--ultra-white);
  padding: 60px 20px;
  text-align: center;
}
.rsvp-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--blue);
}
.rsvp-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--black);
}
.rsvp-section .google-form {
  max-width: 800px;
  margin: 0 auto;
}
.rsvp-section .google-form iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accommodation-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.accommodation-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--blue);
}
.accommodation-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--black);
}
.accommodation-section .accommodation-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.accommodation-section .accommodation-boxes {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.accommodation-section .accommodation-item {
  flex: 1 1 500px;
  max-width: 100%;
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  box-sizing: border-box;
}
.accommodation-section .accommodation-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--blue);
}
.accommodation-section .accommodation-item p {
  font-size: 16px;
  margin-bottom: 15px;
}
.accommodation-section .accommodation-item p .icon {
  margin-right: 10px;
  color: var(--gold);
}
.accommodation-section .accommodation-item iframe {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  border: none;
}

@media (max-width: 768px) {
  .accommodation-boxes {
    flex-direction: column;
    align-items: center;
  }
  .accommodation-item {
    width: 100%;
  }
}
.transport-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
.transport-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--blue);
}
.transport-section p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.menu-section {
  background-color: #2e2e2e;
  background-size: 20px 20px;
  padding: 80px 20px;
  color: #f0f0f0;
  font-family: "Merriweather", serif;
}
.menu-section .menu-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.menu-section .menu-container h2 {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--gold);
}
.menu-section .menu-container .menu-text {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(240, 240, 240, 0.9);
}
.menu-section .menu-container .menu-text p {
  margin-bottom: 16px;
  font-size: 1rem;
}
.menu-section .menu-content {
  margin-top: 40px;
}
.menu-section .menu-content h2, .menu-section .menu-content p {
  text-align: center;
}
.menu-section .menu-list {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}
.menu-section .menu-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #275643;
  border-radius: 2px;
}
.menu-section .menu-item {
  position: relative;
  padding: 20px 0 0 20px;
}
.menu-section .menu-item + .menu-item {
  margin-top: 30px;
}
.menu-section .menu-item + .menu-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -15px;
  width: calc(100% - 20px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.menu-section .menu-item h3 {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  margin: 0 0 12px;
  color: var(--gold);
  display: flex;
  align-items: center;
}
.menu-section .menu-item h3 i {
  margin-right: 8px;
  font-size: 1.3em;
  color: #275643;
}
.menu-section .menu-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-section .menu-item ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 1.2em;
}
.menu-section .menu-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #275643;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .menu-section {
    padding: 60px 10px;
  }
  .menu-section .menu-container .menu-text {
    margin-bottom: 30px;
  }
  .menu-section .menu-content {
    margin-top: 30px;
  }
  .menu-section .menu-list {
    padding-left: 20px;
  }
  .menu-section .menu-list::before {
    left: -10px;
  }
  .menu-section .menu-item {
    padding: 15px 0 0 15px;
  }
  .menu-section .menu-item h3 {
    font-size: 1.6rem;
  }
  .menu-section .menu-item ul li {
    font-size: 0.95rem;
    padding-left: 1em;
  }
  .menu-section .menu-item ul li::before {
    left: 0;
  }
  .menu-section .menu-item + .menu-item::before {
    left: 15px;
    width: calc(100% - 15px);
  }
}

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