/* Under construction page — matches Pharma Konsult site branding */

.construction-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--site-width-padding);
  background: var(--brand-gradient-image) center / cover no-repeat;
  background-color: #2f9bd7;
  color: var(--white);
  font-family: var(--primary-site-font);
}

.construction-shell {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.construction-logo {
  margin: 0 auto 40px;
}

.construction-logo img {
  display: block;
  margin: 0 auto;
  height: 64px;
  width: auto;
  max-width: min(320px, 90vw);
}

.construction-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 40px 32px 36px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.construction-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: var(--weight-semi-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.construction-title {
  margin: 0 0 12px;
  font-family: var(--aptos-display);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: var(--weight-light);
  line-height: 1.1;
}

.construction-text {
  margin: 0 0 28px;
  font-size: 17px;
  font-weight: var(--weight-light);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.construction-form {
  text-align: left;
}

.construction-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: var(--weight-semi-bold);
}

.construction-input {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--neutral-900);
  font: inherit;
  font-size: 16px;
}

.construction-input:focus {
  outline: 2px solid var(--teal-300);
  outline-offset: 2px;
}

.construction-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: var(--weight-semi-bold);
  letter-spacing: 0.02em;
  padding: 14px 24px;
  transition: background 0.2s ease, color 0.2s ease;
}

.construction-submit:hover,
.construction-submit:focus {
  background: var(--white);
  color: var(--blue-500);
  outline: none;
}

.construction-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 14px;
}

.construction-footer {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 500px) {
  .construction-card {
    padding: 32px 20px 28px;
  }

  .construction-logo img {
    height: 48px;
  }
}
