/* footer.css */

:root {
  --weblite-footer-background-color: #add8e6;
  --weblite-footer-text-color: white;
  --weblite-footer-link-text-color: #0000ff;
  --weblite-footer-font-size: 1em;
  --weblite-footer-font-family: Verdana, Geneva, Tahoma, sans-serif;
  --weblite-footer-font-weight: lighter;
  --weblite-footer-logo-max-width: 120px;
  --weblite-footer-content-padding-block: 2em;
  --weblite-footer-content-padding-inline: 2em;
}

.footer {
  position: relative;
  z-index: 10;
  background-color: var(--weblite-footer-background-color);
  color: var(--weblite-footer-text-color);
  font-size: var(--weblite-footer-font-size);
  font-family: var(--weblite-footer-font-family);
  text-align: center;
  font-weight: var(--weblite-footer-font-weight);
}

.footer.shadow-light {
  box-shadow: 0 0 0.8em 0.1em rgba(0, 0, 0, 0.2);
 }
 
 .footer.shadow-dark {
  box-shadow: 0 0 0.8em 0.1em rgba(0, 0, 0, 0.4);
 }

.footer .weblite-site-title span {
  font-size: 2em;
  font-weight: bolder;
  color: black;
  text-transform: capitalize;
}

.footer .footer-content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  justify-content: center;
  padding-inline: var(--weblite-footer-content-padding-inline);
  padding-block: var(--weblite-footer-content-padding-block);

  margin-inline: max(
    calc(100vw - var(--content-max-width-desktop)) / 6,
    var(--weblite-layout-gutter)
  );
}
.footer .weblite-custom-logo img {
  display: block;
  height: auto;
  max-width: var(--weblite-footer-logo-max-width);
}
.footer-logo,
.footer-navigation,
.copyright-bar {
  margin: 0 20px;
}

.footer-navigation-area {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}

.footer-menu-heading {
  display: block;
  font-size: 1.5em;
  font-weight: Bolder;
  margin-bottom: 0.75em;
}

.footer-navigation ul {
  display: flex;
  gap: 1em;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-navigation a {
  text-decoration: none;
  color: var(--weblite-footer-link-text-color);
}

@media (min-width: 768px) {
  .footer-navigation-area {
    flex-direction: row;
    gap: 4em;
  }

  .footer-menu-heading {
    text-align: left;
  }

  .footer-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    justify-content: flex-start;
  }
}
