* {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
}

/* === */

.contact-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 100px; /* desktop padding */
  background: url("/assets/images/Salon\ Contact.jpg") no-repeat center / cover;
  height: 30vh;
}

.contact-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 37vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.contact-header * {
  z-index: 1;
  color: #fff;
}

.contact-header h1 {
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 480px) {
  .contact-header {
    padding: 20px; /* remove large side padding on mobile */
    text-align: center;
  }

  .contact-header h1 {
    font-size: 28px;
  }

  .contact-header p {
    font-size: 14px;
  }
}

/* === */

.contact-info-section {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  padding: 20px 100px;
}

.contact-left-side,
.contact-right-side {
  width: 50%;
  margin-top: 100px;
}

.contact-info-header h2 {
  font-weight: 600;
}

.contact-info-header p {
  font-size: 14px;
  color: #444;
}

.contact-items {
  margin-top: 50px;
}

.contact-item {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 20px;
}

.contact-item i {
  width: 30px;
  height: 30px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.uil-map-marker {
  background-color: #e6f0ff;
  color: #2563eb;
}

.uil-phone {
  background-color: #e6f7f1;
  color: #059669;
}

.uil-envelope {
  background-color: #fff4e6;
  color: #f97316;
}

.uil-clock {
  background-color: #f3e8ff;
  color: #7c3aed;
}

.contact-item h3 {
  font-size: 16px;
  font-weight: 600;
}

.contact-item p {
  color: #444;
}

.contact-item a {
  text-decoration: none;
  color: #444;
}

.contact-item a:hover {
  text-decoration: underline #444;
}

@media (max-width: 480px) {
  .contact-info-section {
    padding: 20px;
    flex-direction: column;
  }

  .contact-left-side,
  .contact-right-side {
    width: 100%;
  }

  .contact-info-header h2 {
    font-size: 18px;
  }

  .contact-item {
    flex-direction: column;
  }

  .contact-item p,
  .contact-item a {
    font-size: 14px;
  }
}

/* === */

.contact-right-side {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 20px;
}

.contact-right-side h2 {
  font-size: 24px;
  font-weight: 600;
}

form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

form input,
textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  resize: none;
}

form input[type="submit"] {
  background-color: #001542;
  color: #fff;
  border: none;
  outline: none;
  width: fit-content;
  padding: 8px 25px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .contact-right-side {
    width: 87%;
    margin-top: 20px;
  }
  form input,
  textarea {
    width: 95%;
  }
}
