@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
p {
  font-family: "Montserrat", sans-serif;
}
#cursor {
  width: 30px;
  height: 30px;
  position: fixed;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  z-index: 99;
  pointer-events: none;
  mix-blend-mode: difference;
  box-shadow: 0px 0px 53px 34px #1a1a1ad6;
}
.hero_title {
  font-size: 2.6rem;
  font-weight: 500;
  width: 58%;
}

#banner_hero_image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.rounded-2xl {
  border-radius: 1rem;
}

#gallery_grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 104/137;
  object-fit: cover;
}
.insta_grid {
  div {
    overflow: hidden;
  }
  div > img {
    height: 200px;
  }
}

.model_details_container {
  img {
    border-radius: 1.5rem;
    filter: drop-shadow(15px 15px 4px rgba(0, 0, 0, 0.3));
  }
}

#work {
  .swiper-slide > div {
    overflow: hidden;
  }
  .swiper-slide > div img {
    height: 480px;
    object-fit: cover;
  }
}

.contact_details_image {
  width: 85%;
  border-radius: 1rem;
}

/* text effect */

#main-text-reveal {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#top {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 50vh;
  background-color: rgb(255, 255, 255);
  z-index: 9;
  overflow: hidden;
}

#center {
  position: relative;
  width: 100%;
  min-height: 100vh;
  transform-origin: center;
  background-color: #f1e8e0;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  overflow: hidden;
}

#bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50vh;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  z-index: 5;
}

#main-text-reveal .heading {
  color: #f1e8e0;
  font-family: Founder;
  font-size: 18vw;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

#top-h1 {
  top: 100%;
}

#bottom-h1 {
  top: 0%;
}

.content {
  position: relative;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  gap: 4vh;
}

.content h3 {
  width: 22%;
  font-size: 3vw;
  font-family: CardinalR;
  text-align: center;
  font-weight: 400;
}

#text_reveal_image {
  aspect-ratio: 1/1;
  border-radius: 50%;
  height: 10vw;
  width: 10vw;
  max-width: 600px;
  object-fit: cover;
}
/* lightbox modal */

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.modal-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vw;
  width: 100vw;
  height: 100vh;
  min-height: 400px;
}

.modal-item-revealer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  transform: scaleX(0);
  transform-origin: left;
}

.lightbox-image {
  max-width: 80%;
  max-height: 80%;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: white;
  font-size: 18px;
  width: 50px;
  height: 50px;
  padding: 0;
  min-height: 50px;
  user-select: none;
} 
.footer-logo{
  max-width: 200px;
}

@media (max-width: 768px) {
  #cursor {
    display: none;
  }
  .hero_title {
    width: 100%;
    font-size: 2rem;
    font-weight: 600;
  }
  #hero_section_top .content_box {
    padding-bottom: 3rem;
  }
  .contact_details_image {
    width: 100%;
  }
  #work {
    .swiper-slide > div img {
      width: 100%;
      height: 300px;
    }
  }
}
