.hero-container1 {
  height: 85vh;
  color: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 50px;
}
.hero-container1 > div {
  max-width: 600px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 4;
}
.hero-container1 > div h1 {
  font-size: 48px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  letter-spacing: 3px;
}
.hero-container1 > div p {
  font-weight: 500;
}

.second-container {
  width: 100%;
}
.second-container .contact {
  flex-direction: column;
}
.second-container .contact .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.second-container .contact .title h1 {
  font-size: 45px;
  font-family: "Playfair Display", serif;
}
.second-container .contact .title p {
  font-weight: 500;
}
.second-container .contact > .second {
  display: flex;
  flex-direction: row;
  gap: 100px;
}
.second-container .contact > .second .contact-form {
  width: 50%;
}
.second-container .contact > .second .contact-form button[type=submit] {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 36px;
  border: none;
  background-color: #292464;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
}

/* Alert styles for form messages */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-weight: 500;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  border-left: 4px solid;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #28a745;
  border-left-color: #28a745;
}

.alert-success::before {
  content: "✓ ";
  font-weight: bold;
  font-size: 16px;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #dc3545;
  border-left-color: #dc3545;
}

.alert-error::before {
  content: "⚠ ";
  font-weight: bold;
  font-size: 16px;
}

.form-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Form styling improvements */
.contact-form form input,
.contact-form form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  outline: none;
  border-color: #292464;
}

.contact-form form button[type="submit"]:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
}

@media screen and (max-width: 1100px) {
  .second-container .contact > .second {
    flex-direction: column;
  }
  .second-container .contact > .second .first-section {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .second-container .contact > .second {
    flex-direction: column;
  }
  .second-container .contact > .second .first-section {
    width: 100%;
    padding: 60px 30px;
    gap: 30px;
  }
  .second-container .contact > .second .first-section .top h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 450px) {
  .hero-container1 {
    height: 100vh;
  }
  .hero-container1 > div h1 {
    font-size: 44px;
  }
}/*# sourceMappingURL=contact.css.map */