/* Footer Styles */
.app-footer {
  background: linear-gradient(135deg, var(--cosmic-deep) 0%, var(--cosmic-dark) 50%, var(--cosmic-blue) 100%);
  color: var(--cosmic-white);
  padding: 40px 0 20px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 60px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.footer-content {
  text-align: left;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  text-align: left;
}

.footer-section-title {
  color: var(--cosmic-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-brand {
  text-align: left;
}

.footer-brand-title {
  color: var(--cosmic-gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.footer-copyright {
  text-align: right;
}

.copyright-text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footer-link {
  color: var(--cosmic-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: var(--cosmic-red);
  text-decoration: none;
}

.footer-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, var(--cosmic-gold), var(--cosmic-red));
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .app-footer {
    padding: 30px 0 16px 0;
    margin-top: 40px;
  }
  
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-sections {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .footer-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .app-footer {
    padding: 20px 0 12px 0;
    margin-top: 30px;
  }
  
  .footer-container {
    padding: 0 12px;
  }
  
  .footer-sections {
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .footer-brand-title {
    font-size: 1.3rem;
  }
  
  .footer-text {
    font-size: 0.85rem;
  }
} 