/* =========================
   Welcome Page Styles
   Light, airy welcome screen
   ========================= */

/* Prevent scrolling on welcome page */
.welcomeBody {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Full-screen container */
.welcomeScreen {
  height: 100vh;
  height: 100svh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 600px at 50% 6%, #453562 0%, #2d2340 48%, #1a1424 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}

/* Content container (phone-style) */
.welcomeContainer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content block */
.welcomeContent {
  text-align: center;
  width: 100%;
}

/* Logo above title */
.welcomeLogo {
  height: 40px;
  width: auto;
  margin-bottom: 5px;
  opacity: 0.95;
}

/* Title */
.welcomeTitle {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #FDFBFF;
  line-height: 1.15;
  margin: 0 0 15px 0;
  letter-spacing: -1px;
}

/* Subtitle */
.welcomeSubtitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #D1C4E0;
  margin: 0 0 60px 0;
  line-height: 1.4;
}

/* Start button */
.welcomeStartBtn {
  width: 200px;
  height: 54px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 27px;
  background: #C3A0EB;
  color: #2A1F3A;
  border: none;
  box-shadow: 0 8px 20px rgba(195, 160, 235, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.welcomeStartBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(195, 160, 235, 0.35);
  background: #CFA9F0;
}

.welcomeStartBtn:active {
  transform: translateY(0);
}

/* Illustration wrapper at bottom */
.welcomeIllustration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: 42vh;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Decorative SVG illustration */
.welcomeArt {
  width: 100%;
  height: auto;
  max-height: 42vh;
  object-fit: contain;
  object-position: bottom center;
  opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 450px) {
  .welcomeScreen {
    padding-top: 8vh;
  }
  
  .welcomeLogo {
    height: 36px;
    margin-bottom: 8px;
  }
  
  .welcomeTitle {
    font-size: 42px;
  }
  
  .welcomeSubtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .welcomeStartBtn {
    width: 190px;
    height: 52px;
    font-size: 17px;
  }
  
  .welcomeContainer {
    padding: 0 24px;
  }
}

@media (max-height: 700px) {
  .welcomeScreen {
    padding-top: 6vh;
  }
  
  .welcomeLogo {
    height: 32px;
    margin-bottom: 6px;
  }
  
  .welcomeTitle {
    font-size: 36px;
    margin-bottom: 6px;
  }
  
  .welcomeSubtitle {
    font-size: 15px;
    margin-bottom: 14px;
  }
  
  .welcomeStartBtn {
    width: 180px;
    height: 50px;
    font-size: 17px;
  }
  
  .welcomeIllustration {
    max-height: 36vh;
  }
  
  .welcomeArt {
    max-height: 36vh;
  }
}

@media (min-height: 800px) {
  .welcomeScreen {
    padding-top: 12vh;
  }
  
  .welcomeLogo {
    height: 44px;
    margin-bottom: 12px;
  }
  
  .welcomeTitle {
    font-size: 54px;
  }
  
  .welcomeSubtitle {
    font-size: 18px;
    margin-bottom: 22px;
  }
  
  .welcomeStartBtn {
    height: 58px;
    width: 220px;
    font-size: 19px;
  }
  
  .welcomeIllustration {
    max-height: 46vh;
  }
  
  .welcomeArt {
    max-height: 46vh;
  }
}
