/* =========================
   Base / Reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: #f5f5f5;
  background: #0b0b0b;
  font-family:
    system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
}

/* Visually hidden (accessible) */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* =========================
   Layout
========================= */
.landing {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  /* ensures overlay stacking stays clean */
}

/* Background image container */
.bg {
  position: absolute;
  inset: 0;
  background-image: url("images/cityscape.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
  transform: scale(1.02);
  z-index: 0;
}

/* Dark overlay */
.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06), transparent 45%),
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.95));
  z-index: 1;
}

/* Centered content */
.content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  /* padding: clamp(24px, 4vw, 48px); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: clamp(10px, 1.2vw, 16px);
  text-align: center;
}

/* =========================
   Logo
========================= */
.logo {
  width: min(78vw, 600px);
  max-width: 600px;
  height: auto;
  object-fit: contain;
  margin-bottom: clamp(6px, 1vw, 10px);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

/* =========================
   Text
========================= */
.tagline {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.2px;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.date-line {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: clamp(16px, 1.45vw, 20px);
  margin: 0 0 clamp(14px, 2vw, 18px) 0;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.date-line .sep {
  display: inline-block;
  margin: 0 10px;
  opacity: 0.85;
}

/* =========================
   CTA Button
========================= */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  background: #e11d2e;
  /* rich red */
  color: #ffffff;

  padding: clamp(12px, 1.1vw, 14px) clamp(18px, 2.2vw, 28px);
  border-radius: 2px;

  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: clamp(14px, 1.1vw, 16px);

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cta:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

/* =========================
   Legal line
========================= */
.legal {
  margin-top: clamp(14px, 2vw, 18px);
  font-size: clamp(12px, 1vw, 13px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal a:hover {
  color: #ffffff;
}

/* =========================
   Responsive tweaks
========================= */
@media (max-width: 520px) {
  .date-line .sep {
    margin: 0 6px;
  }
}

/* If you ever want the date/time to stack on tiny screens */
@media (max-width: 380px) {
  .date-line span {
    display: block;
  }

  .date-line .sep {
    display: none;
  }
}