/* ==========================================================================
   Delta Auriga
   Header Styles
   ========================================================================== */

/**
 * Table of Contents
 *
 * 1. Header Layout
 * 2. Header Branding
 * 3. Header Navigation
 * 4. Header Actions
 * 5. Responsive Header
 * 6. Mobile Navigation
 * 7. Mobile Menu
 */

 /* ==========================================================================
   1. Header Layout
   ========================================================================== */

.auriga-header {
	position: relative;
    z-index: 100;
    min-height: 96px;
	width: 100%;
    background: var(--wp--preset--color--background);
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.auriga-header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	width: 100%;
	min-height: 80px;
	padding: 0 2rem;
}

.auriga-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 96px;
    gap: 2.5rem;
}

/* ==========================================================================
   2. Header Branding
   ========================================================================== */

.auriga-header__branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-block: .5rem;
}

.auriga-header__branding .wp-block-site-logo {
    margin: 0;
}

.auriga-header__branding .wp-block-site-logo img {
    display: block;
    width: 220px;
    height: auto;
    max-width: 100%;
    transition:
        transform .3s ease,
        filter .3s ease;
}

.auriga-header__branding .wp-block-site-logo:hover img {
    transform: scale(1.03);
    filter:
        drop-shadow(0 0 8px rgba(212,175,55,.45))
        drop-shadow(0 0 18px rgba(212,175,55,.20));
}

@media (max-width: 1024px) {

    .auriga-header__branding .wp-block-site-logo img {
        width: 200px;
    }

}

@media (max-width: 768px) {

    .auriga-header {
        min-height: 80px;
    }

    .auriga-header__inner {
        min-height: 80px;
    }

    .auriga-header__branding .wp-block-site-logo img {
        width: 165px;
    }

}

/* ==========================================================================
   3. Header Navigation
   ========================================================================== */


/* ==========================================================================
   4. Header Actions
   ========================================================================== */



/* ==========================================================================
   5. Responsive Header
   ========================================================================== */



/* ==========================================================================
   6. Mobile Navigation
   ========================================================================== */



/* ==========================================================================
   7. Mobile Menu
   ========================================================================== */