@font-face {
  font-family: "Verdana";
  src: url("../fonts/Verdana.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

html {
  overflow-x: hidden; /* Only hide horizontal overflow on html */
}

html,
body {
  background: rgb(255, 255, 255);
  color: #000;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* text*/
.start {
  height: 20vh;
  width: 99vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.start h1 {
  font-size: 10rem;
  color: #000;
}

/* Lottie  */
.scroller {
  height: 300vh;
  width: 100%;
}

.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden; /* Prevent any content from overflowing */
  background-size: cover;
}

#lottie {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  overflow: visible;
  margin: 0 auto;
}

.help-me {
  height: 0;
}

@media (max-width: 1500px) {
  .stage {
    place-items: center;
    height: auto;
  }

  #lottie {
    margin: 0;
    width: min(96vw, 100%);
    height: auto;
    align-self: start;
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .help-me {
    height: 20vh;
  }
}

/* Текстовая секция */
.scroller-text {
  height: 200vh; /* Increased back to 200vh for better animation space */
  display: none;
}

.stage-text {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: 6vmin 4vmin; /* Increased top/bottom padding for better spacing */
  overflow: hidden;
}

#textStage {
  width: 60vw;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  display: block;
}

@media (max-width: 700px) {
  #textStage {
    font-size: 20px;
    display: block;
    width: 90vw;
  }
}

@media (max-width: 480px) {
  #textStage {
    font-size: 16px;
    width: 95vw;
  }
}

#textStage span {
  display: inline-block;
  color: rgb(0, 0, 0);
}

@media (max-width: 1000px) {
  #textStage {
    width: 90vw;
  }
  
  .scroller-text {
    height: 180vh; /* Good space on tablets */
  }
}

@media (max-width: 700px) {
  .scroller-text {
    height: 160vh; /* Adequate space on mobile */
  }
}

/* About Us Section */
.about-section {
  padding: 3rem 0;
  background: #ffffff;
  position: relative;
}

.about-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  gap: 0rem;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-heading-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.about-heading {
  color: #000;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-text-wrap {
  text-align: center;
  max-width: 100%;
}

