/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .custom-header-content {
        padding-top: 30px !important;
        padding-bottom: 20px !important;
        justify-content: center !important;
    }

    .custom-header-content-wrapper {
        max-width: 90% !important;
        margin-right: 0 !important;
        text-align: center !important;
    }

    .custom-header-content .section-title-wrapper {
        font-size: 2em !important;
        color: #fff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow */
    }

    .custom-header-content .site-header-text p {
        font-size: 1em !important;
        color: #fff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow */
    }

    /* Adjust image size and positioning */
    #wp-custom-header img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        object-position: center !important;
    }
}

/*////////////////////////////////*/
/* Container for the site branding */
.site-branding {
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: flex-start; /* Align content to the start (left) */
    text-align: left; /* Left align text */
}

/* Custom logo styling */
.custom-logo-link {
    margin-right: 20px; /* Adjust margin to move the logo more to the left */
}

/* Site identity styling */
.site-identity {
    display: inline-block;
    text-align: left; /* Keep the text alignment left */
}

/* Reset styles for site title and description */
.site-title,
.site-description {
    margin: 0; /* Remove default margins */
}

/* Hover and active color changes for menu items */
#primary-menu-wrapper a:hover,
#primary-menu-wrapper a:focus,
#primary-menu-wrapper .current-menu-item > a {
    color: #FCDC89 !important; /* Change hover and active color to Stratagenius gold/yellow */
}

/* Ensure other text elements retain their original styling */
#primary-menu-wrapper a {
    color: inherit; /* Use inherited color for normal state */
    font-size: inherit; /* Use inherited font size */
}