/* Footer Component Styles - Dark Theme */

.footer {
  background: #1f2937; /* Dark gray-800 */
  border-top: 1px solid #374151; /* gray-700 */
  padding: 1rem 0; /* Compact padding */
  margin-top: auto;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.footer__text {
  color: #9ca3af; /* text-gray-400 */
  font-size: 0.875rem;
  margin: 0;
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__badge--env {
  background: #fb923c; /* Orange accent */
  color: #1f2937; /* Dark text */
}

.footer__badge--debug {
  background: #ef4444; /* Red accent */
  color: #ffffff; /* White text */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .footer__badges {
    justify-content: center;
  }
}