/* ---------- BASE ---------- */
body {
  margin: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  animation: pageFade 1.2s ease-out forwards;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------- WRAPPER ---------- */
.body-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

/* ---------- BACKGROUND ---------- */
.body-wrapper img.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: bgZoom 18s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

/* ---------- LOGO ---------- */
.logo {
  position: absolute;
  max-width: 60%;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -40%);
  z-index: 5;
  opacity: 0;
  animation:
    logoReveal 1.6s ease-out forwards,
    logoFloat 6s ease-in-out infinite;
  animation-delay: 0s, 1.6s;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -30%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -40%) scale(1);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate(-50%, -40%) translateY(0);
  }
  50% {
    transform: translate(-50%, -40%) translateY(-12px);
  }
}

/* ---------- RESPONSIVE BG ---------- */
.small {
  display: none;
}

.large {
  display: block;
}

/* ---------- BOTTOM SECTION ---------- */
.insta_link_cs {
  position: absolute;
  bottom: 35px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* ---------- COMING SOON ---------- */
.coming_soon_wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.coming_soon {
  width: 300px;
  animation: comingSoonPulse 2.8s ease-in-out infinite;
}

@keyframes comingSoonPulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* ---------- STAR ICON ---------- */
.star-icon {
  width: 30px;
  flex-shrink: 0;
  animation:
    spin 3s linear infinite,
    starGlow 2s ease-in-out infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes starGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
  }
}

/* ---------- INSTAGRAM ICON ---------- */
.insta {
  width: 120px;
  animation: instaPulse 2.5s ease-in-out infinite;
}

@keyframes instaPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* ---------- MOBILE ---------- */
@media only screen and (max-width: 767px) {
  .logo {
    max-width: 80%;
  }

  .small {
    display: block;
  }

  .large {
    display: none;
  }

  .coming_soon_wrap {
    gap: 20px;
  }

  .coming_soon {
    width: 270px;
  }
}
