
:root {
    --DisplayText--: "Libre Baskerville", serif;
    --NormalText--: "Montserrat", sans-serif;
    --PrimaryColor--: #ff812f;

}



.contact {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.contact h1 {
    text-align: center;
    color: var(--PrimaryColor--);
    font-family: var(--DisplayText--);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-form {

    width: 100%;
    background: #fff;
    padding: 30px  ;
   
    
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #333;
    margin-top: 0;
}

.contact-form p {
    color: #666;
    margin-bottom: 20px;
}

.contact-info-form {
 
    right: 150px;
    bottom: 210px;
    display: flex;
    flex-direction: column;
    width: 40%;
    height: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    background-color: var(--PrimaryColor--);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    
    
}

.contact-info-form h2 {
    color: #fff;
    font-size: 1.3rem;

    margin-top: 0;
    font-family: var(--DisplayText--);
}

.contact-item-form {
    display: flex;
    background-color: #F9B58A;
    padding: 10px;
    border-radius: 10px;
    color: white;
    margin: 10px 0px;
    font-family: var(--NormalText--);
    


}

.contact-item-form img{
    width:50px;
    height: 50px;
    padding: 10px;
}

.contact-item-form p{
    padding: 0 10px;
}





.address {
    border-top: 1px solid white; /* Adjust the color and thickness as needed */
 display: flex;
 font-family: var(--NormalText--);
 color: white;

}

.address img{
    width:50px;
    height: 50px;
    padding: 10px;
}
.address p{
    background-color: var(--PrimaryColor--) ;
  
}



/* Form Styling */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--PrimaryColor--);
    font-family: var(--DisplayText--);
    margin-bottom: 10px;
}

.contact-form p {
    color: #666;
    font-family: var(--NormalText--);
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start; 
}

.form-group {
    flex: 1; /* Ensure equal width for all form groups */
    min-width: 0; /* Prevent overflow issues */
    display: flex;
    flex-direction: column; /* Ensure label and input stack vertically */
    justify-content: flex-start; /* Align content at the top */
}


input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 35px;
    font-size: 16px;
    box-sizing: border-box;
    margin-top: 5px;
}

textarea {
    height: 120px;
    resize: vertical;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-group-submit button {
    width: 100%;
    padding: 14px;
    background-color: var(--PrimaryColor--);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}
.form-group label {
    display: block; /* Ensure the label is on its own line */
    font-family: var(--DisplayText--); /* Use the defined font */
    font-size: 16px; /* Adjust font size */
    color: #333; /* Set a readable color */
    margin-bottom: 5px; /* Add spacing below the label */
    font-weight: bold; /* Make the label text bold */
}

.form-group input[name="contact"] {
    margin-top: 30px; /* Adjust the margin as needed */
}

.form-group select {
    width: 100%; /* Make the dropdown take full width */
    padding: 12px 15px; /* Add padding for better spacing */
    border: 1px solid #ddd; /* Add a subtle border */
    border-radius: 35px; /* Match the rounded style of inputs */
    font-size: 16px; /* Match the font size of inputs */
    font-family: var(--NormalText--); /* Use the defined font */
    background-color: #fff; /* Ensure a clean background */
    color: #333; /* Set a readable text color */
    box-sizing: border-box; /* Ensure consistent sizing */
    appearance: none; /* Remove default browser styling */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    transition: border-color 0.3s ease; /* Add a hover effect */
}

.form-group select:focus {
    border-color: var(--PrimaryColor--); /* Highlight border on focus */
    outline: none; /* Remove default focus outline */
}

button:hover {
    background-color: #e67329;
   
}

.form-group-submit{
    width: 200px;
    float: right;
}

.honeypot {
    position: absolute;
    left: -9999px;
}


@media (max-width: 768px) {

    .contact-container{
        width: 100%;
        flex-direction: column;
       
        align-items: center;
    }
 
    
    .contact-form{
        width: 80%;
    }

    .contact-info-form{
        width: 80%;
    }
}

@media (max-width: 480px) {
  .form-group label{
    font-size: 0.9rem;
  }
  .form-group input{
    font-size:0.8rem; /* Adjust font size for smaller screens */
  }
  .form-group select{
    font-size:0.8rem; /* Adjust font size for smaller screens */
  }

    
}