@font-face {
  font-family: "FF8Font";
  src: url("FF8.ttf") format("truetype");
} /* https://github.com/rustyworks/my-programming-font/tree/master */

body {
  margin: 0;
  height: 100vh;
  background: url("bg.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: "Ubuntu", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.header-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 2vh;
  margin-bottom: 3vh;
}

.title-img {
  height: 25vw;
  max-height: 250px;
  min-height: 120px;
  display: block;
}

.menu-container {
  display: flex;
  flex-direction: column;
  width: 95%;
  max-width: 900px;
  padding-left: 5vw;
}

.nav-btn {
  display: flex;
  align-items: center;
  background-color: #c9b9ae;
  color: #1a1a1a;
  text-decoration: none;
  font-family: "Great Vibes", cursive;
  font-size: clamp(1rem, 3.5vw, 2.5rem);
  padding: 1vh 4vw;
  border-radius: 100px;
  border: 0.4vw solid #8d746a;
  margin-bottom: 1.5vh;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
  box-sizing: border-box;
  white-space: nowrap;
  min-width: max-content;
  position: relative;
  cursor: pointer;
}

.nav-btn:hover {
  background-color: #d6cac1;
}

.heart {
  margin-right: 2vw;
  position: relative;
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  background: url("heart.png") no-repeat center center;
  background-size: contain;
  transition: background 0.3s ease;
}

.nav-btn:hover .heart {
  background-image: url("hearthover.png");
  filter: drop-shadow(0 0 5px rgba(255, 105, 180, 0.5));
}

.new-btn {
  height: 3.5em;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.3));
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  pointer-events: none;
}

.window {
  pointer-events: auto;
  position: relative;
  margin: 0;
  padding: 1.5rem 1rem 1rem 1rem;
  width: 85%;
  max-width: 700px;
  height: 50vh;
  background: linear-gradient(
      90deg,
      rgba(68, 68, 68, 0.75),
      rgba(114, 114, 114, 0.75)
    )
    50%;
  border-style: groove ridge ridge groove;
  border-width: 4px;
  border-radius: 2px;
  border-color: #747474 #313131 #313131 #747474;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.window,
#frame {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.window::-webkit-scrollbar,
#frame::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

#frame {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  display: block;
}

.close-x {
  position: absolute;
  top: 8px;
  right: 15px;
  cursor: pointer;
  font-family: sans-serif;
  color: #ededed;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 10;
}

.btn-1 {
  width: fit-content;
  margin-left: 0%;
}
.btn-2 {
  width: fit-content;
  margin-left: 10%;
  padding-right: 10vw;
}
.btn-3 {
  width: fit-content;
  margin-left: 20%;
}
.btn-4 {
  width: fit-content;
  margin-left: 30%;
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 30vw;
  max-width: 300px;
}
.balamb-btn {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s;
}
.balamb-btn:hover {
  filter: brightness(1.2);
}
