/*
Theme Name:   Maxbizz Child
Theme URI:    https://syndghana.org
Description:  Custom child theme for Maxbizz theme with matching Next.js header and footer
Author:       Strategic Youth Network for Development (SYND)
Template:     maxbizz
Version:      1.0.0
Text Domain:  maxbizz-child
*/

/* Admin Bar Spacing for Sticky Header */
.admin-bar #masthead {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #masthead {
        top: 46px;
    }
}

/* Override parent theme header constraints */
#masthead,
.site-header {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
    background-color: #ffffff !important;
}

/* Fix WordPress .hidden !important class clashing with Tailwind */
@media (min-width: 768px) {
    .md\:block {
        display: block !important;
    }
    .md\:inline-block {
        display: inline-block !important;
    }
    .md\:inline {
        display: inline !important;
    }
    .md\:flex {
        display: flex !important;
    }
    .md\:hidden {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex !important;
    }
    .lg\:block {
        display: block !important;
    }
    .lg\:hidden {
        display: none !important;
    }
}
