@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

body {
    background-color: #fffffc;
    margin: 0;
    padding: 0;
}

h1,
h2,
h4,
p {
    font-family: 'josefin sans', sans-serif;
    color: black;
}

h3 {
    font-family: 'lexend', sans-serif;
    color: black;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 40px;
    background-color: #FFFFFC;
    z-index: 1000;
    position: sticky;
    top: 0;
    gap: 20px;
}

.logo img {
    width: 25px;
}

.hamburger-menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.hamburger-menu-text p {
    font-family: 'lexend', sans-serif;
    font-size: 14px;
    color: black;
    text-transform: uppercase;
    margin: 0;
}

.hamburger-menu-icon {
    display: none;
    font-size: 2em;
}

.sections.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.close {
    position: absolute;
    top: 20px;
    right: 80px;
    cursor: pointer;
    width: 40px;
    line-height: 1;
    color: black;
    font-size: 2em;
    z-index: 1001;
}

.sections {
    display: flex;
    flex-direction: column;
    position: fixed;
    background-color: #FFFFFC;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    padding: 50px 20px;
    align-items: flex-start;
    justify-content: flex-start;
    visibility: hidden;
    opacity: 0;
}

.sec,
.sections a {
    text-align: left;
    width: 100%;
    margin: 20px 0;
}

.sections a {
    text-decoration: none;
    color: black;
    font-family: 'josefin sans', sans-serif;
    font-size: 5vw;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
}

.sec i {
    display: flex;
    align-items: center;
    font-size: 30px;
}

.chevron-icon.rotate {
    transform: rotate(-180deg);
}

.dropdown {
    display: flex;
    gap: 30px;
}

.fashion-inspiration-dropdown-content,
.mix-match-dropdown-content {
    display: none;
    width: 100%;
    gap: 60px;
}

.fashion-inspiration-dropdown-content a,
.mix-match-dropdown-content a {
    font-size: 2vw;
    text-transform: lowercase;
    width: fit-content;
    margin: 0;
}

.fashion-inspiration-dropdown-content.show,
.mix-match-dropdown-content.show {
    display: flex;
}

.sections a {
    color: black;
    transition: color 0.3s ease;
}

.title-sec {
    display: flex;
    gap: 50px;
}

.title-sec a {
    width: fit-content;
}

.fa-solid {
    font-weight: 1500;
}

.sections .sec:nth-child(2)>.title-sec>a:hover,
.sections .sec:nth-child(2) .dropdown a:hover {
    color: #A50100;
}

.sections .sec:nth-child(3)>.title-sec>a:hover,
.sections .sec:nth-child(3) .dropdown a:hover {
    color: #023996;
}

.sections .sec:nth-child(4)>a:hover {
    color: #097D17;
}

.sections .sec:nth-child(5)>a:hover {
    color: #434343;
}

.footer {
    display: flex;
    padding: 20px 40px;
    background-color: #000000;
    flex-wrap: wrap;
}

.footer-nav-bar {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 30px;
    padding: 5px;
    margin-bottom: 40px;
}

.footer-nav-bar a {
    text-decoration: none;
    color: white;
    font-family: 'lexend', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer-nav-bar a:nth-child(1):hover {
    text-decoration: underline;
}

.footer-nav-bar a:nth-child(2):hover {
    text-decoration: underline;
}

.footer-nav-bar a:nth-child(3):hover {
    text-decoration: underline;
}

.footer-nav-bar a:nth-child(4):hover {
    text-decoration: underline;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer-copyright h4 {
    font-size: 30px;
    text-transform: uppercase;
    margin: 0;
    color: white;
    cursor: pointer;
}

.footer-copyright p {
    font-size: 15px;
    color: white;
    margin: 0;
}

.follow-us {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    width: 50%;
    gap: 3px;
}

.follow-us-text p {
    display: flex;
    color: white;
    font-size: 15px;
}

.social-med {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    width: 80px;
}

.social-med img {
    cursor: pointer;
    height: 50%;
    margin: 0;
    padding: 0;
}

@media (max-width:1200px) {
    .sections a {
        font-size: 6vw;
    }

    .fashion-inspiration-dropdown-content a,
    .mix-match-dropdown-content a {
        font-size: 3vw;
    }
}

@media (max-width:800px) {
    .sections a {
        font-size: 7vw;
    }

    .fashion-inspiration-dropdown-content a,
    .mix-match-dropdown-content a {
        font-size: 4vw;
    }
}

@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .logo {
        text-align: center;
    }

    .hamburger-menu-icon {
        display: flex;
        font-size: 2em;
    }

    .hamburger-menu-text {
        display: none;
    }

    .close {
        position: absolute;
        top: 20px;
        right: 80px;
        cursor: pointer;
        width: 40px;
        line-height: 1;
        color: black;
        font-size: 2em;
        z-index: 1001;
    }

    .title-sec {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .title-sec a {
        width: 70%;
        text-align: left;

    }

    .sections {
        flex-direction: column;
    }

    .sections a {
        font-size: 7vw;
    }

    .sections.open {
        visibility: visible;
        opacity: 1;
    }

    .sections .sec {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .sections .dropdown {
        gap: 0;
    }


    .chevron-icon.rotate {
        transform: rotate(180deg);
    }

    .fashion-inspiration-dropdown-content,
    .mix-match-dropdown-content {
        display: none;
        width: fit-content;
        flex-direction: column;
        gap: 20px;
    }

    .fashion-inspiration-dropdown-content.show,
    .mix-match-dropdown-content.show {
        display: flex;
    }

    .fashion-inspiration-dropdown-content a,
    .mix-match-dropdown-content a {
        font-size: 4vw;
        margin: 0px;
        width: 100%;
        display: block;
    }

    .footer {
        padding: 15px 20px;
        gap: 0;
    }

    .footer-nav-bar {
        width: 50%;
        gap: 10px;
        padding: 0;
        flex-direction: column;
        order: 1;
    }

    .footer-nav-bar a {
        font-size: 10px;
    }

    .follow-us {
        row-gap: 0px;
        justify-content: flex-start;
        order: 2;
    }

    .follow-us-text p {
        font-size: 10px;
    }

    .footer-copyright {
        order: 3;
        width: 100%;
        gap: 5px;
        align-items: center;
        text-align: center;
    }

    .footer-copyright h4 {
        font-size: 15px;
    }

    .footer-copyright p {
        font-size: 7px;
        text-align: center;
    }

}