/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

/* Background */
.hero {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Glassmorphic Box */
.welcome-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  animation: fadeIn 1s ease-in-out forwards;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Heading */
h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

/* Paragraph */
p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.85;
}

/* Button */
.button {
  text-decoration: none;
  background: #fff;
  color: #1f1c2c;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* Fade-in Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
