/* Modern Footer Styles - Extracted from page-apartment-single.php */

.site-footer {
    width: 100%;
    max-width: 84.8vw; /* ~1900px */
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space items out */
    gap: 5vw;
    margin-bottom: 1.5vw;
}

.footer-logo-text { 
    font-size: 0.67vw; /* ~15px */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.22vw; /* ~5px */
    color: var(--accent-dark);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.footer-contact-link {
    color: var(--text-main);
    font-size: 0.71vw; /* ~16px */
    font-weight: 500;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

.footer-contact-link:hover { color: var(--accent-gold); }

.footer-disclaimer { 
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5vw;
    margin-top: 1.5vw;
}

.footer-legal-text { 
    font-size: 0.53vw; /* ~12px */
    color: #999; 
    line-height: 1.8; 
    font-family: 'Inter', sans-serif; 
    text-align: justify;
    margin: 0;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5vw;
    padding-top: 1vw;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.footer-links-group { display: flex; gap: 2vw; flex-shrink: 0; }
.footer-links-group a { 
    font-size: 0.49vw; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    color: #888; 
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

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

.footer-copyright { 
    font-size: clamp(11px, 0.49vw, 16px); 
    color: #ccc; 
    text-transform: uppercase; 
    letter-spacing: 0.12em; 
    font-family: 'Manrope', sans-serif; 
    flex-shrink: 0;
}

.footer-full-width {
    margin-top: 0;
    padding: clamp(30px, 1.5vw, 60px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
    .footer-full-width {
        padding: 40px 20px;
        margin-top: 40px;
    }
    .footer-top-row { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
    .footer-bottom-bar { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links-group { justify-content: center; flex-wrap: wrap; }
    .footer-legal-text { text-align: center; max-width: 100%; font-size: 11px; }
    .footer-links a, .footer-copyright { font-size: 11px; }
    
    /* Ensure colors and fonts are available even if variables aren't defined identically */
    .footer-contact-link, .footer-logo-text { font-family: 'Montserrat', sans-serif; }
}
