@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

@font-face {
  font-family: "Virgil";
  src: url("Virgil.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #232634;
  color: #d9e0ee;
  overflow-x: hidden;
  font-family: "Virgil", "Baloo Da 2", sans-serif;
}

h1 {
  color: #ffffff;
  text-shadow:
    0 1px 0px #1e9bff,
    1px 0 0px #1e9bff,
    1px 2px 1px #1e9bff,
    2px 1px 1px #1e9bff,
    2px 3px 2px #1e9bff,
    3px 2px 2px #1e9bff,
    3px 4px 2px #1e9bff,
    4px 3px 3px #1e9bff,
    4px 5px 3px #1e9bff,
    5px 4px 2px #1e9bff,
    5px 6px 2px #1e9bff,
    6px 5px 2px #1e9bff,
    6px 7px 1px #1e9bff,
    7px 6px 1px #1e9bff,
    7px 8px 0px #1e9bff,
    8px 7px 0px #1e9bff;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid rgba(137, 180, 250, 1);
  background: #1e2229;
  z-index: 3;
}

svg {
  height: 5rem;
  width: 5rem;
}

.navigation {
  display: flex;
  gap: 1.5rem;
}

.navigation li {
  list-style: none;
  display: inline-block;
}

a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  background: none;
  font-size: 1.3rem;
  padding: 0.4rem;
  text-transform: uppercase;
  border: 3px solid rgba(137, 180, 250, 1);
  transition: 0.3s;
}

a:hover {
  background: var(--clr);
  box-shadow: 0 0 35px var(--clr);
}

.toggler {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.dropdown {
  position: fixed;
  right: 2rem;
  top: 80px;
  right: 52px;
  width: unset;
  list-style: none;
  display: none;
  z-index: 4;
}

.close {
  display: none !important;
}

.dropdown li {
  padding: 1.2rem;
}

/* filthy mobile users */
@media (max-width: 992px) {
  .navigation {
    display: none;
  }

  .toggler {
    display: block;
  }

  .dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(137, 180, 250, 1);
    background: #1e2229;
  }
}

section {
  padding: 50px 10px;
  text-align: center;
}

.wishcard {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("images/cover.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  animation: animateBackground 10s linear infinite;
}

@keyframes animateBackground {
  0% {
    background-position: center center;
  }
  100% {
    background-position: center center;
  }
}

.wishcard-content {
  z-index: 1;
}

.wishcard-content h1 {
  font-size: 2.7em;
  margin-bottom: 20px;
  font-family: "JetBrains Mono", monospace;
}

.wishcard-content p {
  font-size: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

@media (max-width: 992px) {
  .wishcard-content h1 {
    font-size: 2.2em;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.tour {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
}

.sub-tour {
  max-width: 500px;
  min-height: 600px;
  padding: 20px;
  text-align: center;
  background: #1c1f2b;
  border-radius: 10px;
  z-index: 2;
  transition: 0.3s;
  flex-shrink: 1;
}

.sub-tour:hover {
  box-shadow: 5px 5px rgba(137, 180, 250, 1);
  border-radius: 20px;
}

.tour-title {
  font-size: 2.7em;
  font-family: "JetBrains Mono", monospace;
}

.sub-tour img {
  max-width: 300px;
  border-radius: 8px;
  padding: 15px;
}

.tour-paragraph {
  font-size: 20px;
}

@media (max-width: 992px) {
  .tour-title {
    font-size: 2.2em;
  }
}

.advice {
  background-color: #1e1e28;
  min-height: 50vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.subsector {
  opacity: 0;
  transform: translateY(50px);
}

.subsector img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  transition: 0.3s;
}

.subsector img:hover {
  box-shadow: 5px 5px rgba(137, 180, 250, 1);
  border-radius: 10px;
}

.subsector p {
  font-size: 20px;
  margin-top: 10px;
}

.album {
  text-align: center;
  z-index: 2;
}

.album h1 {
  font-family: "JetBrains Mono", monospace;
  font-size: 2.7em;
  margin: 50px 50px;
}

@media (max-width: 992px) {
  .album h1 {
    font-size: 2.2em;
  }
}

.album-pictures {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
}

.album img {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  flex-shrink: 1;
  transition: 0.3s;
}

.album img:hover {
  box-shadow: 5px 5px rgba(137, 180, 250, 1);
  border-radius: 20px;
}

.footer {
  background-color: #141421;
  padding: 10px;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}
