/* Footer Styles for FOODAPP */

.app-footer {
  background: #93c572;
  color: #FFFFFF;
  margin-top: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 50px 0 30px;
}

.footer-section h3 {
  color: var(--fa-accent);
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-section h4 {
  color: var(--fa-accent);
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

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

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--fa-accent);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--fa-accent-10);
  border: 2px solid var(--fa-accent);
  border-radius: 50%;
  color: var(--fa-accent);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2em;
}

.footer-social a:hover {
  background: var(--fa-accent);
  color: var(--fa-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--fa-accent-10);
}

.footer-bottom {
  border-top: 1px solid var(--fa-primary-light);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom-content p {
  margin: 5px 0;
  color: #FFFFFF;
  font-size: 0.9em;
}

.footer-credits {
  font-size: 0.8em !important;
}

.footer-credits strong {
  color: var(--fa-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0 20px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    padding: 25px 0 15px;
  }
  
  .footer-section h3 {
    font-size: 1.3em;
  }
  
  .footer-section h4 {
    font-size: 1.1em;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .app-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  }
  
  .footer-bottom {
    border-top-color: #404040;
  }
}

/* Print styles */
@media print {
  .app-footer {
    display: none;
  }
}

/* Animation for footer reveal */
.app-footer {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky footer support */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}