.footer {
  background: #5c4033;
  color: #f5f1ed;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section h3 {
  font-size: 1.3rem;
  letter-spacing: -0.3px;
}

.footer-section h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: white;
  opacity: 0.95;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-section ul li:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  color: #a0826d;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  width: auto;
  height: auto;
  padding: 0.15rem;
  background: transparent;
  border-radius: 4px;
  color: inherit;
  transition: transform 0.18s ease;
  border: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
}

.social-icon.facebook { color: #1877F2; }
.social-icon.instagram { color: #E1306C; }
.social-icon.youtube { color: #FF0000; }
.social-icon.twitter { display: none; }
.social-icon.linkedin { display: none; }
.social-icon.pinterest { display: none; }

.footer-bottom {
  text-align: center;
  padding: 1.25rem 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  color: white;
  opacity: 1;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  color: white;
  opacity: 1;
  font-weight: 500;
}

.footer-bottom p:first-child {
  margin-bottom: 0.3rem;
}

.made-by {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 1;
  color: #fff8f0;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 80px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }
}
