/* Footer Section CSS */

#main-footer {
    background-color: var(--brand-brown);
    /* Logo Brown */
    padding: 60px 0 30px;
    border-top: 1px solid rgba(228, 217, 187, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    /* Slightly larger for footer */
    width: auto;
    /* filter: brightness(0) invert(1); */
    /* Removed for light bg */
    opacity: 1;
}

.footer-brand p {
    color: var(--brand-gold);
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--brand-gold);
    /* Logo Gold */
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(228, 217, 187, 0.7);
    /* Muted Gold */
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brand-gold);
}

.footer-social {
    flex: 1;
    min-width: 150px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(228, 217, 187, 0.3);
    color: var(--brand-gold);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-brown);
}

.footer-bottom {
    border-top: 1px solid rgba(228, 217, 187, 0.1);
    /* Muted Gold */
    padding-top: 30px;
    text-align: center;
    color: rgba(228, 217, 187, 0.5);
    /* Muted Gold */
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}