@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Righteous&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --contentW: 800px;
  --luftskip-indigo-dark-3: #04091B;
  --luftskip-indigo-dark-2: #091536;
  --luftskip-indigo-dark-1: #10234E;
  --luftskip-indigo: #193264;
  --luftskip-indigo-light-1: #53678A;
  --luftskip-indigo-light-2: #8B9BB2;
  --luftskip-indigo-light-3: #C7CED6;
  --sunlit-clay: #E4BA6F;
  --dust-gray: #DDDAD5;
  --dusty-taupe: #B09386;
}

/* Desktop nav */
.nav-container { display: block; }
.mobile-menu { visibility: hidden; }
.home-link { visibility: visible; z-index: 100; }
.mobile-home-link-container { visibility: hidden; }


/* Mobile nav */
@media (max-width: 900px) {
  .nav-container { display: none; }
  .mobile-menu { visibility: visible; }
  .home-link { visibility: hidden; }
  .mobile-home-link-container { visibility: visible; }
}

.hero-image {
  z-index: -1; position: relative;
}

.header-spacer {
  height: 130px;
}

.site-colors {
  background-color: #444;
  color: white;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  visibility: visible;
}

main {
  /* flex: 1, grows this element so footer stays at bottom even when there is little content. Related to body's flex and min-height @ 100vh.*/
  flex: 1;
}

.content {
  max-width: var(--contentW);
  padding: 0 40px;
  margin: 0 auto;
}

#mobile-menu-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--luftskip-indigo);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
}

#mobile-menu-button {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 0;
  border: 0;
  padding-inline: 0;
  cursor: pointer;
  background: 0;
}

#mobile-menu-button > svg {
  width: 40px;
  height: 40px;
  stroke: white;
  fill: white;
}

#mobile-menu-button.dark > svg {
  width: 40px;
  height: 40px;
  stroke: var(--luftskip-indigo-dark-1);
  fill: var(--luftskip-indigo-dark-1);
}

#mobile-menu-button > svg:hover {
  stroke: var(--sunlit-clay);
  fill: var(--sunlit-clay);
}

#mobile-menu-inner.show {
  opacity: 1;
  visibility: visible;
}

#mobile-menu-entries {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
}

#mobile-menu-home-button {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 10000;
  border: 0;
  padding-inline: 0;
  cursor: pointer;
  background: 0;
  width: 80px;
}

#mobile-menu-home-button > img {
  width: 100%;
}

#mobile-menu-close-button {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  border: 0;
  padding-inline: 0;
  cursor: pointer;
  background: 0;
}

#mobile-menu-close-button > svg {
  width: 40px;
  height: 40px;
  stroke: white;
  fill: white;
}

#mobile-menu-close-button > svg:hover {
  stroke: var(--sunlit-clay);
  fill: var(--sunlit-clay);
}

.home-link {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-block;
}

.home-link img {
  width: 80px;
}

.mobile-home-link-container {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 140px;
  height: 122px;
  display: inline-block;
  background-image: url('/res/img/LuftskipDotCom_Narrow_Header_BG_Shadow.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.more-container {
  position: relative;
}

#more-button {
  border: 0;
  padding-inline: 0;
  cursor: pointer;
  background: 0;
}

#more-menu {
  position: absolute;
  padding: 10px;
  top: 50px;
  left: -10px;
  width: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 4px;
  background: linear-gradient(179deg, rgba(1, 1, 1, 0) 5%, var(--luftskip-indigo-light-1) 9%);
}

#more-menu > * {
  display: block;
}

.nav-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background-image: url('/res/img/LuftskipDotCom_Wide_Header_BG_Shadow.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.nav-links {
  height: 90px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.nav-btn-style {
  font-family: 'Righteous';
  font-size: 24px;
  text-decoration: none;
  user-select: none;
  color: white;
}

.nav-btn-style:hover {
  color: var(--sunlit-clay);
}

.mobile-btn-style {
  font-family: 'Righteous';
  font-size: 24px;
  text-decoration: none;
  user-select: none;
  color: white;
}

.mobile-btn-style:hover {
  color: var(--sunlit-clay);
}

.chosen {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.btn-text {
  font-family: 'Righteous';
  font-size: 24px;
  user-select: none;
  color: white;
}

.lang-container {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
}

#globe-button {
  border: 0;
  padding-inline: 0;
  cursor: pointer;
  background: 0;
}

#globe-button > svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

#globe-button > svg:hover {
  stroke: var(--sunlit-clay);
}

#lang-menu {
  position: absolute;
  top: 50px;
  padding: 10px;
  left: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: linear-gradient(179deg, rgba(1, 1, 1, 0) 7%, var(--luftskip-indigo-light-1) 11%);
}

#lang-menu > * {
  display: block;
}

.head1 {
  margin: 0;
  margin-bottom: 24px;
  font-family: 'Righteous';
  font-size: 24px;
}

.head2 {
  margin: 0;
  margin-bottom: 24px;
  font-family: 'Righteous';
  font-size: 20px;
}

.head3 {
  margin: 0;
  margin-bottom: 24px;
  font-family: 'Righteous';
  font-size: 16px;
}

.norm-text {
  margin: 0;
  margin-bottom: 24px;
  font-family: 'Bitter';
  font-size: 16px;
  line-height: 1.6;
}

.center {
  text-align: center;
}

footer {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: row;
  height: 120px;
  align-items: center;
  background: var(--luftskip-indigo-dark-3);
}

.footer-links {
  padding-left: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  column-gap: 20px;
  row-gap: 5px;
}

@media (max-width: 500px) {
  .footer-links {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
    column-gap: 20px;
    row-gap: 10px;
  }
}

.footer-link {
  font-family: 'Bitter';
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--sunlit-clay);
}