/* ==========================================================================
   Header (desktop #header + #mobileHeader + toggle button)
   ========================================================================== */

/* Header */
#header {
    position: relative;
    z-index: 200;
}
#desctopHeader {
    position: relative;
}
.header-wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    height: 130px;
    align-items: center;
    gap: 15px;
    padding: 10px 27px;
    border-bottom: 10px solid #f2ddac;
    background: linear-gradient(to bottom, #0b3e27 0%, #197149 100%);
    box-shadow: 2px 3px 7px rgb(0 0 0 / 30%);
}
.header-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../img/icons/patern.png);
    background-size: cover;
    background-position: center;
}
.header-wrap > * {
    position: relative;
}
.header-wrap__logo {
    max-width: 230px;
}
.header-wrap__logo img {
    width: 100%;
    display: block;
}
.header-wrap__slogan {
    max-width: 342px;
}
.header-wrap__slogan img {
    width: 100%;
    display: block;
}
.header-wrap__social .social-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #eed6a3;
}
.header-wrap__social .social-wrap a {
    color: inherit;
    font-size: 18px;
    transition: opacity 0.2s;
}
.header-wrap__social .social-wrap a:hover {
    opacity: 0.7;
}
.header-bottom {
    position: absolute;
    left: 0;
    top: calc(100% - 8px);
    filter: drop-shadow(0 5px 4px rgba(0, 0, 0, 0.3));
}
.header-bottom span {
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 6px;
    font-size: 13px;
    font-weight: 600;
    clip-path: polygon(0 0, 0% 100%, 85% 100%, 100% 0%);
    background-color: #f2ddac;
    color: #0b3e27;
    padding: 0 100px 5px 30px;
}

/* Mobile Header */
#mobileHeader {
    display: none;
    justify-content: space-between;
    align-items: center;
    height: 53px;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 0 30px;
    border-bottom: 1px solid #147749;
    box-shadow: 0 0 5px 0px #585656;
}
#mobileHeader .logo {
    max-width: 78px;
}
#mobileHeader .logo a {
    display: block;
}
#mobileHeader .logo a img {
    display: block;
    width: 100%;
}
#mobileHeader .right-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
#mobileHeader .right-side a {
    font-size: 23px;
    text-align: right;
    margin-bottom: -5px;
}
#mobileHeader .right-side a:hover,
#mobileHeader .right-side a:active {
    color: #bea98a;
}
@media screen and (max-width: 900px) {
    #mobileHeader {
        display: flex;
    }
    #desctopHeader {
        display: none;
    }
}

/* Toggle Menu Button */
.header-wrap__toggle {
    display: none;
}
@media screen and (max-width: 900px) {
    .header-wrap__toggle {
        display: block;
    }
    .header-wrap__toggle a {
        color: #eed6a3;
        font-size: 24px;
        transition: opacity 0.2s;
    }
    .header-wrap__toggle a:hover {
        opacity: 0.7;
    }
}

