/* =====================
   FOOTER
===================== */
.footer-site {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Century Gothic', sans-serif;
  border-top: 1px solid #ff8c00; /* optional top orange line */
}

/* Logo and name inline */
.footer-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.footer-logo-link img {
  height: 55px;
  display: block;
  margin-right: 12px;
}

.footer-logo-link span {
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff !important;
  line-height: 1;
}

/* Footer columns container */
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Each footer column */
.footer-column {
  flex: 1;
  min-width: 200px;
}

/* Column headings */
.footer-column h3 {
  color: #ff8c00; /* orange */
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Links */
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column i {
  margin-right: 8px;
  color: #d4af37; /* antique gold accent */
  font-size: 16px;
}

.footer-column a:hover {
  color: #b2975a;
}

/* Contact info */
.footer-column p {
  margin-bottom: 10px;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
