/* Welcome page styling */

.welcome-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay for better text readability */
.welcome-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.message-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1.5s ease-in;
}

.message {
  font-family: 'Caveat', cursive;
  font-size: 4rem;
  font-weight: 400;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
  margin: 0;
}

.million {
  display: block;
  font-weight: 700;
  font-size: 4.5rem;
  margin-top: 0.5rem;
  color: #ffe6e6;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .message {
    font-size: 3.5rem;
  }

  .million {
    font-size: 4rem;
  }

  .message-wrapper {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .message {
    font-size: 3rem;
  }

  .million {
    font-size: 3.5rem;
  }
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reset body margins for full-screen effect */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
