/* GLOBAL FOOTER STYLES */

.main-footer {
    border-top: 1px solid #333;
    padding: 10px 5px;
    font-size: 0.9rem;
    
    /* Take it out of the normal flow */
    position: absolute;
    
    /* Position it a few pixels above the bottom */
    bottom: 10px; 
    
    /* Ensure it spans the full width of the section */
    width: 50%;
    
    /* Optional: center the text and add background if it overlaps content */
    text-align: center;
    background-color: transparent; 
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Links */
.footer-links a, 
.footer-legal a {
    color: #888;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.footer-links a:hover, 
.footer-legal a:hover {
    color: var(--gold-primary, #d4af37);
}

/* The Cookie Button */
.btn-link-gold {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    text-decoration: underline;
    transition: color 0.3s;
}

.btn-link-gold:hover {
    color: var(--gold-primary, #d4af37);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links a, .footer-legal a {
        display: block;
        margin: 10px 0;
    }
}