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

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Full-viewport centered container */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--beige);
  padding: 2rem;
  animation: fadeIn 1.2s ease-out;
}

/* Decorative gold line above heading */
.coming-soon .accent-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* Main heading: practice name */
.coming-soon h1 {
  font-size: 3rem;
  letter-spacing: 0.4rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  font-weight: normal;
}

/* Subtitle: description */
.coming-soon .subtitle {
  font-size: 1.2rem;
  color: var(--green-heading);
  font-style: italic;
  margin-bottom: 3rem;
}

/* Decorative gold line below subtitle */
.coming-soon .divider {
  width: 3px;
  height: 50px;
  background: var(--gold);
  margin-bottom: 3rem;
}

/* Coming soon text */
.coming-soon .coming-soon-text {
  font-size: 1.1rem;
  color: var(--green-heading);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

/* Small footer note at bottom */
.coming-soon .footer-note {
  position: absolute;
  bottom: 2rem;
  font-size: 0.8rem;
  color: var(--green-heading);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .coming-soon h1 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
  .coming-soon .subtitle {
    font-size: 1rem;
  }
}
