* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  font-weight: 300;
  text-align: center;
}

.bg {
  background: #121212;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.help-map {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  z-index: 1;
}
.help-map .social-bubbles {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 3;
}
.help-map .social-bubbles .bubble {
  width: 58px;
  height: 58px;
  background-color: #1e1e1e;
  border: 2px solid #f77a3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.help-map .social-bubbles .bubble img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.help-map .social-bubbles .bubble:hover {
  transform: scale(1.1);
}
.help-map iframe {
  width: 100%;
  height: 40%;
  border: none;
  order: 2;
  flex: 1;
  filter: invert(90%) hue-rotate(180deg); /* Dark mode approximation */
}
.help-map .ContactInfo {
  order: 1;
  position: static;
}

.insta {
  margin-right: 25vw;
  margin-top: 2vh;
}

.tiktok {
  margin-top: 2vh;
}

.window-help.active .help-map {
  display: block;
}

.window-help.minimized .help-map {
  display: none;
}

.hiddenText {
  opacity: 0;
  width: 0;
  height: 0;
  z-index: 0;
  position: absolute;
}

.aboutUsText {
  width: 100%;
}

.ContactInfo {
  position: static;
  background-color: #171717;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(247, 122, 60, 0.3);
  color: #f77a3c;
  font-family: inherit;
  text-align: left;
  width: -moz-max-content;
  width: max-content;
  max-width: 90%;
  margin: 0 auto; /* centers horizontally */
  margin-bottom: 2%;
  z-index: 2;
  order: 1;
}
.ContactInfo h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #f77a3c;
  border-bottom: 1px solid #f77a3c;
  padding-bottom: 0.3rem;
}
.ContactInfo p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.4rem 0;
  color: #f77a3c;
}
@media (max-width: 768px) {
  .ContactInfo {
    padding: 1rem;
  }
  .ContactInfo h1 {
    font-size: 1.3rem;
  }
  .ContactInfo p {
    font-size: 0.9rem;
  }
}

.ContactNote {
  position: static;
  background-color: #171717;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(247, 122, 60, 0.3);
  color: #f77a3c;
  font-family: inherit;
  text-align: left;
  width: -moz-max-content;
  width: max-content;
  max-width: 90%;
  margin: 0 auto; /* centers horizontally */
  margin-bottom: 1%;
  z-index: 2;
  order: 1;
}
.ContactNote p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.4rem 0;
  color: #f77a3c;
}
@media (max-width: 768px) {
  .ContactNote {
    padding: 1rem;
  }
  .ContactNote p {
    font-size: 0.9rem;
  }
}

