/**
 * ElitePOV Grid Footer Component Layout Rules
 */

.site-footer {
    background-color: #0b0b0b;
    border-top: 1px solid #1a1a1a;
    color: #a0aec0;
    padding: 80px 0 0 0;
    font-family: var(--wp--preset--font-family--sans-serif, sans-serif);
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Brand identity column takes double width space balance */
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
}

/* Column 1 Identity Parameters */
.footer-logo {
    margin: 0 0 20px 0;
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.footer-logo a {
    color: #ffffff;
    text-decoration: none;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #718096;
    margin: 0;
    max-width: 340px;
}

/* Nav Menu Titles */
.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 24px 0;
    position: relative;
}

/* Dynamic links formatting blocks */
.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.15s ease, transform 0.15s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #ff1a53; /* Hot vibrant pink accent hover state */
    transform: translateX(4px); /* Subtle clean slide movement indicator */
}

/* Premium Network Icon Settings */
.social-network-links a:hover {
    color: #ffffff;
}

.social-network-links .premium-platform:hover {
    color: #ff3366;
}

/* Bottom copyright bar strip specifications */
.footer-copyright-bar {
    background-color: #000000;
    border-top: 1px solid #141414;
    padding: 24px 0;
    text-align: center;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-copyright-bar p {
    margin: 0;
    font-size: 0.8rem;
    color: #4a5568;
    line-height: 1.5;
}

/* --- Responsive Tablet and Smartphone Viewport Breakpoints --- */
@media screen and (max-width: 960px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* Drops into dual balance column arrays on tablet sizes */
        gap: 40px;
    }
    .footer-description {
        max-width: 100%;
    }
}

@media screen and (max-width: 540px) {
    .site-footer {
        padding: 60px 0 0 0;
    }
    .footer-container {
        grid-template-columns: 1fr; /* Complete single vertical layout stack on phones */
        gap: 36px;
        padding-bottom: 40px;
    }
    .footer-title {
        margin-bottom: 16px;
    }
    .footer-links-list {
        gap: 12px;
    }
}

/* --- Social Media SVG Block Formatting --- */

.footer-social-svg-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Aligns them in a modern horizontal rows layout */
}

.footer-social-svg-row li {
    display: inline-block;
}

.footer-svg-icon {
    width: 28px;
    height: 28px;
    color: #a0aec0; /* Soft gray standard color matching structural defaults */
    transition: color 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

/* Hover States across generic platforms versus premium video hubs */
.social-icon-anchor:hover .footer-svg-icon {
    color: #ffffff; /* Turns bright white for social streams on hover */
    transform: scale(1.1); /* Subtle, ultra-clean punch scale response */
}

.social-icon-anchor.premium-platform:hover .footer-svg-icon {
    color: #ff3366; /* Changes to signature hot pink accent color specifically for store destinations */
}

/* Accessibility hidden element parameters block */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

/* Adjust layout alignment for small viewports */
@media screen and (max-width: 540px) {
    .footer-social-svg-row {
        gap: 24px; /* Increases tap targets separation boundaries on tiny touch displays */
        margin-top: 4px;
    }
}

.footer-svg-icon.landscape-brand-svg {
    width: 68px; /* Expands width footprint naturally to maintain visibility readability scale */
    height: 28px;
    object-fit: contain;
}

/* Base target for the Clips4Sale PNG */
.footer-svg-icon.landscape-brand-svg {
    width: 68px; 
    height: 28px;
    object-fit: contain;
    display: block;
    
    /* 1. Invert changes black to white. 
       2. Brightness pushes it to crisp #ffffff.
       3. Opacity drops it slightly to match the soft gray look of your other icons. */
    filter: invert(1) brightness(2) opacity(0.7);
    transition: filter 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover State: Turns the white PNG into your premium hot pink accent (#ff3366) */
.social-icon-anchor.premium-platform:hover .footer-svg-icon.landscape-brand-svg {
    transform: scale(1.05);
    /* Inverts to white first, then shifts the hue directly to hot pink */
    filter: invert(1) brightness(1) sepia(1) saturate(5000%) hue-rotate(300deg) brightness(90%);
}


.footer-logo img {
    max-width: 200px; /* Adjust this width to match your logo's desired size */
    height: auto;
    display: block;
    margin-bottom: 10px;
}