.footer {
  background: #3c2922;
  color: white;
  text-align: center;
  padding: 3rem 1rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 100px;
  margin-bottom: 1.2rem;
}

.footer-info p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: #fff;
}

.footer-info a {
  color: white;
  text-decoration: none;
}
.footer-info a:hover {
  text-decoration: underline;
}

.footer-social {
  margin: 1.2rem 0;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.4rem;
}
.footer-social a {
  color: white;
  transition: transform 0.2s ease;
}
.footer-social a:hover {
  transform: scale(1.2);
}

.footer-links {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.footer-links a {
  color: white;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .footer-logo {
    height: 80px;
  }
  .footer-social {
    font-size: 1.2rem;
  }
  .footer-info, .footer-links {
    font-size: 0.85rem;
  }
}