.window-mail,
.window-about,
.window-help,
.window-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 60%;
  transform: translate(-50%, -50%);
  background-color: #171717;
  color: #f77a3c;
  border-radius: 4px;
  z-index: 5;
  box-shadow: 0px 0px 19px 10px rgba(247, 122, 60, 0.75);
  overflow: hidden;
  transition: top 0.7s ease, left 0.7s ease, width 0.7s ease, height 0.7s ease, transform 0.7s ease, opacity 0.5s ease;
  will-change: transform, top, left, width, height;
  /*  &.window-about.moving { top: 95vh; left: 20%; }
    &.window-menu.moving  { top: 95vh; left: 40%; }
    &.window-mail.moving  { top: 95vh; left: 60%; }
    &.window-help.moving  { top: 95vh; left: 80%; }*/
}
.window-mail.active ~ .minimized,
.window-about.active ~ .minimized,
.window-help.active ~ .minimized,
.window-menu.active ~ .minimized {
  display: none;
}
.window-mail.growing,
.window-about.growing,
.window-help.growing,
.window-menu.growing {
  top: 50%;
  left: 50%;
  width: 80%;
  height: 60%;
  transform: translate(-50%, -50%);
}
.window-mail.shrinking,
.window-about.shrinking,
.window-help.shrinking,
.window-menu.shrinking {
  width: 10vw;
  height: 5vh;
  transform: translate(-50%, -30px);
}
.window-mail.animating > *,
.window-about.animating > *,
.window-help.animating > *,
.window-menu.animating > * {
  display: none;
}
.window-mail:not(.minimized) > *,
.window-about:not(.minimized) > *,
.window-help:not(.minimized) > *,
.window-menu:not(.minimized) > * {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.window-mail.active > *,
.window-about.active > *,
.window-help.active > *,
.window-menu.active > * {
  opacity: 1;
}
.window-mail .window-controls,
.window-about .window-controls,
.window-help .window-controls,
.window-menu .window-controls {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  height: 100%;
  width: 100%;
}
.window-mail .window-controls .maximize,
.window-about .window-controls .maximize,
.window-help .window-controls .maximize,
.window-menu .window-controls .maximize {
  background-color: #171717;
  position: absolute;
  top: 0;
  opacity: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 30px;
  color: #f77a3c;
  cursor: pointer;
  transition: opacity 0.3s 0.5s, top 0s 0.8s;
}
.window-mail .window-controls .maximize::before,
.window-about .window-controls .maximize::before,
.window-help .window-controls .maximize::before,
.window-menu .window-controls .maximize::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: auto;
}
.window-mail .window-controls .minimize,
.window-about .window-controls .minimize,
.window-help .window-controls .minimize,
.window-menu .window-controls .minimize {
  float: left;
  position: relative;
  opacity: 0.8;
  cursor: pointer;
  z-index: 7;
  padding: 0 10px;
  height: 30px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f77a3c;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.window-mail .window-controls .minimize:hover, .window-mail .window-controls .minimize:active,
.window-about .window-controls .minimize:hover,
.window-about .window-controls .minimize:active,
.window-help .window-controls .minimize:hover,
.window-help .window-controls .minimize:active,
.window-menu .window-controls .minimize:hover,
.window-menu .window-controls .minimize:active {
  opacity: 1;
}
.window-mail.active .window-controls .maximize,
.window-about.active .window-controls .maximize,
.window-help.active .window-controls .maximize,
.window-menu.active .window-controls .maximize {
  pointer-events: none;
}

.window-about.moving {
  top: 95vh;
  left: 20%;
}

.window-menu.moving {
  top: 95vh;
  left: 40%;
}

.window-mail.moving {
  top: 95vh;
  left: 60%;
}

.window-help.moving {
  top: 95vh;
  left: 80%;
}

.window-mail.moving,
.window-about.moving,
.window-help.moving,
.window-menu.moving {
  top: 95vh;
  width: 10vw;
  height: 5vh;
  transform: translate(-50%, -30px);
}

.window-about.moving {
  left: 20%;
}

.window-menu.moving {
  left: 40%;
}

.window-mail.moving {
  left: 60%;
}

.window-help.moving {
  left: 80%;
}

/*.window-mail,
.window-about,
.window-help,
.window-menu {
  transition:
    top 0.7s ease,
    left 0.7s ease,
    width 0.7s ease,
    height 0.7s ease,
    transform 0.7s ease,
    opacity 0.5s ease;
}*/
.window-mail.animating,
.window-about.animating,
.window-help.animating,
.window-menu.animating {
  z-index: 10;
}

.window-mail.animating > *,
.window-about.animating > *,
.window-help.animating > *,
.window-menu.animating > * {
  display: none;
}

.window-mail:not(.minimized) > *,
.window-about:not(.minimized) > *,
.window-help:not(.minimized) > *,
.window-menu:not(.minimized) > * {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.window-mail.active > *,
.window-about.active > *,
.window-help.active > *,
.window-menu.active > * {
  opacity: 1;
}

.window-mail.growing,
.window-about.growing,
.window-help.growing,
.window-menu.growing {
  top: 50%;
  left: 50%;
  width: 80%;
  height: 60%;
  transform: translate(-50%, -50%);
}

.window-menu.active .minimize,
.window-about.active .minimize,
.window-mail.active .minimize,
.window-help.active .minimize {
  top: 10px;
  left: 10px;
  transform: none;
  font-size: 0;
  width: 30px;
  height: 30px;
  padding: 0;
}

.window-menu.active .minimize::after,
.window-about.active .minimize::after,
.window-mail.active .minimize::after,
.window-help.active .minimize::after {
  content: "";
  display: inline-block;
  border: solid #f77a3c;
  border-width: 0 6px 6px 0;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 5px;
}

.minimized {
  top: 95vh;
  transform: translate(-50%, -30px);
  width: 10vw;
  height: 5vh;
  opacity: 0.6;
  text-align: center;
  cursor: pointer;
}
.minimized.window-about {
  left: 20%;
}
.minimized.window-menu {
  left: 40%;
}
.minimized.window-mail {
  left: 60%;
}
.minimized.window-help {
  left: 80%;
}
.minimized:hover {
  opacity: 0.75;
}
.minimized .minimize {
  padding: 0 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  font-size: 0.9rem;
  min-width: 60px;
  text-align: center;
  pointer-events: none;
}

.FrontLogo {
  top: 13%;
  left: 10%;
  height: auto;
  width: 80%;
  position: absolute;
  z-index: 5;
  transition: opacity 2s ease;
  opacity: 1;
}

.FrontLogoHide {
  transition: opacity 0.4s ease;
  opacity: 0;
}

.aboutContent, .mailContent, .helpContent {
  text-align: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.window-menu.active {
  width: 30vw;
  height: auto;
  top: 4vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.window-menu .menuContent {
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: none;
}

.window-menu.active .menuContent {
  display: block;
}

.menu-wrapper {
  position: relative;
}

.menu-hotspot {
  position: absolute;
  width: 100%;
  height: 10%;
  z-index: 10;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0);
}

#hotspot1 {
  top: 16%;
  left: 0%;
}

#hotspot2 {
  top: 26%;
  left: 0%;
}

#hotspot3 {
  top: 37%;
  left: 0%;
}

