/* ============================================================================
   WELCOME SECTION - Entry point with music
   ============================================================================ */

.section_welcome {
  z-index: 10000;
  background-color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.section_welcome.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-content {
  text-align: center;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome-logo {
  width: 120px;
  margin-bottom: 60px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.enter-button {
  border: 2px solid #e9e3b1;
  background-color: transparent;
  color: #e9e3b1;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 60px;
  font-family: Firacode, monospace;
  font-size: 18px;
  font-weight: 500;
  transition: all .3s;
  cursor: pointer;
}

.enter-button:hover {
  background-color: #e9e3b1;
  color: #000;
  box-shadow: 0 0 30px rgba(233, 227, 177, 0.5);
}

.enter-button:active {
  transform: scale(0.95);
}

.welcome-background {
  opacity: .22;
  background-image: url('../images/dot_square.svg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: 95px 95px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