.about-text {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-image-wrap {
  width: 100%;
  /* max-width: 20rem; */
  margin: 1rem 0;
  border-radius: 1rem;
  overflow: hidden;
  /* border: 0.25rem solid #000; */
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* display: flex; */
  gap: 3px;
  padding: 0px 5px;
}

.about-image-wrap:hover {
  transform: translateY(-5px);
}

.about-image {
  width: 100%;
  height: auto;
  min-height: 25rem;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

/* About Us Responsive */
@media (max-width: 991px) {
  .about-section {
    padding: 6rem 0;
  }
  
  .about-heading {
    font-size: 3rem;
  }
  
  .about-content {
    gap: 3rem;
    max-width: 45rem;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-heading {
    font-size: 2.5rem;
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .about-content {
    gap: 0.5rem;
    padding: 0 1.5rem;
  }
  
  .about-image {
    min-height: 20rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-heading {
    font-size: 2rem;
  }
  
  .about-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about-content {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .about-image {
    min-height: 15rem;
  }
  
  .about-image-wrap {
    border-radius: 0.75rem;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.copy {
  cursor: pointer;
  display: inline-block;
  user-select: none;
  font-size: 30px;
  transition: transform 300ms ease, filter 160ms ease;
  color: #000;
  padding: 10px 10px;
  width: 50%;
  margin: 0 auto;
  border: 3px solid #000;
  border-radius: 6px;
  background: #fff;
  padding: 0.75rem 1.5rem;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 0.25rem solid #000;
  background-color: #f5f5f5 !important;
  box-shadow: 0 3px 0 1px #000;
  cursor: pointer;
  border-radius: 0.5rem;
  flex-flow: column;
  width: 38.75rem;
  max-width: 100%;
  transition: padding 0.2s;
  display: flex;
  overflow: hidden;
}

.copy.pressed {
  transform: scale(0.98);
  filter: brightness(0.96);
}

.links {
  display: flex;
  flex-direction: row;
  gap: 100px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-img {
  width: 100px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  border: 2px solid #000;
  background: #000;
  padding: 8px;
}

.social-img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

@media (max-width: 1200px) {
  .copy {
    font-size: 30px;
  }
  
  .links {
    gap: 80px;
  }
}

@media (max-width: 900px) {
  .copy {
    font-size: 20px;
  }

  .links {
    gap: 60px;
  }

  .social-img {
    width: 70px;
  }
}

@media (max-width: 700px) {
  .copy {
    font-size: 12px;
    width: 80%;
  }

  .links {
    gap: 40px;
  }

  .social-img {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .footer {
    gap: 60px;
    padding: 20px;
  }

  .copy {
    font-size: 10px;
    width: 90%;
    padding: 8px;
  }

  .links {
    gap: 30px;
  }

  .social-img {
    width: 35px;
    padding: 6px;
  }
}

@media (max-width: 360px) {
  .links {
    gap: 20px;
  }

  .social-img {
    width: 30px;
    padding: 4px;
  }
}


/* Lilly styles */
[data-stroke="single"] {
  position: relative;
  background: #fb222200;
  z-index: 0;
  font-weight: 700;
}

[data-stroke="single"]:before {
  content: attr(data-title);
  position: absolute;
  left: 0;
  z-index: -1;
  font-weight: 700;
  color: transparent;
}

/* Hero Content */
.container-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.hero_content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 9rem;
  margin-bottom: 6rem;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.hero_heading_wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transition: filter 1.2s linear;
  display: flex;
}

.hero_text-meet {
  color: #000;
  font-size: 2.63rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: 'Playfair Display', 'Inter', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero_h1 {
  color: #000;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', 'Inter', serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero_button_wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero_gif_wrap {
  max-width: 15rem;
  margin-top: -1.5rem;
  margin-bottom: -4rem;
}

.hero_gif_wrap img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

.shadow {
  background-color: #000;
  border-radius: 100vw;
}

.shadow.is-mobile {
  display: none;
}

.button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 0.25rem solid #000;
  background-color: #f0f0f0;
  color: #000;
  text-align: center;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem;
  transition: bottom 0.2s, left 0.2s, filter 1.2s linear;
  display: flex;
  position: relative;
  bottom: 6px;
  left: 6px;
  text-decoration: none;
}

.button:hover {
  bottom: 0;
  left: 0;
  background-color: #e0e0e0;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.hero_poem_wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 18ch;
  margin-top: 3rem;
  font-size: 1.5rem;
  line-height: 1.7;
  display: flex;
  position: relative;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.span_squack {
  opacity: 0.7;
  font-size: 1.38rem;
  font-weight: 400;
}

/* FAQ Content */
.faq_content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  padding-bottom: 1.5rem;
}

.h2_wrap {
  grid-column-gap: 0.4rem;
  grid-row-gap: 0.4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.h2_icon_wrap {
  width: 3rem;
  transition: filter 1.2s linear;
}

.h2 {
  color: #000;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-size-large {
  font-size: 1.75rem;
  font-weight: 500;
}

.text-size-large.is-h2 {
  margin-top: 0.7rem;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  /* grid-template-columns: 1fr 1fr; */
  grid-auto-columns: 1fr;
  display: grid;
}

.faq_grid {
  grid-template-rows: auto;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.faqs {
  grid-column-gap: 0.88rem;
  grid-row-gap: 0.88rem;
  flex-flow: column;
  display: flex;
  /* width: 100%; */
}

.faq_item {
  padding: 0.75rem 1.5rem;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 0.25rem solid #000;
  background-color: #f5f5f5 !important;
  box-shadow: 0 3px 0 1px #000;
  cursor: pointer;
  border-radius: 0.5rem;
  flex-flow: column;
  width: 38.75rem;
  max-width: 100%;
  transition: padding 0.2s;
  display: flex;
  overflow: hidden;
}

.faq_item:hover {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: #eeeeee !important;
}

.faq_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  color: #000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
}

.faq_plus_wrap {
  border: 0.25rem solid #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.5rem;
  display: flex;
  position: relative;
  cursor: pointer;
}

.plus {
  background-color: #000;
  border-radius: 0.63rem;
  width: 2rem;
  height: 0.3rem;
  transition: transform 0.3s ease;
}

.plus-v {
  background-color: #000;
  border-radius: 0.63rem;
  width: 0.3rem;
  height: 2rem;
  position: absolute;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.faq_answer {
  width: 85%;
  line-height: 1.6;
  overflow: hidden;
}

.faq_text {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
  cursor: context-menu;
  line-height: 1.6;
}

.faq_image_wrap {
  border: 0.25rem solid #000;
  background-color: #f0f0f0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem;
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: none;
}

.gif_burger {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

.image_btn {
  width: 2rem;
  height: auto;
}

.button-copy {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 0.25rem solid #000;
  background-color: #f5f5f5;
  color: #000;
  text-align: center;
  text-shadow: 3px 0 #ffffff, -3px 0 #ffffff, 0 3px #ffffff, 0 -3px #ffffff, 3px 3px #ffffff, -3px -3px #ffffff, -3px 3px #ffffff, 3px -3px #ffffff;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem;
  font-size: 1.6rem;
  transition-property: bottom, left, filter;
  transition-duration: 0.2s, 0.2s, 1.2s;
  transition-timing-function: ease, ease, linear;
  display: flex;
  position: relative;
  bottom: 0.38rem;
  left: 0.38rem;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}

.button-copy:hover {
  bottom: 0;
  left: 0;
}

.social_links {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  justify-content: center;
  align-items: center;
  width: 7.75rem;
  display: flex;
}

.social_links.is-new {
  width: auto;
  margin-top: 1rem;
}

.social {
  border: 0.25rem solid #000;
  background-color: #ffffff;
  color: #000;
  text-decoration: none;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
}

.social:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.social.is-new {
  grid-column-gap: 0.4rem;
  grid-row-gap: 0.4rem;
  width: auto;
  height: auto;
}

.svg_social {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: auto;
  display: flex;
  color: #000;
}

/* Gallery Section */
.marquee {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 3rem 0;
  overflow: hidden;
  width: 100vw;
  overflow-x: hidden; /* Only apply to marquee section */
}

.marquee-advanced {
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.marquee-advanced__scroll {
  will-change: transform;
  width: 100%;
  display: flex;
  position: relative;
}

.marquee-advanced__collection {
  will-change: transform;
  display: flex;
  position: relative;
}

.marquee-advanced__item {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.marquee-advanced__item-width {
  margin: 1rem;
  flex-shrink: 0;
}

.marquee-advanced__item-width img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 5px solid #000;
  border-radius: 15px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.seperator_marquee {
  border-top: 0.38rem solid #000;
  border-bottom: 0.38rem solid #000;
  background-color: #f0f0f0;
  flex-flow: row;
  width: 100%;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  font-size: 1.5rem;
  transition: filter 1.2s linear;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee_wrap {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  color: #000;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  text-shadow: 0 0 4px #000;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 2.25rem;
  font-size: 1.7rem;
  display: flex;
}

.marquee_circle {
  border: 4px solid #000;
  background-color: #fff;
  border-radius: 100%;
  width: 1rem;
  height: 1rem;
}

.marquee_move {
  flex-flow: row;
  flex: none;
  display: flex;
}

.marquee_part {
  display: flex;
}

.text-color-alternate {
  color: #333;
}

@media screen and (max-width: 767px) {
  .hero_content {
    width: 100%;
    margin-top: 10rem;
    margin-bottom: 0;
    overflow: hidden;
  }

  .hero_button_wrap {
    width: 100%;
    margin-top: 30px;
  }

  .hero_gif_wrap {
    margin-top: -3.5rem;
  }

  .hero_poem_wrap {
    margin-top: 2rem;
  }

  .span_squack {
    font-size: 1.2rem;
  }

  .faq_content {
    width: 100%;
    padding: 0px 10px;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .faq_grid {
    width: 100%;
    margin-top: 2rem;
  }

  .faqs {
    width: 100%;
  }

  .faq_item {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .faq_question {
    font-size: 1.4rem;
    text-align: left;
  }

  .faq_plus_wrap {
    width: 3rem;
    height: 3rem;
  }

  .plus {
    width: 1.5rem;
  }

  .plus-v {
    height: 1.5rem;
  }

  .button-copy {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .social_links {
    grid-column-gap: 0.6rem;
    grid-row-gap: 0.6rem;
  }
}

@media screen and (max-width: 991px) {
  .hero_h1 {
    font-size: 4.25rem;
  }

  .hero_text-meet {
    font-size: 2.63rem;
    text-align: center;
  }

  .hero_gif_wrap {
    max-width: 14rem;
  }

  .faq_grid {
    grid-template-columns: 1fr;
  }

  .faq_image_wrap {
    display: none;
  }

  .hide-tablet {
    display: none;
  }

  .shadow.is-mobile {
    display: block;
  }

  .social_links {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

}

a.verify {
     padding: 0.75rem 1.5rem;
     grid-column-gap: 1rem;
     grid-row-gap: 1rem;
     border: 0.25rem solid #000;
     background-color: #ffffff !important;
     box-shadow: 0 3px 0 1px #000;
     cursor: pointer;
     border-radius: 0.5rem;
     flex-flow: column;
     width: 38.75rem;
     max-width: 100%;
     transition: padding 0.2s;
     display: flex;
     overflow: hidden;
     margin: 0 auto;
}
