/* ===== style.css ===== */
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at center,
      rgba(255, 192, 203, 0.4) 0%,
      rgba(221, 160, 221, 0.2) 40%,
      rgba(255, 255, 255, 1) 100%),
    linear-gradient(180deg, #ffffff 0%, #f7f2fc 100%);
  background-attachment: fixed;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.visible:nth-child(1) {
  transition-delay: 0.2s;
}

.fade-in.visible:nth-child(2) {
  transition-delay: 0.4s;
}

.bump-in {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bump-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.user-buttons {
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
  z-index: 10;
  font-size: 20px;
}

/* .contact-us .cta-button {
  padding: 16px;
  border-radius: 25px;
} */
.contact-us.cta-button {
  padding: 16px 14px;
  justify-content: center;
  width: 50px;
  border-radius: 25px;
}

.contact-buttons {
  display: flex;
  flex-direction: column-reverse;
  width: 50px;
}

.contact-buttons .social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  margin-bottom: 10px;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-buttons .social-btn {
  opacity: 0;
  display: none;
  transform: translateY(20px);
  pointer-events: none;
  /* щоб не можна було натискати поки вони приховані */
}

/* Коли кнопки відкриті */
.contact-buttons.open .social-btn {
  opacity: 1;
  display: flex;
  transform: translateY(0);
  pointer-events: auto;
}

.telegram {
  background: linear-gradient(135deg, #37aee2, #1e96c8);
  color: white;
  font-size: 30px;
}

.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
  font-size: 30px;
}

.facebook {
  background: linear-gradient(135deg, #1877f2, #4267B2);
  color: white;
}

.tiktok {
  background: linear-gradient(135deg, #25F4EE 0%, #000 50%, #FE2C55 100%);
  color: white;
}

.linkedin {
  background: linear-gradient(135deg, #0A66C2 0%, #0077B5 100%);
  color: white;
}

.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.to-top .cta-button {
  padding: 16px 18.25px;
  border-radius: 25px;
}

.to-top {
  opacity: 0;
  bottom: 40px;
  right: 40px;
  transition: all 1s ease;
  z-index: 10;
}

.to-top.visible {
  opacity: 1;
}


.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('../img/light-bg-image.png'); */
  background: #fefefe96;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensure it's on top */
}

/* From Uiverse.io by andrew-manzyk */
.loader {
  --fill-color: #5c3d99;
  --shine-color: #5c3d9933;
  transform: scale(0.5);
  /* You can change the size */
  width: 100px;
  height: auto;
  position: relative;
  filter: drop-shadow(0 0 10px var(--shine-color));
}

.loader #pegtopone {
  position: absolute;
  animation: flowe-one 1s linear infinite;
}

.loader #pegtoptwo {
  position: absolute;
  opacity: 0;
  transform: scale(0) translateY(-200px) translateX(-100px);
  animation: flowe-two 1s linear infinite;
  animation-delay: 0.3s;
}

.loader #pegtopthree {
  position: absolute;
  opacity: 0;
  transform: scale(0) translateY(-200px) translateX(100px);
  animation: flowe-three 1s linear infinite;
  animation-delay: 0.6s;
}

.loader svg g path:first-child {
  fill: var(--fill-color);
}

@keyframes flowe-one {
  0% {
    transform: scale(0.5) translateY(-200px);
    opacity: 0;
  }

  25% {
    transform: scale(0.75) translateY(-100px);
    opacity: 1;
  }

  50% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }

  75% {
    transform: scale(0.5) translateY(50px);
    opacity: 1;
  }

  100% {
    transform: scale(0) translateY(100px);
    opacity: 0;
  }
}

@keyframes flowe-two {
  0% {
    transform: scale(0.5) rotateZ(-10deg) translateY(-200px) translateX(-100px);
    opacity: 0;
  }

  25% {
    transform: scale(1) rotateZ(-5deg) translateY(-100px) translateX(-50px);
    opacity: 1;
  }

  50% {
    transform: scale(1) rotateZ(0deg) translateY(0px) translateX(-25px);
    opacity: 1;
  }

  75% {
    transform: scale(0.5) rotateZ(5deg) translateY(50px) translateX(0px);
    opacity: 1;
  }

  100% {
    transform: scale(0) rotateZ(10deg) translateY(100px) translateX(25px);
    opacity: 0;
  }
}

@keyframes flowe-three {
  0% {
    transform: scale(0.5) rotateZ(10deg) translateY(-200px) translateX(100px);
    opacity: 0;
  }

  25% {
    transform: scale(1) rotateZ(5deg) translateY(-100px) translateX(50px);
    opacity: 1;
  }

  50% {
    transform: scale(1) rotateZ(0deg) translateY(0px) translateX(25px);
    opacity: 1;
  }

  75% {
    transform: scale(0.5) rotateZ(-5deg) translateY(50px) translateX(0px);
    opacity: 1;
  }

  100% {
    transform: scale(0) rotateZ(-10deg) translateY(100px) translateX(-25px);
    opacity: 0;
  }
}

/* ===== fonts.css ===== */
* {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: url('SoyuzGrotesk-Bold');
  src: url(../fonts/soyuz-grotesk/SoyuzGrotesk-Bold.woff) format('woff');
  font-display: swap;

}

@font-face {
  font-family: url('Montserrat-Bold');
  src: url(../fonts/Montserrat/static/Montserrat-Bold.ttf) format('truetype');
  font-display: swap;

}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url(../fonts/Montserrat/static/Montserrat-Regular.ttf) format('truetype');
  font-display: swap;

}

@font-face {
  font-family: 'PT-Sans-Bold';
  src: url(../fonts/PT_Sans/PTSans-Bold.ttf) format('truetype');
  font-display: swap;

}

@font-face {
  font-family: 'MontserratAlternate-Bold';
  src: url(../fonts/Montserrat_Alternates/MontserratAlternates-Bold.ttf) format('truetype');
  font-display: swap;

}


p,
a,
li,
span,
button,
label,
div {
  font-family: 'Montserrat-Regular', sans-serif;
  font-weight: normal;
}

h1,
h2 {
  font-family: 'MontserratAlternate-Bold', sans-serif;
  font-weight: bold;
}

/* h2{
    font-family: 'SoyuzGrotesk-Bold', sans-serif;
    font-weight: bold;
} */
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat-Bold', sans-serif;
  font-weight: bold;
}