html, body{
    background: white;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;

    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.flex{
    display: flex;
    align-items: center;
}

.generalInfo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: red;
    font-size: 12px;
    justify-content: center;
}

/* Wraps text in a flex column to align properly */
.contact_text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 15px; /* Space between accent and text */
}

/* Title styling */
.contact_text h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact_text img {
    position: absolute;
    height: 50px;
    width: 55px;

    left: 80%;
}

/* Paragraph styling */
.address {
    font-size: 19px;
    color: black;
    line-height: 1.5;
    margin: 5px;

    text-transform: capitalize;
}

.contact_email {
    margin-top: 30px; /* Adds spacing below the address */
    font-size: 19px;
    font-weight: bold;
    color: red;

    text-transform: lowercase;
}

.contact_extra {
    margin-top: -15px;
    font-size: 19px;
    color: black;
    text-transform: capitalize;
}

.hours_available {
    margin-top: 5px;
    font-size: 17px;
    color: black;
    text-decoration: underline;
}

.login_contact_btn {
    background: red;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition:  0.3s;
    margin-top: 30px;

    border: 2px solid red;

    font-weight: bold;
    font-size: 19px;

    width: 200px;
}

.login_contact_btn:hover {
    background: white;
    color: red;
    border-color: red;
}

.order_contact_btn {
    background: red;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition:  0.3s;
    margin-top: 30px;

    border: 2px solid red;

    font-weight: bold;
    font-size: 19px;

    width: 250px;
}

.order_contact_btn:hover {
    background: white;
    color: red;
    border-color: red;
}


/* ---------------------------------------------- This is for the form submission area -------------------------------------------------------------- */

.content_info_wrapper{
    display: flex;
    justify-content: center;
    padding-top: 120px;
    align-items: center;
    /* flex: 1;
    flex-direction: column; */
}

.contact_form_container {
    display: flex;
    align-items: center;
    height: 650px;
    width: 700px;
    border-radius: 8px;
    padding: 20px 0;
    flex-direction: column;
}

.contact_extra_info {
    display: flex;
    width: 400px;
    padding: 20px;
    border-left: 2px solid black;
}

.contact_submission_text {
    color: black;
    font-size: 30px;
}

/* Input Fields */
.Name-feild,
.Email-feild,
.Phone-feild,
.Message-feild {
    display: block;
    width: 500px;
    margin: 25px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gray;
    background-color: rgba(255, 255, 255, 0.678);
}

.Name-feild:focus,
.Email-feild:focus,
.Phone-feild:focus,
.Message-feild:focus {
    border: 1px solid red;
    background-color: rgb(255, 255, 255);
    outline: none;
}
/* Message Field */
.Message-feild {
    height: 150px;
    resize: none; /* Prevent resizing */
}

/* Submit Button */
.submit_contact_btn {
    width: 100%;
    height: 50px;
    background-color: red;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s ease-in-out;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit_contact_btn:hover {
    background-color: white;
    border: solid red 2px;
    color: red;
}

#nav-contact{
    color: red;
  }

@media (max-width: 768px) {
    .contact_form_container {
      width: 100%;
    }
    
    .Name-feild, .Email-feild, .Phone-feild, .Message-feild {
      width: 90%;
    }
    
    .contact_extra_info {
      border-left: none;
      border-top: 2px solid black;
      margin-top: 30px;
      width: 100%;
    }

    .content_info_wrapper {
        flex-direction: column;
    }

  }

@media (max-width: 425px){

    .content_info_wrapper{
       justify-content: center;
    }
}