/* 
 * Footer Styling
 * Copyright (c) 2025 Paolo Portraits
*/
.site-footer{
  /* gradient driven by CSS vars set from YAML */
  background: linear-gradient(180deg, var(--footer-from, #3b3b3b), var(--footer-to, #575757));
  color: #fff;
  margin-top: 2rem;
}

.site-footer a { color: #fff; text-decoration: none; opacity: .95; }
.site-footer a:hover { text-decoration: underline; opacity: 1; }

.footer-inner{
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  align-items: start;
}

@media (min-width: 768px){
  .footer-inner{
    grid-template-columns: 1fr 1fr; /* brand | contact */
  }
}

.footer-brand{
  display: grid;
  gap: .5rem;
  justify-items: start;
}

.footer-logo{
  max-width: 180px; height: auto; display: block;
  filter: brightness(1.05) contrast(1.05);
}

.footer-company{ font-weight: 700; font-size: 1.05rem; }

.footer-contact{ justify-self: end; text-align: right; }
@media (max-width: 767px){
  .footer-contact{ justify-self: start; text-align: left; }
}

.footer-address{ font-style: normal; opacity: .95; }
.footer-links{ list-style: none; margin: .5rem 0 0; padding: 0; display: grid; gap: .25rem; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
  padding: .75rem 1rem 1.25rem;
  opacity: .9;
}
