/* Oswald: SIL Open Font License, see assets/fonts/oswald-OFL.txt. */
@font-face {
  font-family: 'Oswald';
  src: url('assets/fonts/oswald-variable.ttf') format('truetype');
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --blue: #013976;
  --light-blue: #89b4e1;
  --text: #545454;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

a { color: var(--blue); }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }

.site-header {
  position: relative;
  z-index: 1;
  min-height: 55px;
  padding: 5px 24px 5px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 0 6px rgb(0 0 0 / 30%);
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { display: block; }
.brand-name { margin-left: 8px; font-size: 17.5px; line-height: 16px; }
.brand-small { display: block; margin-bottom: 3px; font-size: 10.5px; }
.header-note { color: var(--blue); text-transform: uppercase; font-size: 12px; }

.announcement {
  min-height: calc(100svh - 255px);
  padding: 36px 24px 40px;
  background: #f6f6f4 url('assets/whiteWoodTile.png') repeat;
  text-align: center;
}

.eyebrow { margin: 0 0 24px; color: var(--blue); text-transform: uppercase; font-size: 14px; }
.brand-pair { display: flex; justify-content: center; align-items: center; gap: 36px; margin-bottom: 26px; }
.brand-pair img { object-fit: contain; }
.joining-mark { color: var(--blue); font-size: 30px; }

h1 {
  display: table;
  max-width: 100%;
  margin: 0 auto 24px;
  border: 2px dashed var(--blue);
  padding: 15px 28px;
  color: var(--blue);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.intro { margin: 0 auto 12px; font-size: 17px; }
.description { max-width: 560px; margin: 0 auto 25px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 12px 28px;
  color: #fff;
  background: var(--blue);
  box-shadow: 2px 2px 6px rgb(0 0 0 / 50%);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  transition: background-color .2s, color .2s;
}
.button:hover { color: var(--blue); background: var(--light-blue); }
.button span { font-family: Arial, sans-serif; font-size: 24px; line-height: 1; }
.destination { margin: 14px 0 0; color: var(--blue); font-size: 12px; }

.regional-info { padding: 36px 24px 40px; border-top: 2px dashed var(--blue); }
.regional-content { max-width: 720px; margin: 0 auto; }
.regional-content h2 { margin: 0 0 18px; color: var(--blue); font-size: 24px; font-weight: normal; line-height: 1.35; text-transform: uppercase; }
.regional-content h3 { margin: 24px 0 8px; color: var(--blue); font-size: 18px; font-weight: normal; line-height: 1.4; }
.regional-content p { margin: 0 0 16px; }
.regional-link { display: inline-block; padding-block: 10px; text-underline-offset: 4px; }

.photo-strip {
  min-height: 140px;
  padding: 30px 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(rgb(16 16 16 / 55%), rgb(16 16 16 / 55%)),
    url('assets/backgroundOverlayPattern.png') repeat,
    url('assets/footerBackground.jpg') center / cover no-repeat;
}
.photo-strip p { margin: 0; padding: 12px 24px; border: 2px dashed #fff; color: #fff; text-align: center; text-transform: uppercase; font-size: 21px; }
.site-footer { min-height: 60px; padding: 18px 24px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 32px; font-size: 12px; text-align: center; }
.site-footer nav { display: flex; gap: 12px; }
.site-footer a { text-underline-offset: 3px; }
.site-footer a:hover { text-decoration: none; }

.brand-name, .button, .eyebrow, .header-note, .photo-strip p {
  font-weight: 600;
  letter-spacing: 0;
}
.regional-content h2, .regional-content h3 { font-weight: 600; }

@media (max-width: 540px) {
  .header-note { display: none; }
  .announcement { padding: 28px 18px 32px; }
  .eyebrow { font-size: 11px; }
  .brand-pair { gap: 22px; }
  .brand-pair img { width: 108px; height: 108px; }
  h1 { padding: 14px 10px; font-size: 24px; }
  .intro { font-size: 16px; }
  .desktop-break { display: none; }
  .photo-strip p { font-size: 17px; padding: 12px; }
  .site-footer { padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .button { transition: none; }
}
