/* LAST UPDATED: 07.03.2024- SM */

/* Main EVMS site footers have a Monarch Blue */
/* "Section footers" with department info currently (July 2024) have a gradient Silver/Silver Reign background */

/* EVMS Site Footer */
.site-footer {
    background-color: var(--primary-color);
    border-top: 1px solid var(--primary-dark);
    color: var(--primary-neutral-light);
    padding: 3em 0;
}

.site-footer p,
.site__footer__vcard,
.address {
    font-family: var(--primary-font-family);
    font-size: var(--base-font-size);
    font-weight: 600;
    font-variation-settings: "wdth" 75;
}

.site-footer .button {
  font-size: 1em;
}

.site-footer p,
.site__footer__nav {
  	font-weight: 600;
    margin: 0;
}

footer a,
.site--footer a {
    color: var(--primary-neutral-light);
    font-family: var(--primary-font-family);
    font-size: var(--base-font-size);
    font-weight: 600;
    font-variation-settings: "wdth" 75;
    text-decoration: none;
}

footer a:focus,
footer a:hover,
.site--footer a:focus,
.site--footer a:hover {
  color: var(--secondary-light);
  text-decoration: underline;
}


.site__logo {
    background-image: url(/media/vhs/assets/logos/VirginiaHealthSciences_stacked_RGB_white.png);
}

.site__logo,
.site__logo:focus,
.site__logo:hover {
    color: transparent;
}

.site__logo--footer {
    display: inline-block;
    height: 184px;
    text-indent: -999em;
    width: 350px;
}

.footer-copyright {
    /*margin-top: -0.47em; */
}


/*.site__footer__nav ul,
.site__footer__nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}*/

.footer__nav__list {
	column-count: 3;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__nav__list--item {
  line-height: 1;
  padding-bottom: 0.5em;
}
  
/* 06.20.2024 - settled by footer a... at the moment */
/* .footer__nav__list--item a {
  color: var(--primary-neutral-light);
  font-family: var(--primary-font-family);
  font-size: var(--base-font-size);
} */

.social-menu {
    display: flex;
    justify-content: space-around;
    margin: 0 auto 2em -0.75em;
}

.social-menu-item {
  color: var(--primary-neutral-light);
  font-size: 1.25em;
}

.social-menu-item svg {
    border-radius: 5px;
    fill: var(--primary-neutral-light);
    max-height: 24px;
    max-width: 24px;
    transition: fill .3s ease-in-out;
}

.social-menu-item svg:focus,
.social-menu-item svg:hover,
.social-menu-item:focus,
.social-menu-item:hover {
    color: var(--secondary-light);
    fill: var(--secondary-light);
}

/* All other button classes are in buttons.css - the campus safety button has several classes attached to it */
.button--safety {
    margin-top: 1em;
}





/* Section footers */
.section-footer {
    color: var(--primary-dark);
    margin: 0 auto;
    width: 100%;
}

.section-footer .container-fluid {
    background: var(--secondary-accent-to-secondary-neutral-light-gradient);
    border-top: 1px solid var(--secondary-neutral-dark-gray);
    padding: 15px 0;
    width: 100%;
}

.section-footer h4 {
  color: var(--primary-dark);
  font-size: 1.25em;
  font-weight: 400;
}

.section-footer a {
    color: var(--primary-dark);
}

.section-footer .phone::before {
    content: "Phone: ";
}

.conatiner.footer--content {
    max-width: 100%;
    padding: 2.5em 1.5em;
}

.contact p {
    margin-bottom: 20px;
}

.other-info p {
    text-align: center;
}

p.disclaimer {
    margin-bottom: 0;
}






/***** MEDIA QUERIES *****/
@media screen and (max-width: 767px) {
 .footer__nav__list {
   column-count: 1; 
   margin: 2em 0 0 -0.75em;
 }
  
 .footer__nav__list--item {
   padding-bottom: 1em;
 }
  
 .social-menu {
   justify-content: space-around;
   margin: 0 auto 2em -1.25em;
 }
}


@media screen and (min-width: 768px) {
    .site__footer__nav {
        margin: 0;
    }
}

@media screen and (max-width: 800px) {
    .site--footer a:not(.button):not(.site-logo) {
        display: block;
        padding: 0.5em 0;
    }
}









