/* Hero Section Styling */
:root {
  --secondary-color: #c50000;
  --primary-color: #2e3192;
}
.hero-section {
  border-top: 2px solid var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: linear-gradient(
      to right,
      rgb(46, 49, 146),
      rgba(46, 49, 146, 0.5) 25%,
      rgba(0, 0, 0, 0) 50%
    ),
    url("../images/home-2.jpg"); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  height: 80vh;
  padding: 50px;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 40%;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 30px;
  margin-bottom: 30px;
  max-width: 50%;
}

.book-now-btn {
  display: block;
  text-decoration: none;
  border: none;
  margin-top: 2.5rem;
  padding: 10px 25px;
  background-color: white;
  color: var(--secondary-color);
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 10px;
  font-size: 18px;
  width: 100%;
  max-width: 18rem;
  border: 1px solid black;
  box-shadow: 1px black;
}

.report-form {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  gap: 1rem;
}
.single-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.single-field label {
  font-size: 16px;
  font-weight: 600;
  color: black;
}
.form-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: rgb(240, 240, 240);
  padding-left: 1rem;
}

.get-reports-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  margin-block: 1.5rem;
}
.mobile-report,
.mobile-report-section .lwp_forms_login {
  display: none;
}
@media (max-width: 1050px) {
  .hero-content p {
    max-width: 100%;
  }
  .hero-section {
    height: 50vh;
  }
}
@media (max-width: 750px) {
  .report-form,
  .hero-section .lwp_forms_login {
    display: none;
  }
  .hero-content p {
    font-size: 12px;
    margin-bottom: 15px;
    max-width: 75%;
  }
  .hero-content h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .book-now-btn {
    margin-top: 1.5rem;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 15px;
    width: max-content;
  }
  .hero-section {
    height: 30vh;
    padding: 1rem;
  }
  .mobile-report-section {
    padding: 1rem;
  }
  .mobile-report,
  .mobile-report-section .lwp_forms_login {
    display: block;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid rgba(197, 197, 197, 0.493);
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
}
