/*
Theme Name: Hestia Child
Theme URI: https://www.themeisle.com/
Description: This is a custom child theme I have created.
Author: ThemeIsle
URI: https://www.themeisle.com/
Template: hestia    
Version: 0.1
*/


/*** Site title text */
.navbar-brand,
.navbar-brand a,
.title-logo-wrapper .site-title {
    font-size: 28px !important;
    font-weight: 700 !important;
}

/* Prevent logo shrinking layout affecting text */
.navbar .navbar-header {
    align-items: center;
}
/*** Site title text END */


/* =====================================================
   HESTIA CUSTOM FOOTER - 8px SYSTEM + MODERN POLISH
   ===================================================== */

/* ===== 3 COLUMN FOOTER GRID ===== */
.footer .container .hestia-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 32px;
    width: 100%;
    align-items: start;
    padding-top: 16px;
}

/* Column blocks */
.footer .hestia-footer-grid > * {
    width: auto !important;
    max-width: 100% !important;
    float: none !important;
    display: block;
    padding-bottom: 24px;
}

/* Headings */
.footer .hestia-footer-grid h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* ===== QUICK LINKS GRID ===== */
.footer .footer-links-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 24px !important;
}

/* links */
.footer .footer-links-grid a {
    display: block;
    text-align: center; /* or change to left for left justified */
    font-size: 13px;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* hover (modern SaaS feel) */
.footer .footer-links-grid a:hover {
    text-decoration: underline;
    transform: translateX(2px);
}

/* ===== FOOTER BOTTOM BAR ===== */
.footer .footer-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* copyright */
.footer .copyright {
    text-align: right;
    font-size: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .footer .hestia-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer .footer-links-grid {
        grid-template-columns: 1fr !important;
    }

    .footer .footer-bottom {
        justify-content: center;
        margin-top: 16px;
        padding-top: 16px;
    }

    .footer .copyright {
        text-align: center;
    }
}

/* =====================================================
   END FOOTER
   ===================================================== */