
/* -------------------------- HEADER TOP -------------------------- */

#header{
    margin-bottom: 16px;
}

#header .headerTop{
    background-color: var(--color-primary);
    padding-block: 4px;
}

#header .headerTop .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .headerTop .left{
    display: flex;
    align-items: center;
    gap: 48px;
}

#header a.headerTopLink{
    display: flex;
    align-items: center;
    gap: 12px;
}

#header a.headerTopLink img{
    width: 19px;
    height: auto;
    min-width: 19px;
    min-height: 19px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

#header a.headerTopLink.alloJardinLink img{
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
}

#header a.headerTopLink p{
    font-size: 14px;
    line-height: normal;
    font-weight: normal;
}

#header .headerTop a.headerTopLink p{
    color: var(--color-white);
}

#header .headerTop a.alloJardinLink p{
    text-decoration: underline;
}

@media (max-width: 1100px){
    #header .headerTop{
        display: none;
    }
}

/* -------------------------- HEADER -------------------------- */

#header .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-block: 0px;
    position: relative;
    z-index: 1;
}

#header .header::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 160px);
    height: 1px;
    background-color: var(--color-tertiary);
}

#header .burgerAndLogoContainer{
    display: flex;
    align-items: center;
    gap: 30px;
}

#header .logo,
#header .logo img{
    width: 200px;
    height: auto;
    aspect-ratio: 200/45;
    object-fit: contain;
    display: block;
}

@media (max-width: 1300px){
    #header .header{
        gap: 30px;
    }
    #header .logo,
    #header .logo img{
        width: 180px;
    }
}

@media (max-width: 1100px){
    #header .header::after{
        width: calc(100% - 40px);
        height: 3px;
    }
}

@media (max-width: 992px){
    #header .header{
        padding-block: 16px;
    }
    #header .burgerAndLogoContainer{
        display: grid;
        grid-template-columns: 30px auto 30px;
        gap: 30px;
        width: 100%;
    }
    #header .logo,
    #header .logo img{
        width: 160px;
        justify-self: center;
    }
}