/*
 Theme Name:   Avantage-AAC
 Theme URI:    http://avantage.bold-themes.com
 Description:  Avantage is a Consulting WordPress Theme
 Author:       John Doe
 Author URI:   http://example.com
 Template:     avantage
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  avantage-aac
*/

/* ============================================
   Dual logo layout
   ============================================ */

/* Flex container */
.btLogoArea .logo.logo--dual {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btLogoArea .logo.logo--dual .logo-primary,
.btLogoArea .logo.logo--dual .logo-secondary {
    line-height: 0;
}

/* Explicit height for both logos — beats the parent's global img rule */
.btLogoArea .logo.logo--dual .logo-primary img,
.btLogoArea .logo.logo--dual .logo-secondary img {
    height: 100px;
    width: auto;
    display: block;
    transition: height 300ms ease;
}

/* Sticky header */
.btStickyHeaderActive.btMenuHorizontal .mainHeader .btLogoArea .logo.logo--dual .logo-primary img,
.btStickyHeaderActive.btMenuHorizontal .mainHeader .btLogoArea .logo.logo--dual .logo-secondary img {
    height: 70px;
}

/* Centered menu */
.btMenuHorizontal.btMenuCenter .logo.logo--dual {
    justify-content: flex-start;
}

/* Centered-below menu */
.btMenuHorizontal.btMenuCenterBelow .logo.logo--dual {
    justify-content: center;
}

/* Vertical menu */
.btMenuVertical .btLogoArea .logo.logo--dual {
    justify-content: center;
    flex-wrap: wrap;
}
.btMenuVertical .btLogoArea .logo.logo--dual .logo-primary img,
.btMenuVertical .btLogoArea .logo.logo--dual .logo-secondary img {
    height: 84px;
}

/* RTL */
.rtl .btLogoArea .logo.logo--dual {
    flex-direction: row-reverse;
}