/* 
   1GBRAM Custom Footer Stylesheet
   Designed for GeneratePress integrations
*/

.custom-footer-wrap {
    background-color: #0b0f19; /* Deep, rich dark background */
    color: #94a3b8; /* Soft slate gray text */
    padding: 70px 24px 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-top: 2px solid #1e293b;
}

.custom-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid #1e293b;
}

.custom-footer-col-brand {
    padding-right: 40px;
}

.custom-footer-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    max-height: 40px;
    width: auto;
    border-radius: 6px;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.custom-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.custom-footer-heading {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* Subtle line indicator under headers */
.custom-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #3b82f6; /* Gaming accent color (blue) */
    border-radius: 2px;
}

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

.custom-footer-links li {
    margin-bottom: 14px;
    padding: 0;
}

.custom-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.custom-footer-links a:hover {
    color: #3b82f6; /* Glow-like transition to accent blue */
    transform: translateX(4px);
}

.custom-footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #475569;
}

.footer-bottom-copyright strong {
    color: #94a3b8;
}

.footer-bottom-meta {
    font-style: italic;
    font-weight: 500;
}

/* Responsive breakdowns */
@media (max-width: 991px) {
    .custom-footer-container {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 30px;
    }
    .custom-footer-col-brand {
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .custom-footer-wrap {
        padding: 50px 20px 25px;
    }
    .custom-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 35px;
    }
    .custom-footer-col-brand {
        padding-right: 0;
    }
    .custom-footer-heading {
        margin-bottom: 20px;
    }
    .custom-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}