/* ====================================
   Kate Fedotova — FOOTER STYLES
   Palette: #E148C6 accent
   Fonts: Open Sans
==================================== */

footer {
  margin-top: 3rem;
  padding: 1.5rem 1rem;
  background: #fff;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #444;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.03);
}

footer p {
  margin: 0;
  line-height: 1.6;
}

footer a {
  color: #E148C6;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* Accent detail line (optional aesthetic touch) */
footer::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 0 auto 1rem;
  background: #E148C6;
  border-radius: 2px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  footer {
    font-size: 0.9rem;
    padding: 1.25rem 0.8rem;
  }
}
