/* Footer styles */

/* Footer */
footer {
    background: var(--darker);
    padding: 4rem 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(108, 171, 221, 0.1);
  }
  
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 6px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
  }
  
  .footer-text {
    color: rgba(240, 244, 248, 0.5);
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .footer-flag {
    font-size: 2rem;
  }
  
  .footer-credit {
    color: rgba(240, 244, 248, 0.4);
    font-size: 0.85rem;
    margin-top: 1.5rem;
  }
  
  .footer-credit a {
    color: var(--city-blue);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-credit a:hover {
    color: var(--gold);
  }
