/* ============================
   Footer Styles — Barman App
   ============================ */

   footer {
    background-color: #1f1f1f;
    color: #eaeaea;
    padding: 40px 0 20px;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  footer a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
  }
  
  footer a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  
  /* Footer top links (help, about, etc.) */
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
  }
  
  /* Divider line */
  .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem auto;
    width: 80%;
  }
  
  /* Footer bottom info */
  .footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #aaaaaa;
  }
  
  /* Small screens */
  @media (max-width: 768px) {
    footer {
      text-align: center;
      padding: 30px 10px;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  
    .footer-divider {
      width: 90%;
    }
  }
  
  /* Optional icons styling */
  .footer-icons {
    margin-top: 10px;
  }
  
  .footer-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.3rem;
    color: #d4d4d4;
    transition: color 0.2s ease;
  }
  
  .footer-icons a:hover {
    color: #ffffff;
  }
  