/* ==========================
   FOOTER – PREMIUM
========================== */

.footer {
  background: #0a0a0a;
  color: #e6e6e6;
  padding: 90px 60px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1300px;
  margin: auto;
}

/* BRAND */
.footer-brand img {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #bfbfbf;
  margin-bottom: 25px;
}

/* HEADINGS */
.footer h4 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 22px;
  letter-spacing: 1px;
}

/* LINKS */
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #bfbfbf;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #bfbfbf;
}


/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 60px;
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #999;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

.site-footer {
  padding: 40px 0;
  text-align: center;
  background: #111;
  color: #fff;
}

.footer-social {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.footer-social a img {
  width: 32px;
  height: 32px;
  transition: transform .3s, filter .3s;
}

.footer-social a:hover img {
  filter: brightness(1) invert(0) drop-shadow(0px 0px 6px gold);
}













