

/* ---------- F O O T E R ---------------------- */

.footer {
  background: #e4e4e4;
  padding: 60px 0 20px;
  font-size: 14px;
  color: #555;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 14px;
  color: #000;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: #666;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #d4af37;
}

.footer-logo {
  width: 120px;
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-right: 10px;
  transition: 0.3s;
}

.social img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #999;
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social {
    justify-content: center;
  }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .cards {
    flex-direction: column;
  }

  h1 {
    font-size: 30px;
  }
}

