/* General body and html */
body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Background image for header */
.bgimg {
  background-position: center;
  background-size: cover;
  background-image: url(images/home-bg-slider-img2.jpg);
  min-height: 75vh;
  position: relative;
}

/* Header text styling */
.header-text {
  color: white;
  text-align: center;
  font-weight: 700;
}

.header-line1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.header-line2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  display: block;
}

/* Button container spacing */
.header-button {
  margin-top: 30px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact section as footer */
#contact {
  background-color: rgba(118, 64, 156, 0.822); /* transparent purple */
  color: #eee;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  background-image: url(images/newsletter-bg.jpg);
}

/* Footer content container */
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Footer heading */
#contact h4 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Footer paragraph */
#contact p {
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Input row: flex container for inputs side by side */
.input-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Each input group */
.input-group {
  flex: 1 1 45%;
  min-width: 200px;
  text-align: left;
}

/* Labels */
.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #eee;
  font-size: 1rem;
}

/* Inputs styled as lines (underline style) */
.input-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 8px 4px;
  font-size: 1rem;
  color: #eee;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-group input::placeholder {
  color: #bbb;
}

.input-group input:focus {
  border-bottom-color: #dda0dd; /* light purple on focus */
}

/* Login button */
.login-btn {
  margin-top: 30px;
  width: 100%;
  max-width: 600px;
  background-color: #4b0082; /* dark purple */
  color: #eee;
  font-size: 1.2rem;
  padding: 14px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #000000; /* lighter purple on hover */
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .input-row {
    flex-direction: column;
  }
  .input-group {
    flex: 1 1 100%;
  }
}