/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold Wordpress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then.
Version: 1.0
Author: Kriesi
Author URI: http://www.kriesi.at
Template: enfold
*/

/* Logos nebeneinander im Header */
.custom-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 550px; /* Abstand zwischen Logos */
}

.custom-logo {
    max-height: 160px; /* Höhe anpassen */
    height: auto;
    width: auto;
}

@media (max-width: 767px) {
    .custom-logo-wrapper {
        flex-direction: column;
        gap: 5px;
    }
}

/* Menüpunkte gleichmäßig über die Breite verteilen */
@media only screen and (min-width: 768px) {
    .html_header_top #top .av-main-nav-wrap {
        width: 100% !important;
        display: table !important;
    }

    .html_header_top #top .av-main-nav {
        display: table-row !important;
        width: 100% !important;
    }

    .html_header_top #top .av-main-nav > li {
        display: table-cell !important;
        text-align: center;
        float: none !important;
    }

    /* Optional: Abstände der Menüpunkte anpassen */
    .html_header_top #top .av-main-nav > li > a {
        padding: 0 !important;
    }
}