:root {
  color-scheme: dark;
  --background: #192b32;
  --background-overlay: rgb(25 43 50 / 87%);
  --gold: #c5a77b;
  --text: #ece3d9;
}

* {
  box-sizing: border-box;
}

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

p { font-family: 'Kameron', sans-serif; font-weight: 400; }
a { font-family: "Hedvig Letters Serif", serif; font-weight: 700; }

body {
  background: var(--background);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  text-size-adjust: 100%;
}

main {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.landing-card {
  width: min(100%, 640px);
  margin: 0 auto;
  padding: clamp(64px, 12vh, 110px) 20px;
  background:
    linear-gradient(var(--background-overlay), var(--background-overlay)),
    url("/media/watermark.png") 50% 60px / 80% auto no-repeat;
  text-align: center;
}

.destinations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.destinations a {
  color: var(--gold);
  font-size: clamp(1.8rem, 7vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.destinations a:hover,
.destinations a:focus-visible {
  color: var(--text);
}

.destinations a:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 6px;
}

.wordmark {
  display: block;
  width: 180px;
  max-width: 55%;
  height: auto;
  margin: clamp(70px, 12vh, 100px) auto 20px;
  opacity: 0.7;
}

.addresses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.45em;
  margin: 0;
  color: #ddd;
  font-size: 0.72rem;
  line-height: 1.5;
}

.addresses span + span::before {
  content: "| ";
}

@media (max-width: 500px) {
  .landing-card {
    background-position-y: 42px;
    background-size: 94% auto;
  }

  .addresses {
    display: block;
  }

  .addresses span {
    display: block;
  }

  .addresses span + span::before {
    content: "";
  }
}
