/* Compact Footer CSS */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 1.5rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--footer-text);
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-copyright {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--footer-text);
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }
  
  .footer-links {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .footer-brand {
      flex-direction: column;
      gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 1rem 0;
  }
  
  .footer-links {
      gap: 1rem;
  }
  
  .footer-links a {
      font-size: 0.85rem;
  }
}