.footer {
  background: #2c1f1f;
  color: #fce8d5;
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
}

.footer h2 {
  margin: 0;
  font-size: 24px;
  color: #ffbb78;
}

.footer-description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column h3 {
  margin-bottom: 10px;
  color: #ffa726;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

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

.footer-column ul li a {
  color: #fce8d5;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffa726;
}

.tags span {
  display: inline-block;
  background: #4b2e2e;
  padding: 5px 10px;
  margin: 5px 5px 0 0;
  border-radius: 20px;
  font-size: 12px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #fce8d5;
  font-size: 22px;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.3);
  color: #ffa726;
  text-shadow: 0 0 8px #ffa726;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}
