/* ============================================
   COMING SOON PAGE STYLES
   ============================================ */

/* Coming Soon Section */
.coming-soon-section {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
}

.coming-soon-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.coming-soon-card {
  background-image: url('../../images/bg-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(180, 160, 140, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 600px;
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(251 223 208 / 55%);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.coming-soon-card > * {
  position: relative;
  z-index: 1;
}

/* Animated Title */
.coming-soon-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-medium);
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

.coming-soon-title .letter {
  display: inline-block;
  animation: float 2s ease-in-out infinite;
}

.coming-soon-title .letter.space {
  width: 15px;
}

/* Staggered animation delays for each letter */
.coming-soon-title .letter:nth-child(1) { animation-delay: 0s; }
.coming-soon-title .letter:nth-child(2) { animation-delay: 0.1s; }
.coming-soon-title .letter:nth-child(3) { animation-delay: 0.2s; }
.coming-soon-title .letter:nth-child(4) { animation-delay: 0.3s; }
.coming-soon-title .letter:nth-child(5) { animation-delay: 0.4s; }
.coming-soon-title .letter:nth-child(6) { animation-delay: 0.5s; }
.coming-soon-title .letter:nth-child(7) { animation-delay: 0.6s; }
.coming-soon-title .letter:nth-child(8) { animation-delay: 0.7s; }
.coming-soon-title .letter:nth-child(9) { animation-delay: 0.8s; }
.coming-soon-title .letter:nth-child(10) { animation-delay: 0.9s; }
.coming-soon-title .letter:nth-child(11) { animation-delay: 1s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.8;
  }
}

/* Sparkle decorations */
.sparkle {
  position: absolute;
  color: var(--color-accent);
  font-size: 20px;
  opacity: 0;
  animation: sparkle 3s ease-in-out infinite;
  z-index: 2;
}

.sparkle-1 {
  top: 20px;
  left: 30px;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 30px;
  right: 40px;
  animation-delay: 0.75s;
}

.sparkle-3 {
  bottom: 40px;
  left: 50px;
  animation-delay: 1.5s;
}

.sparkle-4 {
  bottom: 30px;
  right: 30px;
  animation-delay: 2.25s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
}

/* Small flower divider */
.flower-divider-small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.flower-divider-small .divider-flower {
  color: var(--color-accent);
  font-size: 18px;
  animation: pulse 2s ease-in-out infinite;
}

.flower-divider-small .divider-dot {
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.7;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Coming soon text */
.coming-soon-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.coming-soon-text em {
  color: var(--color-primary);
}

/* Pulse circle animation */
.pulse-circle {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  animation: pulseGlow 2s ease-in-out infinite;
}

.pulse-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(201, 168, 108, 0.4);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

.pulse-circle::after {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(201, 168, 108, 0.2);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite 0.5s;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(201, 168, 108, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(201, 168, 108, 0.7);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Back Home Section */
.coming-soon-page .back-home-section {
  text-align: center;
  padding: 30px 0 50px;
}

/* Coming Soon Page Specific */
.coming-soon-page .lotus-divider {
  padding: 50px 0 20px;
}

/* ============================================
   RESPONSIVE - COMING SOON PAGE
   ============================================ */
@media (max-width: 900px) {
  .coming-soon-title {
    font-size: 42px;
  }

  .coming-soon-card {
    padding: 50px 40px;
    margin: 0 20px;
  }

  .coming-soon-section {
    padding: 40px 30px;
    min-height: calc(100vh - 180px);
  }

  .coming-soon-page .lotus-divider {
    padding: 40px 0 15px;
  }

  .coming-soon-page .back-home-section {
    padding: 25px 0 40px;
  }
}

@media (max-width: 600px) {
  .coming-soon-title {
    font-size: 28px;
    letter-spacing: 0.03em;
  }

  .coming-soon-title .letter.space {
    width: 10px;
  }

  .coming-soon-card {
    padding: 35px 20px;
    margin: 0 15px;
    border-radius: var(--radius-md);
  }

  .coming-soon-section {
    padding: 30px 20px;
  }

  .coming-soon-content {
    padding: 30px 0;
  }

  .coming-soon-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .sparkle {
    font-size: 14px;
  }

  .sparkle-1 { top: 12px; left: 12px; }
  .sparkle-2 { top: 15px; right: 15px; }
  .sparkle-3 { bottom: 20px; left: 15px; }
  .sparkle-4 { bottom: 15px; right: 12px; }

  .flower-divider-small .divider-flower {
    font-size: 16px;
  }

  .pulse-circle {
    width: 10px;
    height: 10px;
  }

  .coming-soon-page .lotus-divider {
    padding: 30px 0 10px;
  }

  .coming-soon-page .back-home-section {
    padding: 20px 0 30px;
  }
}

@media (max-width: 400px) {
  .coming-soon-title {
    font-size: 24px;
  }

  .coming-soon-card {
    padding: 30px 15px;
  }

  .coming-soon-text {
    font-size: 13px;
  }

  .sparkle {
    display: none;
  }
}
