/* CSS Document */
/* Footer Base */
#footer {
    background: #111;
    color: #fff;
    padding: 25px 0 15px;
    font-family: "Open Sans", sans-serif;
    border-top: 2px solid #c9a23f; /* Gold accent line */
}

/* Inner Container */
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff; /* all text white */
}

/* Logo */
.footer-logo-top {
    text-align: center;
    margin-bottom: 15px;
}
.footer-logo-top img {
    height: 55px;
    vertical-align: middle;
    margin-right: 8px;
}
.footer-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #fff;
}

/* Columns Layout */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
}

/* Headings */
.footer-nav h3,
.footer-contact h3 {
    font-size: 1.05em;
    color: #ffb400;
    margin-bottom: 8px;
}

/* Links */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav ul li {
    margin-bottom: 5px;
}
.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-nav ul li a:hover {
    color: #ffb400;
    text-decoration: underline;
}

/* Contact Info */
.footer-contact p {
    margin: 5px 0;
}
.footer-contact i,
.footer-contact strong,
.footer-contact a {
    color: #fff;
}
.footer-contact a {
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact a:hover {
    color: #ffb400;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
    font-size: 0.85em;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom {
        margin-top: 15px;
    }
}
/* Force footer text, links and icons to be white while preserving hover color */
#footer,
#footer * {
  color: #ffffff !important;       /* force white for everything in footer */
}

/* Links remain white by default, change to gold on hover */
#footer a {
  color: #ffffff !important;
  text-decoration: none !important;
}
#footer a:hover,
#footer a:focus {
  color: #ffb400 !important;       /* gold hover */
  text-decoration: none !important;
}

/* If Font Awesome icons are set via pseudo-elements, force them too */
#footer i,
#footer i::before,
#footer i::after {
  color: #ffffff !important;
}

/* Keep background intact and padding as you want */
#footer {
  background: #111;
}
/* Footer Headings */
#footer h3 {
  color: #ffb400 !important;   /* gold color for headings */
  text-transform: uppercase;   /* optional - makes them all caps */
  letter-spacing: 1px;         /* optional - adds spacing between letters */
  margin-bottom: 10px;         /* adds a bit of breathing room */
  font-weight: 600;
}


