* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: "Poppins", sans-serif;
  color: white;
}

.hero {
  background: url("/assets/bg.jpg") center/cover no-repeat; /* path to your image */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Dark transparent overlay */
.overlay {
  background: rgba(0, 0, 0, 0.55); /* semi-transparent black */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.welcome-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 2em 3em;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  animation: fadeIn 1.5s ease-in;
}

.welcome-box h1 {
  font-size: 2.2rem;
  font-weight: 600;
}

.welcome-box span {
  color: #ffde59;
}

.welcome-box p {
  margin-top: 0.8em;
  font-size: 1.1rem;
}

.buttons {
  margin-top: 1.5em;
}

button {
  margin: 0.5em;
  padding: 0.8em 1.6em;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:first-child {
  background: #0073e6;
  color: white;
}

button:last-child {
  background: #ff6b35;
  color: white;
}

button:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
