/* ---------------------------------------------- */
/* Footer: glass layer, depth, and global spacing */
/* ---------------------------------------------- */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #fdfdfd; /* bright base for contrast */
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------------------------- */
/* Footer: dark glass aesthetic */
/* ---------------------------- */

.footer {
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background-color: rgba(20, 20, 20, 0.55); /* semi-transparent dark layer */
  color: rgba(230, 230, 230, 0.85);         /* soft grey tone */
  text-align: center;
  padding: 6px 0;                           /* minimal footprint */
  font-size: 10.5px;
  font-family: "Kaisei Decol", serif;
  letter-spacing: 0.4px;
  line-height: 1.4;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* ------------------------------------------ */
/* Subtle top gradient to enhance glass depth */
/* ------------------------------------------ */

.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  pointer-events: none;
}

/* ------------------------------- */
/* Footer text size + micro-tuning */
/* ------------------------------- */

.footer p.address {
  font-size: 12.5px;
  color: rgba(235, 235, 235, 0.9);
}

.footer p {
  margin: 1px 0;
}
