/*******UTILITIES*****/

html,
body {
  overflow-x: hidden;
}

body.page-id-2 .footer-container {
  background-color: var(--brand-red);
}

.footer-container {
  background-color: var(--beige500);
}

.h1-tiny {
  font-size: 39px;
  vertical-align: super;
}

.h1-bold {
  font-weight: bold;
}

.h2-tiny {
  font-size: 25px;
  vertical-align: super;
}

.red {
  color: var(--brand-red);
}

.glassmorphism {
  border-radius: var(--Radius-l, 24px);
  border: 2px solid #fff;
  background: radial-gradient(
    507.78% 132.81% at 1.56% 4.18%,
    rgba(255, 244, 230, 0.8) 0%,
    rgba(255, 244, 230, 0.48) 28.11%,
    rgba(255, 244, 230, 0.64) 100%
  );
  background-blend-mode: multiply;
  backdrop-filter: blur(10px);
}

.landscape-ratio {
  aspect-ratio: 16 / 9;
}

.colspan-2 {
  grid-column: span 2;
}

.hidden {
  display: none;
}

.mobile-br {
  display: block;
}

@media (min-width: 768px) {
  .mobile-br {
    display: none;
  }
}

/******* SLIDER ********/
.section-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow-y: hidden;
}

.slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 128px);
  opacity: 1;
  pointer-events: none;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.icon-button {
  color: var(--brand-red);
  background-color: transparent;
  cursor: default;
  width: 52px;
  height: 52px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  border: 1px solid var(--brand-red);
}

.icon-button:hover {
  background-color: transparent;
}

.icon-button.active {
  background-color: var(--brand-red);
  color: var(--beige300);
  transition: all 0.3s ease-in-out;
}

.icon-button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/*
.no-scrollbar {
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
  */

/***** LOGO MARQUEE ****/

.marquee-container {
  overflow: hidden;
  width: 120vw;
  top: 98%;
  left: 50%;
  transform: translateX(-10%) translateY(-50%) rotate(-2deg);
}

.marquee-inner {
  display: flex;
  width: 100%;
  gap: 2rem; /* optional space between logos */
}

/*****ANIMATED SPRITES*****/

.purple-bird {
  width: 140px;
  height: auto;
  top: 42%;
  left: 28%;
}

.pink-bird {
  width: 120px;
  height: auto;
  bottom: 40px;
  left: 22%;
}

.pink-circle {
  width: 200px;
  height: auto;
  bottom: 0;
  left: 0;
}

.beige-circle {
  width: 100px;
  height: auto;
  bottom: 200px;
  left: 40px;
}

.yellow-circle {
  width: 100px;
  height: auto;
  bottom: 23%;
  left: 28%;
}

.yellow-moon {
  width: 150px;
  height: auto;
  top: 8%;
  left: 40px;
}

/***** DOMAIN LOGOS *****/
.domain-list .gb-shape svg {
  width: 80px !important;
  height: auto !important;
}

/******FORM*****/
.wpcf7 form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.sib-form {
  margin-top: 24px;
  max-width: 50%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.sib-email-area input[type="email"] {
  border-radius: 999px;
  height: 56px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
}

.sib-email-area input[type="email"] {
  border: solid 1px var(--beige500);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  background-color: var(--base-3);
  outline: none;
  box-shadow: none;
}

.wpcf7 label,
p.sib-email-area {
  font-family: Geomanist-Medium;
}

.wpcf7 label {
  color: var(--beige300);
}

p.sib-email-area {
  color: var(--base-1);
}

.wpcf7 textarea {
  border-radius: 24px;
}

.wpcf7 input,
.sib-email-area input {
  width: 100%;
}

.form-row-divided p {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
}

.form-row-divided input {
  flex: 1;
}

.wpcf7-not-valid-tip {
  color: var(--base-3);
  font-size: 12px;
  font-family: Geomanist-Regular;
}

.wpcf7 input[type="submit"],
.sib-default-btn {
  border-radius: 999px;
  height: 56px;
  width: fit-content;
  background-color: var(--beige500);
  color: var(--brand-red);
  font-family: Geomanist-Medium;
  font-size: 20px;
  border: none;
}

.wpcf7 input[type="submit"]:hover,
.sib-default-btn:hover {
  background-color: var(--brand-red-hover);
  color: var(--beige100);
}

.wpcf7 input[type="submit"]::after {
  content: var(--);
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #c2ffda !important;
  color: #46b450 !important;
}

/*********FOOTER*********/
.sticker-container {
  position: absolute;
  top: -120px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/*******ANIMATIONS********/
.anim-stroke {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  max-width: 260px;
  width: 100%;
  height: auto;
}

.image-fade-container {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.image-fade-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.image-fade-container img.active {
  opacity: 1;
  z-index: 1;
}

/***** MEDIA QUERIES *****/
@media screen and (max-width: 767px) {
  .h1-tiny {
    font-size: 24px;
  }

  .h2-tiny {
    font-size: 20px;
  }

  .hidden-mobile {
    display: none;
  }

  .domain-icons {
    width: 80px;
    height: auto;
  }

  .domain-list .gb-shape svg {
    width: 40px !important;
  }

  .section-slider {
    padding: 0 15px;
  }

  .slide {
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    justify-content: start;
    height: calc(100vh - 32px);
  }

  .slider-content-wrapper {
    justify-content: space-between;
  }

  .sticker-container {
    top: -64px;
  }

  .yellow-moon {
    width: 70px;
    top: 40px;
    left: 24%;
  }
  .beige-circle {
    width: 60px;
    top: 38%;
    left: 27%;
  }
  .pink-bird {
    width: 80px;
    left: 62%;
    top: 18%;
  }

  .sib-form {
    max-width: 100%;
  }
}
