@charset "utf-8";

/* =========================================================
   File: EP_footer.css
   ELECTPRESS FOOTER
   Namespace: ep-footer

   PURPOSE:
   - Full-width Electpress footer
   - Dark blue background
   - White footer text
   - Blue navigation links
   - Responsive desktop / tablet / mobile layout
   - Isolated from legacy Electpress page styles
========================================================= */


/* =========================================================
   FOOTER
========================================================= */

.ep-footer {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  width: 100%;

  max-width: 100%;

  margin: 0;

  padding: 20px 16px;

 background: #FFCC66;

  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;

  text-align: center;

  box-sizing: border-box;

  overflow: visible;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.ep-footer-links {
  display: flex;

  flex-direction: row;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  width: 100%;

  max-width: 1100px;

  gap: 10px 14px;

  margin: 0 0 14px;

  padding: 0;

  box-sizing: border-box;
}


/* =========================================================
   FOOTER LINK STATES
========================================================= */

.ep-footer .ep-footer-links a,
.ep-footer .ep-footer-links a:link,
.ep-footer .ep-footer-links a:visited {
  color: #0099ff;

  font-size: 13px;

  font-weight: 700;

  line-height: 1.4;

  text-decoration: none;
}

.ep-footer .ep-footer-links a:hover,
.ep-footer .ep-footer-links a:focus {
  color: #66ccff;

  text-decoration: underline;
}


/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.ep-footer .ep-footer-links a:focus-visible {
  outline: 2px solid #ffffff;

  outline-offset: 3px;
}


/* =========================================================
   FOOTER COPYRIGHT / INFORMATION
========================================================= */

.ep-footer-copy {
  width: 100%;

  max-width: 950px;

  margin: 0 auto;

  padding: 0;

  color: #ffffff;

  text-align: center;

  box-sizing: border-box;
}


/* =========================================================
   FOOTER PARAGRAPHS
========================================================= */

.ep-footer-copy p {
  margin: 6px 0 0;

  padding: 0;

  color: #ffffff;

  font-size: 12px;

  line-height: 1.5;

  text-align: center;
}


/* =========================================================
   FORCE ELECTPRESS FOOTER TEXT WHITE

   Helps prevent older site CSS from overriding footer colors.
========================================================= */

.ep-footer,
.ep-footer p,
.ep-footer span,
.ep-footer div,
.ep-footer nav {
  color: #000000;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 768px) {

  .ep-footer {
    padding: 18px 12px;
  }

  .ep-footer-links {
    gap: 8px 12px;
  }

  .ep-footer .ep-footer-links a,
  .ep-footer .ep-footer-links a:link,
  .ep-footer .ep-footer-links a:visited {
    font-size: 13px;
  }

  .ep-footer-copy p {
    font-size: 12px;
  }

}


/* =========================================================
   PHONE
========================================================= */

@media screen and (max-width: 480px) {

  .ep-footer {
    width: 100%;

    max-width: 100%;

    padding: 16px 10px;

    box-sizing: border-box;
  }

  .ep-footer-links {
    width: 100%;

    max-width: 100%;

    gap: 8px 10px;

    margin-bottom: 12px;
  }

  .ep-footer .ep-footer-links a,
  .ep-footer .ep-footer-links a:link,
  .ep-footer .ep-footer-links a:visited {
    font-size: 12px;
  }

  .ep-footer-copy {
    width: 100%;

    max-width: 100%;
  }

  .ep-footer-copy p {
    font-size: 11px;

    line-height: 1.45;
  }

}