.nav-logo {
  height: 38px;
  width: 38px;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* === Footer === */
.footer {
  background: linear-gradient(180deg, #0A0A0A 0%, #1C1C1C 100%);
  color: #FAFAFA;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    animation: fadeIn 1s ease-in;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
  }

  .footer-logo:hover {
    transform: scale(1.05);
  }

  .footer-slogan {
    font-size: 0.95rem;
    color: #E0E0E0;
    margin: 0;
  }

  .footer-links p, .footer-links a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a { 
    margin-left: 1rem;
  }
  
  .footer-links a:hover {
    color: #1976d2;
  }

  .footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .social-link {
    color: #E0E0E0;
    font-size: 1.4rem;
    transition: color 0.3s, transform 0.2s;
  }

  .social-link:hover {
    color: #1976d2;
    transform: translateY(-2px);
  }

  a {
    color: #0c3258;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
  }

  a:hover {
    color: #1976d2;
  }

  .footer-copy {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.85rem;
  }
}