/* ========================================
   FOOTER STYLES
   Restaurant Website Generator
   ======================================== */

footer {
  padding: 2em 1em;
  background: #335b3e;
  text-align: center;
  margin-top: 3em;
}

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

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 1.5em;
}

.social-icon {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.social-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: fill 0.3s ease;
}

.social-icon.facebook:hover svg {
  fill: #1877f2;
}

.social-icon.whatsapp:hover svg {
  fill: #25d366;
}

.social-icon.instagram:hover svg {
  fill: #e4405f;
}

.social-icon.twitter:hover svg {
  fill: #1da1f2;
}

/* Copyright */
.copyright {
  font-size: 0.9em;
  color: #fff;
  margin-top: 1em;
}

.copyright a {
  color: #fbe122;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

/* Site Logo in Footer */
.site-logo {
  max-height: 75px;
  width: auto;
  margin-bottom: 1em;
  filter: brightness(0) invert(1);
}

/* Mobile Styles */
@media (max-width: 768px) {
  footer {
    padding: 1.5em 1em;
  }
  
  .social-links {
    gap: 1em;
  }
  
  .social-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .copyright {
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 1em;
  }
  
  .site-logo {
    max-height: 60px;
  }
  
  .social-links {
    gap: 0.8em;
  }
  
  .social-icon svg {
    width: 24px;
    height: 24px;
  }
}