*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-size: 1rem;
}
:root h1 {
  font-size: 2.75rem;
}
:root h2 {
  font-size: 1.5rem;
}
:root h3 {
  font-size: 0.875rem;
}
@media (min-width: 800px) {
  :root {
    font-size: 1.25rem;
  }
  :root h1 {
    font-size: 3.4375rem;
  }
  :root h2 {
    font-size: 1.65rem;
  }
  :root h3 {
    font-size: 1.09375rem;
  }
}
@media (min-width: 900px) {
  :root h1 {
    font-size: 4.125rem;
  }
  :root h2 {
    font-size: 1.875rem;
  }
}

/* base styles */
html {
  scroll-behavior: smooth; /* smooth scrolling */
}

body {
  background-color: #1d2131;
  color: #dddddd;
  margin: 0;
  font-family: "Aldrich", sans-serif;
  font-size: 1rem;
}

img {
  max-width: 100%;
  /* height: auto; */
}

strong {
  font-weight: 700;
}

a {
  color: #fcc200;
  text-underline-offset: 0.2rem;
  text-decoration-style: dotted;
  transition: 250ms;
}

a:hover {
  opacity: 0.7;
}

:focus {
  outline: 3px solid white;
  outline-offset: 3px;
}

p {
  line-height: 1.3;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* typography */
h1,
h2,
h3 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  color: #f0f0f0;
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 0.75rem;
}

h4 {
  color: #f0f0f0;
  opacity: 75%;
  font-size: 0.75rem;
  font-family: "Kode Mono", monospace;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

ul {
  margin: 0;
}

li {
  margin: 0.3rem 0;
}

/* layout */
.container {
  padding-top: 5rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* header */
.header {
  display: flex;
  justify-content: space-between;
}

/* navigation grill menu */
.nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #060302;
  color: #f0f0f0;
  transform: translateX(100%);
  transition: transform 250ms cubic-bezier(0.5, 0, 0.5, 1);
}

.nav--open {
  transform: translateX(0);
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
}

.nav__link {
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0.75rem 2.25rem;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 800px) {
  .nav__link {
    font-size: 1.875rem;
  }
}
.nav__link:hover {
  color: #fcc200;
}

/* navigation grill menu button */
.nav-btn {
  position: fixed;
  right: 1.25rem;
  top: 1.25rem;
  padding: 0.5rem;
  z-index: 1000;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}

.nav-btn--open {
  position: fixed;
}

.nav-btn--open .nav-btn__hamburger {
  transform: rotate(0.625turn);
}

.nav-btn--open .nav-btn__hamburger::before {
  transform: rotate(90deg) translateX(-6px);
}

.nav-btn--open .nav-btn__hamburger::after {
  opacity: 0;
}

.nav-btn__hamburger {
  display: block;
  position: relative;
}

.nav-btn__hamburger,
.nav-btn__hamburger::before,
.nav-btn__hamburger::after {
  width: 2rem;
  height: 3px;
  border-radius: 1rem;
  transition: transform 0.25s ease-in-out;
}

.nav-btn__hamburger::before,
.nav-btn__hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.nav-btn__hamburger::before {
  top: 6px;
}

.nav-btn__hamburger::after {
  bottom: 6px;
}

.nav-btn__hamburger,
.nav-btn__hamburger::before,
.nav-btn__hamburger::after {
  background-color: #dddddd;
}

/* intro */

.intro {
  width: 75%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.5rem;
  filter: drop-shadow(0 0 0.75rem crimson);
}

/* more than 600px -> switch to desktop view */
@media (min-width: 600px) {
  .intro {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    margin-top: 3.5rem;
  }
}

/* .intro::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: -160px;
  top: -320px;
  background-color: #00053b;
  border-radius: 50%;
  animation: intro__bubble 10s infinite ease-in-out;
}

@keyframes intro__bubble {
  0% {
    transform: translateX(-0.5rem) translateY(-0.5rem);
  }
  33% {
    transform: translateX(0.5rem) translateY(-0.5rem);
  }
  66% {
    transform: translateX(-0.5rem) translateY(0.5rem);
  }
  100% {
    transform: translateX(-0.5rem) translateY(-0.5rem);
  }
} */

/* what */
.what {
  margin: -5rem auto 0 auto;
  padding-bottom: 5.25rem;
  text-align: center;
  overflow: hidden;
  background-color: #060302;
  color: #f0f0f0;
}

/* section */
.section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: -2.5rem;
  font-family: "Aldrich", sans-serif;
  color: #f0f0f0;
}

.section__title::after {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  margin: 0.5em auto;
  background-color: #f0f0f0;
  opacity: 0.25;
}

.section__body {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 56.25rem;
  text-align: left;
  font-family: "Kode Mono", monospace;
}

@media (min-width: 900px) {
  .section__body {
    max-width: 70%;
    font-size: 1.1rem;

  }
}

/* where */
.where__image-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

@media (min-width: 900px) {
  .where__image-holder {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
}

.where__image-holder img {
  padding: 0.5rem;
  width: 75%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 1rem;
}


.where__image-single {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.where__image-single a {
  text-align: center;
}

.where__image-single a:hover {
  transform: scale(103%);
}

/* bubble text */
.bubble-text {
  display: none;
  position: absolute;
  top: 100%;
  left: 5%;
  width: 90%;
  font-size: 1.1rem;
  background: #dbd9c5;
  color: #060302;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

@media (min-width: 900px) {
  .bubble-text {
    left: 0;
    width: 100%;
  }
}

.bubble-text a {
  color: #bf4d47;
}
.where__image-single:hover .bubble-text {
  display: block;
}

/* lg-text-centered */
.lg-text-centered {
  text-align: center;
  font-family: "Aldrich", sans-serif;
  font-size: 2rem;
}

.lg-text-centered a {
  text-decoration: none;  
}

.lg-text-centered a:hover {
  opacity: 0.7;
}

/* sm-text-centerd */
.sm-text-centered {
  text-align: center;
  margin-top: 2rem;
}

.sm-text-centered a {
  text-decoration: none;
}

/* footer */
.footer {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  background-color: #060302;
  color: #fcc200;
}

@media (min-width: 800px) {
  .footer {
    font-size: 0.75rem;
  }
}
.footer__text {
  font-family: "Kode Mono", monospace;
  font-weight: 700;
  text-decoration: none;
  padding: 0.375rem 1rem;
}

.footer__icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.footer__link {
  text-decoration: none;
  padding: 0;
}

.footer__link:hover {
  opacity: 0.7;
}

/* highlighted text */
.highlighted {
  font-weight: 700;
  color: #bf4d47;
}

.highlighted--light {
  color: #fcc200;
}

a.highlighted {
  text-decoration-style: dotted;
}

a.highlighted--light:hover {
  color: #f0f0f0;
}

/* utilities */
.u-sr-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}