/*FOOTER CSS */
.footer{
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--deep-backgrnd-clr);
    border-top: solid 1px var(--highlighted-clr-4);
    box-sizing: border-box;
}


.footer_middle_div{
    width: 100%;
    height: auto;
    background-color: transparent;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(1, 1fr); 
    gap: 20px;
}

@media (min-width: 1000px) {
    .footer_middle_div {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1000px)  {
    .footer_middle_div {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 669px) and (max-width: 768px)  {
    .footer_middle_div {
        grid-template-columns: repeat(2, 1fr);
    }
}


.footer_middle_div_inner{
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}
.footer-site-title{
    font-family: var(--lora-font-fam);
    font-size: 35px;
    color: var(--backgrnd_color);
    text-decoration: none;
}
.footer-site-title span{
    color: var(--backgrnd_color);
}
.footer_description{
    font-family: var(--poppins-font-fam);
    font-size: 13px;
    color: var(--backgrnd_color);
    line-height: 1.5; 
}
.footer_location_on_map{
    width: 80%;
    padding: 7px 7px;
    text-decoration: none;
    background-color: var(--backgrnd_color);
    border: solid 1px var(--backgrnd_color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_location_on_map span{
    font-family: var(--poppins-font-fam);
    color: var(--deep-backgrnd-clr);
}
.footer_location_on_map:hover{
    background-color: var(--faded-font-clr);
    border: solid 1px var(--faded-font-clr);
}
.footer_middle_div_headers{
    font-family: var(--poppins-font-fam);
    font-size: 14px;
    color: var(--faded-font-clr);
}
.footer_site-contact{
    width: 80%;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: var(--poppins-font-fam);
    font-size: 13px;
    color: var(--backgrnd_color); 
    text-decoration: none;
    gap: 10px;
    margin-bottom: 5px;
    box-sizing: border-box;
}
.footer_site-contact i{
    color: var(--backgrnd_color);
}
.footer_site-contact:hover{
    color: var(--faded-font-clr);
}

.footer_newsletter_form{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-bottom: solid 1.5px var(--faded-font-clr);
    gap: 5px;
    box-sizing: border-box;
}
.footer_newsletter_form i{
    font-size: 20px;
    color: var(--backgrnd_color);
}
.footer_newsletter_input{
    width: calc(100% - 50px);
    background-color: transparent;
    border: none;
    font-family: var(--poppins-font-fam);
    font-size: 14px;
    color: var(--backgrnd_color); 
    text-decoration: none;
}
.footer_newsletter_input:focus {
    border: none;
    outline: none;
}
.footer_newsletter_input::placeholder {
    color: var(--backgrnd_color); 
    opacity: 1; 
}
.footer_newsletter_submit{
    background-color: transparent;
    color: var(--backgrnd_color);
    border: none;
    cursor: pointer;
    font-size: 20px;
}
.newsletter-response{
    font-family: var(--poppins-font-fam);
    font-size: 12px;
    color: var(--faded-font-clr); 
    text-decoration: none;
}
.footer_socials_div{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
    gap: 7px;
    box-sizing: border-box;
}
.footer_socials_a{
    text-decoration: none;
    width: 40px;
    height: 40px;
    background-color: var(--faded-font-clr);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_socials_a i{
    font-size: 20px;
    color: var(--backgrnd_color);
    cursor: pointer;
}
.footer_socials_a:hover{
    background-color: var(--backgrnd_color);
}

.footer_div_bottom{
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--deep-backgrnd-clr);
    border-top: solid 1px var(--faded-font-clr);
}
.footer_copyright_p{
    font-size: 12px;
    font-family: var(--poppins-font-fam);
    color: var(--backgrnd_color);
}


@media(max-width:768px){
    
    .footer_description{
        width: 90%;
        text-align: left;
    }
    .footer_socials_div{
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
    .footer_div_bottom{
        flex-direction: column;
    }
}
