:root {
  --paper: url("/assets/Japanese-Paper.png");
  --ink: #1f2937;
  --accent: #f5d3b8;
  --accent-border: #e6b08a;
  --card: rgba(255, 255, 255, 0.55);
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "EB Garamond", Georgia, serif;
  line-height: 1.6;
  background:
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.40),
      rgba(255, 255, 255, 0.40)
    ),
    var(--paper);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ---------------------------------------------------------
   Hall-level shared elements
   --------------------------------------------------------- */

.label {
  display: inline-block;
  background: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: 0.6rem;
  padding: 0.35rem 0.9rem;
}

.hdr {
  text-align: center;
  margin-bottom: 1rem;
}

.meta {
  font-variant-numeric: tabular-nums;
  margin-top: 0.35rem;
}

.rule {
  height: 1px;
  background: rgba(0, 0, 0, 0.14);
  margin: 0.6rem auto 1rem;
  max-width: 12rem;
  border: 0;
}

/* ---------------------------------------------------------
   Hall cards / layout
   --------------------------------------------------------- */

.card {
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
}

.footer-wide {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* ---------------------------------------------------------
   Footer links
   Equal weight, neutral presence
   --------------------------------------------------------- */

.footer.footer-wide a {
  flex: 1;
  max-width: 18rem;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 0.6rem 1.2rem;
  font-size: 1.05em;

  text-decoration: none;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0.6rem;
}

.footer.footer-wide a:hover {
  background: rgba(0, 0, 0, 0.04);
}

main > h1 {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin: 2.5rem 0 2rem;
  opacity: 0.85;
}

.haiku-card {
  padding: 1.2rem 1.4rem 1.4rem;
}

.about-card {
  max-width: 720px;
  margin: 3rem auto 2.5rem;
  padding: 1.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-card p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.about-links {
  display: flex;
  gap: 1.4rem;
  margin: 1.4rem 0 1.6rem;
}

.about-card a {
  color: #2f3e46;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 62, 70, 0.3);
}

.about-card a:hover {
  border-bottom-color: rgba(47, 62, 70, 0.6);
}

/* =========================================================
   About page readability tuning
   ========================================================= */

.about-card,
.about-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Ensure comfortable measure for reading */
.about-card p,
.about-content p {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Slightly stronger link presence without distraction */
.about-card a,
.about-content a {
  font-weight: 500;
}

