:root {
  color-scheme: only dark;
  --text: #eaf8ff;
  --muted: #b8e8ff;
  --brand: #7dd3fc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-image: url("honse.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.overlay,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.overlay {
  background: linear-gradient(to top, #00000080, #00000035 45%, #00000025);
}

.vignette {
  background: radial-gradient(circle, #00000000 35%, #00000075 100%);
}

.footer-bar {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #081a2a8f;
  border: 1px solid #ffffff33;
  border-radius: 0;
  padding: 2.2rem 1.6rem;
  backdrop-filter: blur(6px);
}

.footer-title,
.footer-tagline {
  margin: 0;
}

.footer-title {
  color: var(--brand);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-tagline {
  color: var(--muted);
  font-size: 1.35rem;
}

.footer-tagline a {
  color: var(--muted);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.footer-tagline a:hover {
  color: var(--brand);
}

@media (max-width: 520px) {
  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }
}

