/* ==========================================================================
   VAANGA.IN - COMING SOON
   Complete Responsive Stylesheet
   ========================================================================== */

:root {
  --primary: #ff4d8d;
  --secondary: #ff8c2f;
  --dark: #2f285b;
  --text: #666;
  --bg: #fffafc;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ===========================
   BODY
=========================== */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;

  color: #2b2b2b;

  min-height: 100vh;

  position: relative;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 107, 107, 0.55) 0%,
      rgba(255, 170, 120, 0.3) 18%,
      transparent 38%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 97, 175, 0.18) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(124, 92, 255, 0.18) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 199, 150, 0.45) 0%,
      rgba(255, 236, 225, 0.25) 22%,
      transparent 45%
    ),
    linear-gradient(180deg, #fff8fb 0%, #ffffff 45%, #fffdfb 100%);

  background-repeat: no-repeat;

  background-size: cover;
}

body::before {
  content: "";

  position: fixed;

  width: 550px;

  height: 550px;

  top: -260px;

  left: -220px;

  background: radial-gradient(circle, #ff8f70 0%, #ffb25f 55%, transparent 75%);

  border-radius: 50%;

  filter: blur(35px);

  opacity: 0.45;

  z-index: -10;
}

body::after {
  content: "";

  position: fixed;

  width: 650px;

  height: 650px;

  bottom: -320px;

  right: -280px;

  background: radial-gradient(circle, #ffd3cb 0%, #ffe8df 60%, transparent 78%);

  border-radius: 50%;

  filter: blur(45px);

  opacity: 0.75;

  z-index: -10;
}

@media (max-width: 991px) {
  body::before {
    width: 380px;
    height: 380px;

    left: -180px;
    top: -180px;
  }

  body::after {
    width: 420px;
    height: 420px;

    right: -180px;
    bottom: -180px;
  }
}

@media (max-width: 576px) {
  body::before {
    width: 280px;
    height: 280px;

    left: -120px;
    top: -120px;
  }

  body::after {
    width: 300px;
    height: 300px;

    right: -120px;
    bottom: -120px;
  }
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px 15px;
}

.logo {
  max-width: 320px;
  animation: float 4s ease-in-out infinite;
}

.tagline {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 10px;
  color: #666;
  font-weight: 600;
}
.tagline span {
  color: var(--primary);
}

.small-title {
  margin-top: 35px;
  color: #444;
  font-size: 2.2rem;
  font-weight: 600;
}

.main-title {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
}
.main-title span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin: 5px auto;
  color: var(--text);
  font-size: 1.15rem;
  max-width: 520px;
}

.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(15px);
  border-radius: 60px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
}
.contact-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.social-title {
  margin-top: 35px;
  color: #666;
  font-weight: 600;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.social-icons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: 0.35s;
}
.social-icons a:hover {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #fff;
  transform: translateY(-6px) scale(1.05);
}

/* Decorations */
.paper-plane,
.floating-heart,
.offer-badge,
.megaphone,
.shopping-bag,
.bell,
.like-box {
  position: absolute;
  z-index: 2;
}

.paper-plane {
  left: 8%;
  top: 40%;
  animation: float 5s infinite;
}
.paper-plane img {
  font-size: 3rem;
  width: 240px;
  height: 240px;
  color: #ff5c98;
}

.floating-heart {
  left: 6%;
  top: 34%;
  animation: pulse 2s infinite;
}
.floating-heart i {
  font-size: 1.6rem;
  color: #d57cff;
}

.offer-badge {
  right: 10%;
  top: 30%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6f5bff, #4f3cff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(79, 60, 255, 0.3);
  animation: float 4s infinite;
}

.megaphone {
  left: 4%;
  bottom: 35px;
  animation: float 4s infinite;
}
.megaphone img {
  width: 180px;
}

.shopping-bag {
  right: 4%;
  bottom: 25px;
  animation: float 4s infinite reverse;
}
.shopping-bag img {
  width: 180px;
}

.bell {
  right: 23%;
  bottom: 170px;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffbf00;
  box-shadow: var(--shadow);
  animation: swing 1.5s infinite;
}

.like-box {
  right: 18%;
  bottom: 100px;
  width: 58px;
  height: 58px;
  background: #ff4d8d;
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  animation: pulse 2s infinite;
}

.circle {
  position: absolute;
  border: 2px solid rgba(155, 117, 255, 0.35);
  border-radius: 50%;
  animation: float 6s infinite;
}
.c1 {
  width: 18px;
  height: 18px;
  left: 18%;
  top: 28%;
}
.c2 {
  width: 26px;
  height: 26px;
  right: 14%;
  top: 40%;
}
.c3 {
  width: 14px;
  height: 14px;
  left: 22%;
  bottom: 22%;
}
.c4 {
  width: 20px;
  height: 20px;
  right: 10%;
  bottom: 30%;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
@keyframes swing {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .main-title {
    font-size: 4.6rem;
  }
}

@media (max-width: 991px) {
  .main-title {
    font-size: 3.8rem;
  }
  .offer-badge {
    display: none;
  }
  .megaphone img,
  .shopping-bag img {
    width: 130px;
  }
}

@media (max-width: 767px) {
  .logo {
    max-width: 170px;
  }
  .small-title {
    font-size: 1.6rem;
  }
  .main-title {
    font-size: 3rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .contact-card {
    flex-direction: column;
    border-radius: 20px;
    width: 100%;
    max-width: 320px;
  }
  .paper-plane,
  .floating-heart,
  .megaphone,
  .shopping-bag,
  .bell,
  .like-box {
    display: none;
  }
  .social-icons a {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.5rem;
  }
  .tagline {
    font-size: 0.9rem;
  }
  .subtitle {
    padding: 0 10px;
  }
}
