body {
  margin: 0;
  padding: 0;
  padding-bottom: 100px;
  font-family: 'Poppins', sans-serif;
}

#contact {
  width: 100%;
  height: 100%;
}

#contact-form {
  font-family: 'Poppins', sans-serif;
  color: black;
  width: 100%;
}

#contact-form .form-control {
  font-family: 'Poppins', sans-serif;
  color: #000000 !important; 
  width: 100%;
}

.section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 6rem);
  color: #070707;
  letter-spacing: clamp(2px, 1vw, 6px); 
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  width: 90%; 
  max-width: 840px;
}


.form-horizontal {
  width: 48%; 
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.form-control, 
textarea {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  letter-spacing: 0.5px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
}

.send-button {
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem); 
  height: auto; 
  padding: 10px 20px;
  width: 100%;
  border: none;
  border-radius: 4px;
  background-color: #F9A392;
  color: white;
  overflow: hidden;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

.send-button:hover {
  background-color: #f56649;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.alt-send-button {
  width: 100%; 
  height: auto;
  transition: all .2s ease-in-out;
}

.send-text {
  display: block;
  margin-top: 10px;
  letter-spacing: 2px;
}

.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}

.direct-contact-container {
  width: 48%; 
}

.contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
  width: 100%;
}

.list-item {
  line-height: 4;
  color: #aaa;
}

.contact-text {
  font: 300 clamp(16px, 2vw, 18px) 'Lato', sans-serif;
  letter-spacing: 1.9px;
  color: #F9A392;
}

.place {
  margin-left: clamp(40px, 5vw, 62px);
}

.phone {
  margin-left: clamp(40px, 5vw, 56px); 
}

.gmail {
  margin-left: clamp(40px, 5vw, 53px);
}

.contact-text a {
  color: #F9A392;
  text-decoration: none;
  transition-duration: 0.2s;
}

.contact-text a:hover {
  color: #f56649;
  text-decoration: none;
}

.social-media-list {
  position: relative;
  font-size: clamp(18px, 2.5vw, 22px);
  text-align: center;
  width: 100%;
  margin: 20px auto;
  padding: 0;
}

.social-media-list li a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.social-media-list li {
  position: relative; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(40px, 8vw, 60px);
  width: clamp(40px, 8vw, 60px); 
  margin: 10px 3px;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(27,27,27);
  cursor: pointer; 
  transition: all .2s ease-in-out;
}

.social-media-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all .2s ease-in-out;
}

.social-media-list li:hover {
  background-color: #F9A392; 
}

.social-media-list li:hover:after {
  opacity: 1;  
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}

.social-media-list li:hover a {
  color: #F9A392;
}

.copyright {
  font: 200 14px 'Oswald', sans-serif;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
  margin: 20px 0;
  width: 100%;
}

hr {
  border-color: black;
  width: 90%;
  margin: 20px auto;
}

/* New welcome content styles */
.welcome-content {
  text-align: center;
  margin-bottom: 30px;
}

.welcome-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #F9A392;
  margin-bottom: 15px;
}

.welcome-description {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
}



@media screen and (max-width: 850px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
    width: 95%;
  }
  
  .form-horizontal, .direct-contact-container {
    width: 100%;
    margin: 0 auto;
  }  
  
  .direct-contact-container {
    margin-top: 60px;
  }
  
  .social-media-list {
    width: 100%;
  }
}

@media screen and (max-width: 569px) {
  .section-header {
    padding: 20px 0;
  }

  .contact-wrapper {
    padding: 10px;
  }

  .form-horizontal, .direct-contact-container {
    width: 100%;
    margin: 0 auto;
  }
  
  .direct-contact-container {
    margin-top: 40px;
  }
  
  .social-media-list {
    width: 100%;
  }
  
  .contact-list {
    padding-right: 0;
  }
  
  .place, .phone, .gmail {
    margin-left: 0;
  }
}

@media screen and (max-width: 410px) {
  .send-button {
    width: 100%;
    padding: 8px 15px;
  }
  
  .section-header {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .contact-list .list-item {
    line-height: 3;
  }
  
  .contact-text {
    font-size: 15px;
  }
}