/* Make the page full height and place a full-window background image */
html, body {
  height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #fff;
}

/* Background image container */
.bg {
  position: fixed;
  inset: 0;
  /* path is relative to this CSS file (assets/), so point to images/ */
  background-image: url('images/Design_1.png');
  background-size: cover;
  /* keep the top of the image visible instead of cropping from the top */
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -2;
  filter: saturate(1.05);
}

/* Dark gradient overlay to ensure bottom-half text legibility */
.overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.0) 85%);
  pointer-events: none;
}

/* Content area pinned to the bottom of the viewport/background image */
.site-wrapper {
  min-height: 100%;
  display: flex;
  align-items: flex-end; /* align at bottom */
  justify-content: center;
  /* Removed top vertical padding and use a small bottom padding so the
     content sits at the bottom edge of the background image/viewport. */
  padding: 0 20px 40px;
  box-sizing: border-box;
}

.content {
  max-width: 720px;
  width: 100%;
  /* center the panel horizontally and offset 5px to the left */
  margin: 0 auto;
  transform: translateX(-5px);
  background: rgba(0,0,0,0.18); /* subtle panel to aid contrast */
  padding: 28px 32px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  color: #eaf6ff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
  /* removed backdrop-filter to keep the background image sharp (no blur) */
  will-change: transform;
}

h1 { margin: 0 0 6px 0; font-size: 2rem; letter-spacing: -0.02em; }
p { margin: 0 0 12px 0; line-height: 1.45; color: #e1f4ff; }
a { color: #bfe9ff; text-decoration: underline; }

/* Smaller screens: reduce padding and font sizes */
@media (max-width: 480px) {
  .content { padding: 20px; border-radius: 8px; transform: none; }
  h1 { font-size: 1.5rem; }
}
