/*
 Description:  SoulDiscovery Site Footer Variables Style Sheet
 Author:       Timothy Disney
 Author URI:   https://www.timothydisney.co.uk
 Version:      1.0
 Domain:       https://www.souldiscovery.co.uk
*/

/* ----------------------------- Style Sheet ----------------------------- */
/* INDEX:
- Footer
-- Desktop Footer Formatting
-- Mobile Footer Formatting
- Responsive Formatting
*/

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ---------------------------------------------------------- Footer Formatting ---------------------------------------------------------- */
/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ---------------------------------------------------------- Desktop Footer Formatting ---------------------------------------------------------- */

footer {background-color: var(--sd_blue-dk);}

footer a {color: var(--sd_blue-lt);}

.footer-desktop {
    color: var(--white);
    padding: 20px 30px 30px 30px ;
    display: grid;
     grid-template-columns: 1fr 2fr;
     justify-content: space-between;
     align-items: stretch;
     gap: 10px;
}

.footer-desktop-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
     justify-content: flex-start;
     align-items: center;
}
.footer-desktop-brand .souldiscovery_logo {max-width: 300px;}

.footer-desktop-social {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.footer-desktop-legal {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: small;
    text-align: right;
    display: flex;
     justify-content: flex-end;
     align-items: baseline;
     gap: 10px;
}
.footer-desktop-legal .text-lightBlue {display: inline;}

.site-smallprint {}
.site-credit {}


/* ---------------------------------------------------------- Mobile Footer Formatting ---------------------------------------------------------- */

.footer-mobile {
    color: var(--white);
    padding: 20px 30px 30px 30px ;
    display: none;
}

.footer-mobile-brand {
    display: flex;
     justify-content: center;
     align-items: center;
}
.footer-mobile-brand .souldiscovery_logo {max-width: 200px;}

.footer-mobile-social {}
.footer-mobile-social .social-icons {justify-content: center;}

 .footer-mobile-legal {
    font-size: small;
    text-align: center;
 }



/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* -------------------------------------------------------- Responsive Formatting -------------------------------------------------------- */
/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media (max-width: 1000px) {
    .footer-desktop-legal {
        flex-direction: column;
        align-items: flex-end;
        gap: 0px;
    }
    .footer-desktop-legal .text-lightBlue {display: none;}

}

@media (max-width: 450px) {
    .footer-desktop {display: none;}

    .footer-mobile {
        display: flex;
         flex-direction: column;
         gap: 12px;
    }
}