/* CSS Document */

.header-information {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding-top: var(--wp--preset--spacing--50);
}

.header-wrapper.full-width .header-information{    
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.header-information a{
	text-decoration: none;
}

.header-information .logo-and-title{
	display: flex;
    align-items: center;
    column-gap: 25px;
	justify-content: center;
    padding-bottom: var(--wp--preset--spacing--50);
}

.header-information .vfd-title{
    font-family: var(--wp--preset--font-family--title-font);
    font-size: var(--wp--preset--font-size--x-large);
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.header-information .vfd-description{
    font-family: var(--wp--preset--font-family--body-regular);
    font-size: var(--wp--preset--font-size--large);
    font-style: italic;
    margin: 0;
}

.header-wrapper.full-width .logo-and-title,
.header-wrapper.full-width .menu-bar {
    /* Nav menu will drop below header */
	flex: 1 1 100%;
}

.header-wrapper.bg-primary, 
.header-wrapper.full-width .menu-bar.bg-primary {background-color: var(--wp--preset--color--primary);}
.header-wrapper.bg-secondary, 
.header-wrapper.full-width .menu-bar.bg-secondary {background-color: var(--wp--preset--color--secondary);}
.header-wrapper.bg-tertiary,
.header-wrapper.full-width .menu-bar.bg-tertiary {background-color: var(--wp--preset--color--tertiary);}
.header-wrapper.bg-black,
.header-wrapper.full-width .menu-bar.bg-black {background-color: var(--wp--preset--color--black);}
.header-wrapper.bg-white,
.header-wrapper.full-width .menu-bar.bg-white {background-color: var(--wp--preset--color--white);}
.header-wrapper.text-black, 
.header-wrapper.text-black a, 
.header-wrapper.full-width .menu-bar.text-black {color: var(--wp--preset--color--black);}
.header-wrapper.text-white, 
.header-wrapper.text-white a, 
.header-wrapper.full-width .menu-bar.text-white {color: var(--wp--preset--color--white);}






/* Mobile Menu Style */
.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.mobile-menu-container.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    max-width: 350px;
    min-width: 280px;
    height: 100%;
    background-color: #fff;
    padding: 20px;
    margin: 0;
    z-index: 3;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 10px;
}

.mobile-menu-list a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.mobile-menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    cursor: pointer;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: var(--wp--preset--color--primary);
    border-radius: 5px;
    box-shadow: 0 0 0.50em 0.15em rgba(40, 59, 146, 0.25);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--wp--preset--color--white);
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.mobile-menu-toggle.active span {
    background-color: var(--wp--preset--color--white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}





@media screen and (min-width: 681px){
    .mobile-menu-container,
    .mobile-menu-toggle {
        display: none !important;
    }
	
    .header-information .site-title{
        text-align: left;
    }
	
}

@media screen and (max-width: 680px){
    .header-wrapper .logo-and-title {
        flex: 1 1 100%;
        flex-wrap: wrap;
    }
    
    .header-information h2, 
    .header-information h3 {
        text-align: center;
    }
    
    .menu-bar > .header-menu {
        display: none;
    }
}