html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #f9fafd;
  font-family: "Poppins", sans-serif !important;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

/* Overlay box */
.hero-overlay {
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-overlay h1 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
}

.hero-overlay p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #474747;
}

/* Form */
.email-form .form-label {
  font-weight: 500;
}
.email-form .form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-shadow: none;
}

/* Fancy button */
.explore-button {
  position: relative;
  padding: 15px 40px;
  border: 2px solid #000;
  color: #000;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.explore-button:hover {
  background-color: #000;
  color: #fff;
}
.explore-button:active {
  transform: scale(0.96);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-overlay {
    padding: 20px;
  }
  .hero-overlay h1 {
    font-size: 24px;
  }
  .hero-overlay p {
    font-size: 14px;
  }
}
