/* MAIN FOOTER */
.site-footer {
  background: #0b0b0b;
  color: #ccc;
  padding-top: 80px;
}

/* TOP SECTION */
.footer-top {
  padding-bottom: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* HEADINGS */
.footer-col h3 {
  color: #c59d5f;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* TEXT */
.footer-col p {
  font-size: 15px;
  line-height: 1.8;
  color: #aaa;
}

/* LINKS LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #c59d5f;
}

/* LOGO */
.footer-logo {
  max-width: 140px;
  margin: 10px 0 20px;
  display: block;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* SOCIALS */
.socials a {
  margin-right: 15px;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.socials a:hover {
  color: #c59d5f;
}

/* COPYRIGHT */
.copyright {
  font-size: 13px;
  color: #777;
}

.copyright a {
  color: #aaa;
  text-decoration: none;
}

.copyright a:hover {
  color: #c59d5f;
}

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

  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}