/* ============================================
   LAYER 3: FOOTER SYSTEM
   Faithfullight Theme
   Includes: Social icons, copyright, responsive stacking
   Version: 2.0 | Status: Production
   ============================================ */

.ftl-footer {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;        /* 5rem ≈ 5cm spacing from edges */
    background: transparent;
    border-top: 1px solid #cccccc;
    border-top: 0.5px solid rgba(204, 204, 204, 0.2);
    box-sizing: border-box;
    width: 100%;
}

.ftl-footer-social {
    display: flex;
    align-items: center;
}

.ftl-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;        /* Replaces gap */
    color: #cccccc;
    transition: color 0.3s ease;
}

.ftl-footer-social a:last-child {
    margin-right: 0;
}

.ftl-footer-social a:hover {
    color: #ffffff;
}

.ftl-footer-social svg {
    width: 20px;
    height: 20px;
}

/* SVG color controlled by parent a */
.ftl-footer-social a svg {
    color: inherit;
}

.ftl-footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ftl-cc-link {
    color: #cccccc;
    text-decoration: none;
    margin-left: 0.25rem;
    transition: color 0.3s ease;
}

.ftl-cc-link:hover {
    color: #ffffff;
    text-decoration: underline;
}
/* ============================================
   CC ICON AND LICENSE TEXT STYLING
   Added: 2026-02-25
   ============================================ */

.ftl-cc-icon-link,
.ftl-license-text {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.ftl-cc-icon-link {
    margin: 0 4px;
}

.ftl-license-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 2px;
    margin-right: 8px;
}

.ftl-cc-icon-link:hover,
.ftl-license-text:hover {
    color: #ffffff;
}

.ftl-cc-icon {
    width: 24px;  
    height: 24px;
    display: block;
}

/* ============================================
   MOBILE FOOTER STACKING - Socials above copyright
   ============================================ */
@media screen and (max-width: 600px) {
    .ftl-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ftl-footer-social,
    .ftl-footer-copyright {
        margin-bottom: 0.1rem;
    }
    
    .ftl-footer-copyright {
        margin-bottom: 0;
    }
}
/* Space between BY-NC text and CC icon */
.ftl-license-text {
    margin-right: 8px;
}
/* ============================================
   LAYER 3: FOOTER
   ============================================ */

.ftl-footer {
    position: relative;
    z-index: 5000;  /* Same as header */
}
/* ============================================
   FOCUS OUTLINES - Transparent for all footer links
   ============================================ */

.ftl-footer a:focus,
.ftl-footer-social a:focus,
.ftl-cc-icon-link:focus,
.ftl-license-text:focus {
    outline: 3px solid transparent;
}