/* =========================
   THE CALLING — section CSS
   ========================= */

/* page wrapper */
.calling-page {
  max-width: 720px;
  margin: 4rem auto;
  padding: 2.5rem 3rem;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 18px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* main title */
.calling-page h1 {
  font-size: 2.2rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 0.5rem;
}

/* subtitle / tagline */
.calling-page .subtitle {
  text-align: center;
  font-style: italic;
  opacity: 0.75;
  margin: 0 0 2rem;
}

/* soft divider */
.calling-divider {
  margin: 2.5rem 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.15),
    transparent
  );
}

/* --- nav buttons (match The Record) --- */
.nav-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;  /* set to flex-start if you want left-aligned */
  flex-wrap: wrap;
  margin-top: 32px;
}

.nav-button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.18);

  color: rgba(0, 0, 0, 0.55);
  text-decoration: none;

  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: transform 120ms ease, background 120ms ease, color 120ms ease, border-color 120ms ease;
}

.nav-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.28);
  color: rgba(0, 0, 0, 0.70);
  border-color: rgba(0, 0, 0, 0.16);
}

.nav-button:active {
  transform: translateY(0);
}