#hotspot4 {
  top: 47%;
  left: 0%;
}

#hotspot5 {
  top: 58%;
  left: 0%;
}

#hotspot6 {
  top: 68%;
  left: 0%;
}

#hotspot7 {
  top: 79%;
  left: 0%;
}

#hotspot8 {
  top: 90%;
  left: 0%;
}

.menu-viewer {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  background-color: #121212;
  cursor: pointer;
  display: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.menuContentPages {
  width: 100%;
  height: 100%;
  position: relative;
}
.menuContentPages .menu-page {
  display: none;
  width: 100%;
  height: auto;
  position: relative;
}
.menuContentPages .menu-page.active-page {
  display: block;
}
.menuContentPages .menu-page .menuContent {
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.menuContentPages .menu-page .menu-prev-arrow,
.menuContentPages .menu-page .menu-next-arrow {
  position: absolute;
  top: 24px;
  right: 10px;
  font-size: 24px;
  color: #f77a3c;
  cursor: pointer;
  z-index: 11;
}

.menu-page-2 {
  position: relative;
}

.about-page {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.about-page.active-page {
  display: flex;
}

.about-page img {
  max-width: 20%;
  height: auto;
  margin-bottom: 1rem;
}

.about-page p {
  color: #f77a3c;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-page button {
  z-index: 8;
  background: #f77a3c;
  color: #121212;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
}

#about-page-1 {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#about-page-1 .image-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

#about-page-1 .image-row img {
  max-width: 20%;
  height: auto;
}

.mailForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px auto;
  width: 60%;
}

.mailForm input,
.mailForm button,
.styled-textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.mailForm input {
  background-color: #1e1e1e;
  color: #f77a3c;
}

.mailForm .styled-textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  background-color: #1e1e1e;
  color: #f77a3c;
  font-family: inherit;
  font-size: 16px;
  resize: none;
}

.mailForm button {
  background-color: #f77a3c;
  color: #121212;
  cursor: pointer;
  font-weight: bold;
}

.mailForm button:hover {
  background-color: #ffa76c;
}

.mailForm-wrapper {
  width: 70%;
  margin-left: 13%;
}

.window-menu.minimized .menu-next-arrow,
.window-menu.minimized .menu-prev-arrow {
  display: none !important;
}

