/* ────────────────────────────────
   UXOne Splash Page Styling
──────────────────────────────── */
.splash-page-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  color: #fff;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}

.splash-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

.flex-caption {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.headline {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.subheadline {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-cta-button {
  background-color: #0074D9;
  border-radius: 6px;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-cta-button:hover {
  background-color: #005fa3;
}

/* ────────────────────────────────
   Responsive Adjustments
──────────────────────────────── */
@media (max-width: 768px) {
  .splash-page-wrapper {
    min-height: 100vh;
    padding: 2rem 1rem;
  }

  .headline {
    font-size: 2rem;
  }

  .subheadline {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .form-text,
  .form-select {
    max-width: 100%;
  }
}