@import "font.css";
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe{
    pointer-events: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, 
body{
    width: 100%;
    font-family: "PP Neue Montreal";
    &.no-scroll{
      overflow: hidden;
      position: fixed;
    }
}

img {
    width: 100%;
    height: 100%;
}

.name { 
    font-family: "SH";
    font-size: 9em;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
}
h1 { 
    font-family: "ER";
    font-size: 9em;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
}
@media (max-width: 760px) {
    h1, .name {
        font-size: 5em;
    }
}
@media (max-width: 480px) {
    h1, .name {
        font-size: 18vw;
    }
}
p {
    font-size: 17px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; 
    padding: 0;
    background-color: #000;
    overflow: hidden;
}

.gallery-wrapper { 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 160vw;
    height: 100vh;
    display: flex;
    gap: 4em;
}
@media (max-width: 1100px) {
    .gallery-wrapper {
        width: 180vw;
    }
}
@media (max-width: 767px) {
    .gallery-wrapper {
        width: 190vw;
        gap: 2.5em;
    }
}
@media (max-width: 480px) {
    .gallery-wrapper {
        width: 247vw;
        gap: 1.2em;
    }
}
.col { 
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 4em;
    will-change: transform;
}
@media (max-width: 480px) {
    .col {
        min-width: 30vw;
    }
}
.img { 
    flex: 1;
    overflow: hidden;
    background-color: #fff;
}
.img img{
    object-fit: cover;
}
.img.main img {
    position: relative;
    transform: scale(2);
    will-change: transform;
}

.container { 
    width: 100%;
    height: 100%;
}

section { 
    position: relative;
    width: 100vw;
    background-color: #e1dedc;
}

.hero { 
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100vh;
    overflow: hidden;
    .hero-list {
      position: relative;
      height: 100%;
      width: 100%;
      overflow: hidden;
    }
    .hero-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out; 
      &.active{
        opacity: 1;
      }
      
    }
    .hero-img img{
        object-fit: cover;
    }
    /* Button to go to the previous image or next image
    .buttons{ 
      position: absolute;
      top: 45%;
      left: 5%;
      width: 90%;
      display: flex;
      justify-content: space-between;
      button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #fff5;
        color: #fff;
        border: none;
        font-family: monospace;
        font-weight: bold;
      }
    }
    Indicate which picture it is currently at
    .dots {
      position: absolute;
      bottom: 10px;
      color: #fff;
      left: 0;
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      li {
        list-style: none;
        width: 10px;
        height: 10px;
        background: #fff;
        margin: 20px;
        border-radius: 20px;
        transition: 1s;
        &.active{
          width: 30px;
        }
      }
    }
    */

}
.overlay{
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    background-image: linear-gradient(0deg, #000000d1 0%, #0000 100%);
}
.header { 
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    color: #fff;
    padding: 2em;
    top: 78dvh;
}
@media (max-width: 760px) {
    .header {
        top: 84dvh;
    }
}
@media (max-width: 480px) {
    .header {
        top: 84dvh;
    }
}
.intro { 
    text-align: center;
    padding: 6em 0;
    background-color: #e1dedc;
    color: #05364c;

    /* min-height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url("../aset/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.divider { 
    width: 1.5px;
    height: 30%;
    background-color: #05364c;
}

section.ws { 
    width: 100vw;
    height: 600vh;
    background-color: transparent;
}

.outro { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../aset/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: #05364c;
    min-height: 100vh;
}

.footer-bg { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.infowrapper {
  text-align: center;
  z-index: 1;
  /* overflow: hidden; */
}
.initial {
  width: 5em;
  height: 100%;
  margin-bottom: 24px;
}
  @media (min-width: 1200px) {
    .initial {
      width: 5.2em;
    }
  }
  @media (max-width: 480px) {
    .initial {
      width: 5em;
    }
  }
  @media (max-width: 370px) {
    .initial {
      width: 4em;
    }
  }
.info-opening,
.info-subopening,
.info-gb {
  font-size: 1.4vw;
}
  @media (min-width: 1200px) {
    .info-opening,
    .info-subopening,
    .info-gb {
      font-size: 1.6vw;
    }
  }
  @media (min-width: 1366px) {
    .info-opening,
    .info-subopening,
    .info-gb {
      font-size: 1.8vw;
    }
  }
  @media (max-width: 1199px) {
    .info-opening,
    .info-subopening,
    .info-gb {
        font-size: 1.4em;
    }
  }
  @media (max-width: 767px) {
    .info-opening,
    .info-subopening,
    .info-gb {
        font-size: 1.2em;
    }
  }
  @media (max-width: 480px) {
    .info-opening,
    .info-subopening,
    .info-gb {
      font-size: 3.5vw;
    }
  }
  
.info-opening {
  text-align: center;
  font-family: "PP Mori regular";
  text-transform: uppercase;
  color: #506670;
  /* font-family:"the season", serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.536px; */
}
.info-subopening,
.andtext,
.requesttext,
.requesttext2,
.info-gb {
  color: #506670;
  text-align: center;
  font-family:"the season", serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-shadow: 0 0 5px #ffffff2e;
  text-align: center;
  font-family: "PP Mori regular";
  text-transform: uppercase;
  margin-top: 8px;
}
.info-subopening {
  margin-bottom: 28px;
}
  @media (min-width: 1200px) {
    .info-subopening {
      margin-bottom: 28px;
    }
  }
  @media (max-width: 1199px) {
    .info-subopening {
      margin-bottom: 28px;
    }
  }
  @media (max-width: 767px) {
    .info-subopening {
      margin-bottom: 28px;
    }
  }
  @media (max-width: 480px) {
    .info-subopening {
      margin-bottom: 28px;
    }
  }
.info-gb {
  margin-bottom: 12px;
  color: #234250;
  font-family: "the season", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4em;
}
  @media (max-width: 991px) {
    .info-gb {
      font-size: 6vw;
    }
  }
  @media (max-width: 760px) {
    .info-gb {
        font-size: 3.2em;
    }
  }
  @media (max-width: 600px) {
    .info-gb {
        font-size: 2.5em;
    }
  }
  @media (max-width: 480px) {
    .info-gb {
      font-size: 2.3em;
    }
  }
.andtext {
  margin: 20px 0;
  font-size: 30px;
}
  @media (min-width: 1366px) {
    .andtext {
      margin: 20px 0;
      font-size: 1.4vw;
    }
  }
  @media (min-width: 1200px) {
    .andtext {
      margin: 20px 0;
      font-size: 1.8vw;
    }
  }
  @media (max-width: 1199px) {
    .andtext {
      margin: 20px 0;
      font-size: 1.8vw;
    }
  }
  @media (max-width: 767px) {
    .andtext {
      margin: 20px 0;
      font-size: 2.4vw;
    }
  }
  @media (max-width: 480px) {
    .andtext {
      margin: 20px 0;
      font-size: 3vw;
    }
  }
.requesttext {
  margin-top: 35px;
  font-size: 40px;
}
.requesttext2{
  font-size: 40px;
  margin-top: 9px;
}
  @media (min-width: 1366px) {
    .requesttext, .requesttext2{
      font-size: 1.6vw;
    }
  }
  @media (min-width: 1200px) {
    .requesttext, .requesttext2{
      font-size: 2vw;
    }
  }
  @media (max-width: 1199px) {
    .requesttext, .requesttext2{
        font-size: 1.4em;
    }
  }
  @media (max-width: 767px) {
    .requesttext, .requesttext2{
      font-size: 1.2em;
    }
  }
  @media (max-width: 480px) {
    .requesttext, .requesttext2{
      font-size: 3.5vw;
    }
  }
.parentstext {
  text-align: center;
  text-transform: uppercase;
  font-family: 'Gothic';
  font-size: 35px;
  letter-spacing: 2px;
  color: #3b6274;
  text-shadow: 0 0 5px white;
}
.namabisnis {
  text-align: center;
  text-transform: uppercase;
  font-family: 'Gothic';
  font-size: 35px;
  letter-spacing: 2px;
  text-shadow: 0 0 5px white;
  margin-top: 4px;
  color: #b3b3b3;
}
@media (min-width: 1366px) {
  .parentstext, .namabisnis {
    font-size: 1vw;
  }
}
@media (min-width: 1200px) {
  .parentstext, .namabisnis {
    font-size: 1.2vw;
  }
}
@media (max-width: 1199px) {
  .parentstext, .namabisnis {
    font-size: 0.9em;
  }
}
@media (max-width: 767px) {
  .parentstext, .namabisnis {
    font-size: 2.1vw;
  }
}
@media (max-width: 480px) {
  .parentstext, .namabisnis {
    font-size: 2.6vw;
  }
}

.main-wrapper {
  width: 100vw;
  height: auto;
  overflow-x: hidden;
}

/* #region Common Classes */

.no-scroll { 
  overflow: hidden!important;
  height: 100%!important;
  position: fixed;
}

.no-show { 
  display: none !important;
}

/* #endregion */

/* #region Opening Modal */

  .websiteopening{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 100;
    overflow: hidden;
  }

  .websiteopening-wrapper {
    width: 100%;
    height: 100%;
  }
  @media (max-width: 480px) {
    .websiteopening-wrapper {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, #0000 50%, #000000a6 100%);
    }
  }
  .websiteopening-content {
    text-align: center;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  @media (max-width: 480px) {
    .websiteopening-content {
        justify-content: flex-start;
        padding-top: 80px;
    }
  }
  .websiteopening-name {
    position: absolute;
    top: 40dvh;
    height: auto;
    padding: 4px;
    transform: translateX(-50%);
    z-index: 3;
    background-color: white;
    img {
      height: auto;
      width: 10em;
      padding: 2em;
      border: 1px solid #8f8f8f;
      margin-bottom: -5px;
    }
    span {
      position: absolute;
      width: 88%;
      bottom: 100px;
      left: 6%;
    }
  }
  .initialdpn{
    width: 7vw;
    max-width: 80px;
    height: 7vw;
    max-height: 80px;
    margin: 0 auto 16px auto;
  }
  @media (max-width: 480px) {
    .initialdpn{
        width: 55px;
        height: 55px;
    }
  }
  .twotext {
    text-align: center;
    
    font-family: "PP Mori regular";
    font-size: 1.4em;
    font-weight: 600;
    color: #fff;
  }
  @media (max-width: 480px) {
    .twotext {
        font-size: 1em;
    }
  }
  .gabtext {
    text-align: center;
    font-family: "the season", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5em;
    line-height: normal;
    padding: 0 5%;
    color: #fff;

  }
  @media (max-width: 767px) {
    .gabtext {
        font-size: 3em;
    }
  }
  @media (max-width: 480px) {
    .gabtext {
        font-size: 2.2em;
    }
  }
  .taptocontinuetext{
    padding: 6px 24px;

    font-family: 'Gothic';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    white-space: nowrap;

    color: black;
    background-color: white;

    -webkit-animation: blink 3s ease-in infinite;
    animation: blink 3s ease-in infinite;
    transition: all 3s ease-in-out;
    @media (max-width: 767px) {
      font-size: 14px;
    }
  }
  .websiteopening-left { 
    position: absolute;
    z-index: 2;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url('../img/initial/background-split-2.jpg');
  }
  .websiteopening-right { 
    position: absolute;
    z-index: 2;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background-image: url('../img/initial/background-split-2.jpg');
    border-left: 1px solid #b4b4b4;
  }
  
  .openWebsite {
    .wbesiteopening-animation{
      animation-duration: 3s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-delay: 1s;
      &.websiteopening-left {
        animation-name: openLeft;
      }
      &.websiteopening-right {
        animation-name: openRight;
      }
    }
  }

  @keyframes openLeft {
    0% {
      left: 0;
    }
    100% {
      left: calc(-50% - 100px);
    }
  }
  @keyframes openRight {
    0% {
      right: 0;
    }
    100% {
      right: calc(-50% - 200px);
    }
  }
  
/* #endregion */

/* #region Mute / Unmute Icon */ 

.soundonoff {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  @media (max-width: 767px) {
    left: 5%;
    bottom: 65px;
  }
}

.soundonoff .noshow{
  bottom: -100px;
}
.soundonoff button{
  background-color: white;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.12);
  display: flex;
  width: 42px;
  height: 42px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: none;
  
}
.soundonoff button img{
  width: 20px;
  height: 20px;
} 
/* #endregion */






/* events */
.events{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  @media (max-width: 700px) {
    .events {
        flex-direction: column;
    }
  }

  .eventtypebackground{
    color: white;
    display: flex;
    width: 100%;
    padding: 3em;
  }
  @media (max-width: 991px) {
    .eventtypebackground {
      padding: 5%;
    }
  }
  @media (max-width: 480px) {
    .eventtypebackground {
      display: block;
    }
  }
  .makeonerow{
    display: flex;
    margin-bottom: 1.6em;
  }
  .holmaticon{
    margin-right: 8px;
  }
  .weddingicon{
    margin-left: 8px;
  }
  .weddingtextwrapper{
    justify-content: flex-end;
  }
  .eventicon{
    display: flex;
    justify-content: start;
    align-items: start;
  }
  .eventicon img{
    width: 20px;
  }
  
  .holymatrimonywrapper{
    float: right;
  }
  @media (max-width: 480px) {
    .weddingceremony {
        margin-top: 40px;
    }
  }
  
  .weddingceremonywrapper{
    justify-content: flex-end;
    text-align: right;
  }
  
  .eventtypei {
    padding: 3vw 4vw;
    margin: 2px 1px 4px 1px;
    background-color: #ffffff8f;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  @media (max-width: 767px) {
    .eventtypei{
      padding: 30px;
    }
  }
  /* .eventtype{
    border: 20px solid;
    border-image: url("../aset/border-image.svg")40;
  } */
  .eventtitlew{
    border-bottom: 1px solid #2342506e;
    justify-content: center;
  }
  .eventtitle{
    font-family:"the season", serif;
    margin-bottom: 8px;
    color: #234250;
    font-size: 1.5em;
  }
  .eventplace, .eventdate{
    font-size: 1em;
    font-family: 'Gothic';
    color: #234250;
    text-align: left;
  }
  @media (max-width: 767px) {
    .eventplace, .eventdate{
      font-size: 14px;
    }
  }
  /* button */
.button_slide {
    position: relative;
    color: #727c81;
    background-color: #d1cac5;
    border-radius: 0px;
    padding: 1em 36px;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #c2bab3;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
  }
  .button_slide:hover {
    color: #485156;
  }
  .slide_right:hover {
    box-shadow: inset 400px 0 0 0 #c2bab3;
  }
  .linkbutton {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }

/* gallery */
.gallery {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  padding: 20px;
  max-width: 900px;
  margin: auto; */
  padding: 4em 10% 2em 10%;
  @media (max-width: 767px) {
    padding-left: 5%;
    padding-right: 5%;;
  }
}

.gallery-area { 
  display: flex;
  flex-flow: row wrap;
  .gallery-item {
    position: relative;
    list-style-type: none;
    padding: 5px;
    height: 30vw;
    @media (max-width: 480px) {
      height: 50vw;
    }
  }
  .gallery-item-one {
    width: calc(33.3333%);
  }
  .gallery-item-two {
    width: calc(66.6667%);
  }
  .gallery-item-three {
    width: 100%;
  }
}
.galleries {
  background-color: white;
}
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Special Image Layout */
.wide {
    grid-column: span 2;
    height: 250px;
}

.large {
    grid-column: span 2;
    height: 300px;
}



/* footer */
.footer {
  width: 100%;
  padding-bottom: 80px;

  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  font-family: 'Gothic';
  background-color: white;
}
.footer p {
  color: #234250;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1em;
}

/* rsvp */
.rsvp{
  padding: 4em 0;
}

/* gallery slick */
.slickwrapper{
  overflow-x: hidden;
}
.my-slider{
  position: relative;
}
.slick-initialized .slick-slide{
  width: 100%;
  height: 60vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  
}
@media (max-width: 480px) {
  .slick-initialized .slick-slide{
    height: 80vh;
  }
}
.slick-slide div{
  height: 100%;
  width: 100%;
}
.slider-img{
  object-fit: cover;
  height: 100%;
}
.slick-next, .slick-prev{
  z-index: 5;
}
.slick-next{
  right: 15px;
}
.slick-prev{
  left: 15px;
}
.slick-next:before, .slick-prev:before{
  color: #000;
  font-size: 26px;
}

.slick-dots {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin: 16px;
	padding: 1rem 0;
	list-style: none;
	position: absolute;
	bottom: 0;
	right: 0;
}

.slick-dots li {
	margin: 0.4rem 0.25rem;
}

.slick-dots button {
	display: block;
	width: 0.7rem;
	height: 0.7rem;
	padding: 0;
	border: none;
	-webkit-border-radius: 50%; /* Safari-compatible for rounded dots */
	border-radius: 50%;
	background-color: #828282;
	/* Ensure the button is visible */
	text-indent: 0; /* Keep text inside but invisible */
	overflow: hidden; 
	position: relative; /* Maintain structure */
}

.slick-dots button::before {
	content: ''; /* Create a visible dot */
	display: block;
	width: 0.7rem;
	height: 0.7rem;
	background-color: inherit; /* Matches the button's background */
	border-radius: inherit;
	position: absolute;
	top: 0;
	left: 0;
}

.slick-dots li.slick-active button {
	background-color: #fff;
}

.slick-dots li.slick-active button::before {
	background-color: #fff; /* Ensure active dot is white */
}

/* quotes */
.gbquote {
  font-family: 'Gothic';
  text-align: center;
  width: 80%;
  margin: 0 10%;
  padding-bottom: 4em;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .gbquote {
    top: 60px;
  }
}
.gbquote p {
  color: #05364c;
  font-size: 18px;
}
@media (max-width: 991px) {
  .gbquote p{
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .gbquote p{
    font-size: 14px;
  }
}

.display-button { 
  cursor: pointer;
}