/* 
* header styling
*/

header {
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    z-index: 10;
    width: 100vw;
    height: 90px;
    background-color: transparent;
    display: flex;
    justify-content: center;
}

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

body header .container .logo {
    color: var(--white);
    font-family: var(--fontTwo);
    font-size: var(--large-xl);
    font-weight: 600;
}

body header .container img {
    max-height: 50px;
}

header .container ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

header .container ul span {
    z-index: 2;
    height: 30px;
    width: 2px;
}

header .container ul li a {
    color: var(--white);
    font-size: var(--small-xs);
    font-weight: 500;
    font-family: var(--fontTwo);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
}

header .container .menu {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    color: var(--black);
    font-size: var(--large-l);
    margin-left: 35px;
}

header .container .menu span {
    width: 50px;
    height: 3px;
    background-color: var(--white);
}

header .container .menu:hover {
    cursor: pointer;
}

/* Menu Styling */
#menu {
    position: absolute;
    top: -90px;
    right: 0;
    width: 100vw;
    height: calc(100vh + 90px);
    background-color: var(--dark);
    color: white;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

#menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#menu ul li {
    margin: 20px 0;
}

#menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 52px;
}

#menu.open {
    display: flex; /* Show menu when open */
}

/* mobile size header */
@media only screen and (max-width: 900px) {
    header .container ul span:not(.menu span),
    header .container ul li {
        display: none !important;
    }
    #menu ul li a {
    font-size: 36px;
}
}