.container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 30px;
}
.ContactTitle h1{
    margin-bottom: 40px;
    text-align: center;
    font-size: 50px;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

}
.ContactTitle{
    text-align: center;
    grid-column: 1 /span 2;
    grid-row: 1;
    
}

.contactUsRadioButtons {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 18px;
}

.contactUsRadioButtons div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 20px;
    line-height: 20px;
}



.storeInfo a{
    text-decoration: none;
    color: black;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

}
.storeInfo{
    text-align: center;
    grid-column: 1;
    grid-row: 2;
}

.storeInfo h1 {
    font-size: 30px;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

}
.storeInfo p{
    font-size: 0.8rem;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

   
}

.messageUs{
    grid-column: 2;
    grid-row: 2;
    
}

.messageUs h2{
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

    font-size: 30px;
    text-align: center;
}
.messageUs label, .messageUs input, .messageUs textarea {
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

    font-size: 0.9rem;;
}
.fSumit input:hover{
    cursor: pointer;
}

form span{
    color: red;
}
form input, form select{
   width: 100%;
    background-color: rgba(239, 242, 244, 0.33);
    margin: 10px 0 10px 0;
    border: 1px solid #d3d3d3;
    box-shadow: 0px 0.5px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

form input:hover, form select:hover{
    border: 1px solid #a8a8a8;
    box-shadow: 0px 0.8px 8px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}



/* form label{
    margin-bottom: 25px;
} */
form textarea{
    min-width: 100%;
    max-width: 100%;
    min-height: 150px;
    max-height: 350px;
    line-height: 1.5;
    margin-bottom: 10px;
    border: 1px solid #d3d3d3;
    box-shadow: 0px 0.5px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    resize: none;
    margin-top: 15px;
}

form textarea:hover{
    border: 1px solid #a8a8a8;
    box-shadow: 0px 0.8px 8px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

.fSumit input, .butonhome {
    background-color: #CF1715;
    border: none;
    color: white;
    font-size: 1.3rem;
    border-radius: 20px;
    padding: 10px 50px;
    margin-bottom: 20px;
    margin-top: 50px;
}

/*hover effect for the submit button*/
.fSumit input:hover:enabled, .butonhome:hover {
    background-color: #6b0000;
    cursor: pointer;
}

/*when it's disabled/before recaptcha verification*/
.fSumit input:disabled {
    background-color: #808080;
    color: #d3d3d3;
    cursor: not-allowed;
    opacity: 0.6;
}




.buttonContainer {
    text-align: center;
    margin-top: 50px; /* Adjust as needed */
    padding-bottom: 100px;
  
}

/*style for recaptcha container*/
.recaptcha-container {
    align-items: left;
    justify-content: left;
    display: flex;
    margin-top: 20px;
}

/**/
.contact-info {
    text-align: left;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

    margin-bottom: 20px;
    margin-left: 15%;
}

.contact-info div {
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-info i {
    color: #CF1715;
    margin-right: 10px;
}

.contact-info a {
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
}

.contact-info a:hover {
    color: red;
}

.storeInfo h2 {
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

    font-size: 30px;
    text-align: center;
    margin-bottom: 5%;
}



@media screen and (max-width: 994px) {
	.container{
        grid-template-columns: 1fr;
        margin: 0;
    }
    .ContactTitle{
        text-align: center;
        grid-column: 1;
        grid-row: 1;
    }
    .storeInfo{
        grid-column: 1;
        grid-row: 2;
        margin: 0 10px 0 10px;
    }
    .messageUs{
        grid-column: 1;
        grid-row: 3;
        margin: 0 10%;
    }

    .store-hours {
        width: 90%;
        font-size: 14px;
    }

    .store-hours td{
        font-size: 14px;
    }



}

@media screen and (max-width: 645px) {
    .storeInfo img {
        width: 100%;
        height: auto;
    }

    .store-hours {
        width: 100%;
        font-size: 14px;
        margin: 0 auto;
    }

    .store-hours td{
        font-size: 14px;
    }

}

/*store hours*/
.store-hours {
    width: 70%;
    margin: 20px auto;
    border: 2px solid #d3d3d3;
    border-radius: 10px;
    border-collapse: separate;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

    font-size: 16px;
    overflow: hidden;
}

.store-hours th {
    color: rgb(0, 0, 0);
    text-align: left;
    padding: 10px;
    font-size: 18px;
}

.store-hours td {
    padding: 10px;
    text-align: left;
    font-size: 0.9rem;
}

.store-hours tr {
    background-color: #f9f9f9;
}

.store-hours tr:nth-child(odd) {
    background-color: #ffffff;
}

.holiday-hour {
    font-style: italic;
    color: #5e0000;
    margin: 20px auto;
    opacity: 0.8;
    display: flex;
    width: 70%;
}
