html,
body {
  height: 100%;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font: 16px system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Fullscreen image but with reserved space for footer */
#photo {
  width: 100%; /* safer */
  max-width: 100vw; /* ensures it never exceeds viewport */
  height: 100vh; /* keeps space for footer */
  object-fit: contain; /* or 'cover' if you prefer background-like */
  object-position: center;
  display: block;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 20px 40px;
  font-size: 14px;
  height: 120px; /* must match the reserved space above */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left .logo {
  height: 32px;
  margin-bottom: 8px;
}

.footer-center strong {
  display: block;
  margin-bottom: 4px;
}

.footer-center a {
  color: #add8e6;
}

.footer-right a {
  margin-left: 20px;
  color: #aaa;
  text-decoration: none;
}

.footer-right a:hover {
  color: #fff;
}

/* Page wrapper so footer sits below content without overlap */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000;
  color: #fff;
}

/* Header banner */
.site-header {
  width: 100%;
  background: #000;
}

.site-header .header-img {
  width: 100%;
  max-width: 100vw;
  height: 160px; /* banner height; adjust as you like */
  object-fit: cover; /* keeps the star field vibe */
  display: block;
}

/* Main content area */
.content {
  width: min(900px, 92vw);
  margin: 24px auto 32px;
  line-height: 1.6;
  font-size: 16px;
}

.content h1 {
  font-size: 28px;
  margin: 0 0 12px;
}

.content h2 {
  font-size: 20px;
  margin: 24px 0 8px;
}

.content p {
  margin: 0 0 12px;
  color: #ddd;
}

.content a {
  color: #acc8e8ff;
  text-decoration: none;
}
.content a:hover {
  text-decoration: underline;
}

.content address {
  font-style: normal;
  white-space: pre-line; /* preserves line breaks in addresses */
  color: #ddd;
}

@media (max-width: 768px) {
  .footer-right a {
    display: block; /* stack vertically */
    margin: 20px 0; /* top/bottom spacing */
  }
}
