/**
 * CUSTOM: Hide specific elements on Dakbox homepage
 * This file is update-safe and won't be affected by CodeCanyon updates
 * Last updated: 2025-12-05
 */

/* Hide the two empty paragraph elements with just dots */
.header-wrapper .header-text.lead {
    display: none !important;
}

/* Hide the statistics counter section (Emails Created / Messages Received) */
.header-counters {
    display: none !important;
}

/* Hide the footer */
.footer {
    display: none !important;
}

/* Hide the footer lower section */
.footer-lower {
    display: none !important;
}

/* Optional: Adjust spacing after hiding elements */
.header-wrapper {
    padding-bottom: 2rem;
}

/* CUSTOM: Hide entire footer logo column/div */
.footer-upper .col:has(.logo) {
    display: none !important;
}

/* CUSTOM: Reduce footer padding */
.footer .footer-upper {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}