/**
 * [BLOCK STYLE: FOOTER]
 * LOCATION: logic/blocks/footerblock/style.css
 * STATUS: FIXED POSITION & HIGH CONTRAST (HARDENED)
 */

.block-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* EXTREME Z-INDEX to prevent overlays blocking clicks */
    z-index: 2147483647; 
    
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-top: 2px solid #c5a059; /* Hardcoded Gold */
    
    padding: 0.75rem 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.9);
}

.block-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.block-footer__copy {
    color: #94a3b8; 
    font-size: 0.75rem;
    line-height: 1.2;
    max-width: 60%;
}

/* --- SOCIAL BUTTONS --- */
.block-footer__socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    pointer-events: auto; /* Force clicks to work */
}

.social-link {
    /* FORCE VISIBILITY */
    background-color: #c5a059 !important; /* Gold Background */
    color: #000000 !important; /* Black Icon */
    
    width: 42px;
    height: 42px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Ensure it's clickable */
    position: relative;
    cursor: pointer;
}

.social-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    display: block; /* Removes inline spacing issues */
}

/* HOVER STATE */
.social-link:hover {
    transform: scale(1.15) translateY(-5px);
    background-color: #ffffff !important; /* Flash White on Hover */
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* MOBILE */
@media (max-width: 480px) {
    .block-footer__copy { font-size: 0.65rem; }
    .social-link { width: 38px; height: 38px; }
    .social-link svg { width: 18px; height: 18px; }
}