/* ---------------------------------------------------- */
/* FOOTER                                                */
/* ---------------------------------------------------- */

.footer {
    padding: 2rem;
    background: #000;
    text-align: center;
    color: #fff;
  }
  
  .footer .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Social links wrapper */
  .footer-socials .social-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-socials .social-links li {
    list-style: none;
  }
  
  /* Circular social icon */
  .footer-socials .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1877f2; /* Facebook blue */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
  }
  
  /* Hover effect */
  .footer-socials .social-icon:hover {
    opacity: .8;
  }
  
  /* SVG inside circle */
  .footer-socials .social-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
  }
  
  /* Copyright */
  .footer p {
    margin-top: 1rem;
    font-size: .9rem;
    opacity: .8;
  }
  