* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

body {
  position: relative;
}

/* MAIN SECTION */

.coming-soon-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* BACKGROUND IMAGE */

.coming-soon-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("./bg1.png");

  background-size: cover;
  background-position: center;
  z-index: -2;

  animation: zoomBg 18s linear infinite alternate;
}

@keyframes zoomBg {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

/* LIGHT EFFECT */

.coming-soon-section::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at left,
    rgba(255, 115, 0, 0.22),
    transparent 50%
  );

  z-index: -1;
}

/* CONTENT */

.content-box {
  /* max-width: 665px; */
  padding-left: 90px;
  animation: fadeUp 1.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.sub-title {
  color: #ffb347;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}

.main-title {
  font-family: "Cinzel", serif;
  font-size: 55px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.main-title span {
  color: #ff9d00;
}

.desc {
  color: #f3f3f3;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 35px;
  max-width: 560px;
}

/* BUTTON */

.main-btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 60px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(45deg, #ff6a00, #ffb300);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.4);
  transition: 0.4s;
}

.main-btn:hover {
  transform: translateY(-5px);
  color: #fff;
}

/* SOCIAL ICONS */

.social-icons {
  margin-top: 40px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);

  transition: 0.4s;
}

.social-icons a:hover {
  background: #ff7b00;
  transform: translateY(-6px);
}

/* FLOATING DIYA */

.diya {
  position: absolute;
  bottom: 30px;
  right: 50px;
  width: 100px;

  animation: floatDiya 3s ease-in-out infinite;
}

@keyframes floatDiya {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .content-box {
    padding-left: 50px;
  }

  .main-title {
    font-size: 35px;
  }

  .desc {
    color: #f3f3f3;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .coming-soon-section {
    justify-content: center;
    text-align: center;
  }

  .content-box {
    padding: 20px;
  }

  .main-title {
    font-size: 42px;
  }

  .sub-title {
    font-size: 14px;
  }

  .desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .main-btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .diya {
    width: 70px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 34px;
  }

  .desc {
    font-size: 13px;
  }
}

/* MOBILE RESPONSIVE FIX */

@media (max-width: 767px) {
  .coming-soon-section::before {
    background:
      linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.55)),
      url("./bg1.png");

    background-size: cover;
    /* IMPORTANT */
    background-position: 72% center;
    background-repeat: no-repeat;
  }

  .content-box {
    width: 100%;
    right: 0;
    left: 0;
    padding: 20px;
    position: absolute;
    bottom: 50px;
    top: auto;
    transform: none;
    text-align: center;
  }

  .main-title .small {
    font-size: 34px;
  }

  .main-title .big {
    font-size: 42px;
  }

  .coming-text {
    font-size: 16px;
    letter-spacing: 4px;
    margin: 22px 0;
  }

  .coming-text::before,
  .coming-text::after {
    width: 45px;
  }

  .description {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .main-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .social-icons {
    margin-top: 25px;
  }

  .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .diya {
    width: 45px;
  }

  .diya-1 {
    right: 70px;
  }

  .diya-2 {
    right: 10px;
  }
}

/* EXTRA SMALL DEVICES */

@media (max-width: 480px) {
  .coming-soon-section::before {
    /* MORE SHIFT FOR SMALL DEVICES */
    background-position: 74% center;
  }

  .main-title .small {
    font-size: 28px;
  }

  .main-title .big {
    font-size: 36px;
  }

  .sub-title {
    font-size: 15px;
  }

  .description {
    font-size: 12px;
  }
}

/* COPYRIGHT */
.copyright-text {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.copyright-text p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
} /* FOOTER LINK */
.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s;
}
.footer-link:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 204, 51, 0.8);
} /* MOBILE */
@media (max-width: 767px) {
  .copyright-text p {
    font-size: 12px;
    padding: 0 10px;
    line-height: 1.6;
  }
  .copyright-text {
    position: absolute;
    bottom: 10px;
  }
}
