/* ==========================================================================
   MENU COMPONENT
   Site Header & Navigation
   ========================================================================== */

/* --------------------------------------------------------------------------
   Header Base
   -------------------------------------------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 25;
    background-color: transparent;
    width: 115px;
    max-height: 115px;
    overflow: hidden;
    padding: 10px;
    transition: width 0.15s ease-out, max-height 0.15s ease-out, background-color 0.15s ease-out;
}

.header:hover { width: 470px; max-height: 1080px; background-color: var(--color-white) }

.header-container {
    width: 450px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.header-container .header-logo {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    background-color: transparent;
    transition: background-color 0.15s ease-out;
}

.header:hover .header-logo {
    background-color: var(--color-pink);
}

.header-logo-container {
    width: 95px;
    height: 95px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.15s ease-out, height 0.15s ease-out;
}

.header-logo-container a { width:100%; height:100%; display: flex; align-items: center; justify-content: center;}

.header:hover .header-logo-container {
    width: 100%;
    height: 100%;
}

/* Logo SVG */
.header-logo-container svg {
    width: 100%;
    height: auto;
    max-height: 100%;
    color: #D9D9D9;
    transition: width 0.15s ease-out;
}

.header-logo-container svg path {
    transition: fill 0.15s ease-out;
}

.header:hover .header-logo-container svg {
    width: 70%;
}


.header:hover .header-logo-container svg path {
    fill: var(--color-green);
}

.header-container .header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.header-container .double-text .text { color: #716B6A; }