@media only screen and (max-width: 900px), only screen and (max-width: 600px) {
  .window-menu.active,
  .window-mail.active,
  .window-about.active,
  .window-help.active {
    width: 95vw;
    height: 74vh;
    top: 13vh;
    left: 50%;
    transform: translateX(-50%);
  }
  .FrontLogo {
    width: 90%;
    left: 5%;
  }
  .help-map {
    width: 100%;
    height: 100%;
    top: 6%;
    left: 0;
  }
  .help-map .ContactInfo {
    order: 2;
    width: 100%;
  }
  .help-map iframe {
    order: 1;
  }
  .ContactInfo {
    top: 70%;
    left: 20%;
  }
  .mailForm-wrapper {
    width: 100%;
    margin-left: 0;
  }
  .minimized {
    top: 85vh;
    width: 17vw;
  }
  #about-page-1 .image-row img {
    max-width: 40%;
    height: auto;
  }
  .window-menu.active {
    height: 70vh;
    top: 14vh;
  }
  .window-menu.active:not(.page-2-open) {
    top: 2%;
    height: auto;
    width: 80%;
  }
  .window-menu.active.page-2-open {
    height: auto;
  }
  .insta {
    margin-right: 2vw;
  }
  .tiktok {
    margin-right: 2vw;
    margin-top: 3vh;
  }
}
@media only screen and (max-width: 768px) {
  .window-menu.active,
  .window-mail.active,
  .window-about.active,
  .window-help.active {
    width: 95vw;
    height: 74vh;
    top: 13vh;
    left: 50%;
    transform: translateX(-50%);
  }
  .FrontLogo {
    width: 90%;
    left: 5%;
  }
  .help-map {
    width: 100%;
    height: 100%;
    top: 6%;
    left: 0;
  }
  .help-map .ContactInfo {
    order: 2;
    width: 100%;
  }
  .help-map iframe {
    order: 1;
  }
  .ContactInfo {
    top: 70%;
    left: 20%;
  }
  .mailForm-wrapper {
    width: 100%;
    margin-left: 0;
  }
  .minimized {
    top: 85vh;
    width: 17vw;
  }
  #about-page-1 .image-row img {
    max-width: 40%;
    height: auto;
  }
  .window-menu.active {
    width: 60%;
    height: 70vh;
    top: 14vh;
  }
  .window-menu.active:not(.page-2-open) {
    top: 2%;
    width: 80%;
    height: auto;
  }
  .window-menu.active.page-2-open {
    max-width: 90%;
    height: auto;
  }
  .tiktok {
    margin-right: 0;
    margin-top: 2vh;
  }
  .insta {
    margin-right: 0;
  }
}
@media only screen and (min-width: 650px) and (max-width: 1024px) {
  .window-menu.active:not(.page-2-open) {
    top: 2%;
    width: 72%;
    height: auto;
  }
  .tiktok {
    margin-top: 0vh;
  }
}
@media only screen and (max-width: 1500px) {
  .window-mail.active {
    height: 70%;
  }
  .ContactInfo {
    margin-bottom: 0.5%;
  }
  .tiktok {
    margin-top: 4vh;
  }
}
@media only screen and (max-width: 400px) {
  .window-menu.active:not(.page-2-open) {
    top: 15%;
    width: 98%;
    height: auto;
  }
  .window-menu.active.page-2-open {
    top: 25%;
    width: 98%;
  }
  .help-map .social-bubbles .bubble {
    width: 48px;
    height: 48px;
  }
  .tiktok {
    margin-top: 5vh;
  }
  .window-mail.active {
    top: 10vh;
    height: 81vh;
  }
}
@media only screen and (max-height: 770px) {
  .window-menu.active:not(.page-2-open) {
    top: 4%;
    height: auto;
  }
  .window-menu.active.page-2-open {
    top: 20%;
    height: auto;
  }
  .window-menu.active,
  .window-mail.active,
  .window-about.active,
  .window-help.active {
    height: 90vh;
    top: 5vh;
  }
  .help-map {
    height: 60%;
    top: 3%;
  }
  .social-bubbles {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 0.5rem;
  }
  .social-bubbles .bubble {
    width: 28px;
    height: 28px;
    border-width: 1px;
  }
  .social-bubbles .bubble img {
    width: 60%;
    height: 60%;
  }
  .help-map {
    width: 100%;
    height: 100%;
    top: 4%;
    left: 0;
  }
  .help-map .ContactInfo {
    order: 2;
    width: 100%;
    margin-bottom: 25%;
  }
  .help-map iframe {
    order: 1;
    height: 35%;
  }
  .tiktok {
    margin-top: 23px;
  }
  .insta {
    margin-top: 10px;
  }
}
/* Hide all window content when minimized */
.minimized .aboutContent,
.minimized .mailContent,
.minimized .helpContent,
.minimized .menuContent,
.minimized .menu-viewer,
.minimized .about-page,
.minimized img,
.minimized p,
.minimized button {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.window-mail.active .window-controls .maximize,
.window-about.active .window-controls .maximize,
.window-help.active .window-controls .maximize,
.window-menu.active .window-controls .maximize {
  pointer-events: none;
  z-index: 1;
  display: none;
}

.maximize-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.maximize-wrapper .maximize {
  background-color: transparent;
  color: #f77a3c;
  cursor: pointer;
  font-size: 0.9rem;
}

.window-mail.active .maximize-wrapper,
.window-about.active .maximize-wrapper,
.window-help.active .maximize-wrapper,
.window-menu.active .maximize-wrapper {
  display: none;
}

.window-mail.active .window-controls,
.window-about.active .window-controls,
.window-help.active .window-controls,
.window-menu.active .window-controls {
  pointer-events: none;
}

.window-mail.active .window-controls .minimize,
.window-about.active .window-controls .minimize,
.window-help.active .window-controls .minimize,
.window-menu.active .window-controls .minimize {
  pointer-events: auto;
}/*# sourceMappingURL=style.css.map */