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

/* Full viewport hero container */
.hero-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000; /* fallback */
}

/* Hero image fills container */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps entire image visible without distortion */
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Text overlay container */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 600px;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* Headings and button styling */
.overlay-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.overlay-text p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Button */
.overlay-text button {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  background-color: #FFC800;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.overlay-text button:hover {
  background-color: #e0b700;
}

/* Footer styling */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  font-size: 0.9rem;
  color: #bbb;
  background: rgba(0,0,0,0.5);
  user-select: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .overlay-text h1 {
    font-size: 2.2rem;
  }
  .overlay-text p {
    font-size: 1rem;
  }
  .overlay-text button {
    padding: 12px 32px;
    font-size: 1rem;
  }
}

