/* ===============================
   GLOBAL / BODY
================================ */

body {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(0,0,0,0.06), transparent 55%),
    radial-gradient(ellipse at bottom, rgba(0,0,0,0.09), transparent 55%),
linear-gradient(#e1e4dc, #cfd4c2);
  color: #2b2b2b;
  font-family: 'EB Garamond', serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Atmospheric chapel air */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.08), transparent 55%),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.05), transparent 40%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}

/* Keep all real content above atmosphere */
body > * {
  position: relative;
  z-index: 1;
}

/* ===============================
   MAIN ALTAR
================================ */

.chapel {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 10svh 1.5rem 9svh;
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;

  position: relative;
  isolation: isolate;

  background:
    radial-gradient(ellipse at 50% 115%, rgba(60,45,35,0.10), transparent 55%);
}

/* Ensure altar content stays above antlers */
.chapel > * {
  position: relative;
  z-index: 2;
}

/* ===============================
   DEER ANTLER WATERMARK (LARGE)
================================ */

.chapel::before {
  content:"";
  position:absolute;
  inset:-12svh -1.5rem;
  pointer-events:none;
  z-index: 1;

  opacity: 0.14;
  background-repeat:no-repeat;
  background-position:center 40%;
  background-size:min(680px, 96vw);

  filter: blur(0.35px);
  transform: translateY(0.25rem);

  background-image: url("radioshow sigil.png");

}

/* ===============================
   SECOND SOFTER ANTLER LAYER
================================ */

.chapel::after {
  content:"";
  position:absolute;
  inset:-10svh -1rem;
  pointer-events:none;
  z-index: 1;

  opacity: 0.07;
  background-repeat:no-repeat;
  background-position:center 38%;
  background-size:min(520px, 95vw);

  filter: blur(0.25px);

  background-image: url("radioshow sigil.png");
}

/* ===============================
   TYPOGRAPHY
================================ */

h1 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.22em;
  font-weight: 400;
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2rem);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.subtitle {
  font-style: italic;
  margin: 0.6rem 0 1.4rem;
  opacity: 0.85;
}

/* ===============================
   INVOCATION / PRAYER CARD
================================ */

.invocation {
  line-height: 1.65;
  margin: 1.75rem 0 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(60,45,35,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.invocation p { margin: 0.75rem 0; }
.invocation p:first-child { margin-top: 0; }
.invocation p:last-child { margin-bottom: 0; }

/* ===============================
   ANTLER DIVIDER
================================ */

.sigil {
  width: 64px;              /* small, altar-sized */
  margin: 1rem 0 1.75rem;
  opacity: 0.5;
  text-shadow:0 0.5px 0 rgba(0, 0, 0, 0.15);

  filter: contrast(0.15) sepia(0);      /* softens digital edges */
  pointer-events: none;
}


/* ===============================
   NAVIGATION
================================ */

nav { width: min(22rem, 100%); }

nav a {
  display: block;
  padding: 0.7rem 1rem;
  margin: 0.35rem 0;
  text-decoration: none;
  color: #5a3b2e;
  letter-spacing: 0.16em;
  border-radius: 12px;
  border: 1px solid rgba(60,45,35,0.10);
  background: rgba(255,255,255,0.12);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.08s ease, background 0.2s ease, border-color 0.2s ease;
}

nav a:hover {
  background: rgba(90,59,46,0.07);
  border-color: rgba(90,59,46,0.18);
}

nav a:active { transform: scale(0.985); }

nav a:focus-visible {
  outline: 2px solid rgba(90,59,46,0.35);
  outline-offset: 3px;
}