/**
 * Pick Point — Site Footer CSS
 *
 * Moved out of an inline <style> block echoed on every page. The footer
 * is never above-the-fold, so this file is loaded via the print-media
 * swap trick in functions.php (pluspoint_header_footer_assets()) —
 * it does not block first paint or LCP at all, and only becomes "all"
 * media once the browser has time to fetch it.
 */


:root {
    --ft-pink:       #FA5053;
    --ft-pink-light: #FFF1F1;
    --ft-bg:         #FFF1F1; 
    --ft-bottom-bg:  #FFE3E3;
    --ft-heading:    #111111;
    --ft-text:       #444444;
    --ft-border:     #FFD6D7;
    --ft-font-bn:    'Anek Bangla', sans-serif;
    --ft-font-en:    'Poppins', sans-serif;
}

.ft-wrapper {
    background-color: var(--ft-bg);
    padding: 60px 0 0 0;
    font-family: var(--ft-font-bn);
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.02);
    border-top: 1px solid var(--ft-border);
}

.ft-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.ft-logo {
    font-family: var(--ft-font-bn);
    font-size: 36px;
    font-weight: 800;
    color: var(--ft-heading);
    margin: 0 0 12px 0;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-block;
}

.ft-logo span {
    color: var(--ft-pink);
}

/* Uploaded logo (Site Identity → Logo) — same source as header, sized for footer context */
.ft-logo-wrap { display: inline-block; margin-bottom: 12px; }
.ft-logo-wrap .custom-logo-link { display: block; line-height: 0; }
.ft-logo-wrap img.custom-logo { max-width: 180px; max-height: 60px; width: auto; height: auto; object-fit: contain; display: block; }
@media (max-width: 768px) {
    .ft-logo-wrap img.custom-logo { max-width: 140px; max-height: 46px; }
}

.ft-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ft-text);
    margin: 0 0 20px 0;
    max-width: 320px;
}

.ft-socials {
    display: flex;
    gap: 12px;
}

.ft-social-link {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: var(--ft-pink);
    border-radius: 10px;
    border: 1px solid var(--ft-border);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ft-social-link:hover {
    background: var(--ft-pink);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(250, 80, 83, 0.3);
}

.ft-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ft-title {
    font-family: var(--ft-font-bn);
    font-size: 22px;
    font-weight: 700;
    color: var(--ft-heading);
    margin: 0 0 18px 0;
}

.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-links li {
    margin-bottom: 12px;
}

.ft-links a {
    color: var(--ft-text);
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ft-links a:hover {
    color: var(--ft-pink);
    transform: translateX(4px);
}

.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ft-text);
}

.ft-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--ft-pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.ft-bottom {
    background-color: var(--ft-bottom-bg);
    border-top: 1px solid var(--ft-border);
    padding: 20px 0;
}

.ft-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ft-copy {
    font-family: var(--ft-font-en);
    font-size: 15px;
    margin: 0;
    color: var(--ft-text);
}

.ft-copy span {
    font-family: var(--ft-font-bn);
    color: var(--ft-heading);
    font-weight: 800;
    font-size: 16px;
}

.ft-dev {
    font-family: var(--ft-font-en);
    font-size: 15px;
    color: var(--ft-text);
    margin: 0;
}

.ft-dev a {
    color: var(--ft-pink);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.ft-dev a:hover {
    color: var(--ft-heading);
}

@media (max-width: 991px) {
    .ft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ft-wrapper { 
        padding: 40px 0 0 0;
    }
    .ft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 30px;
    }
    .ft-col-about {
        grid-column: span 2;
        text-align: left;
        margin-bottom: 10px;
    }
    .ft-col-contact {
        grid-column: span 2;
    }
    .ft-logo { font-size: 32px; }
    .ft-desc { max-width: 100%; font-size: 15px; }
    .ft-title { font-size: 20px; margin-bottom: 14px; }
    .ft-links a { font-size: 15px; }
    .ft-contact-item { font-size: 15px; margin-bottom: 12px; }
    
    .ft-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }
}
