/* Full-bleed background image */
html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2f3b4c;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-image: url("./assets/qpid-daycare-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-overlay {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(1.5px);
}

.site-header {
  text-align: center;
  padding: 1.5rem 1.25rem 0.75rem;
}

.site-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.03em;
}

.site-tagline {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #5d6a7d;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.25rem 1.25rem;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.info-card h2,
.info-card h3 {
  margin-top: 0;
}

.info-card ul {
  padding-left: 1.1rem;
  margin: 0.25rem 0 0;
}

.detail-line {
  margin: 0.1rem 0;
}

.two-column {
  display: grid;
  gap: 1rem;
}

.contact-card {
  text-align: center;
}

.cta-button {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ffb347, #ff6b81);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(255, 107, 129, 0.35);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(255, 107, 129, 0.45);
  filter: brightness(1.03);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(255, 107, 129, 0.4);
}

.site-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #6f7c90;
  padding: 0.75rem 1.25rem 1.1rem;
}

@media (min-width: 640px) {
  .content {
    gap: 1.25rem;
  }

  .info-card {
    padding: 1.4rem 1.6rem;
  }

  .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

