@charset "UTF-8";

/* LOGO DESIGN */
.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 14.2rem;
    margin-left: 0.8rem;
}

    .logoimg {
        width: 4rem;
    }

/* MENUE DESIGN */
.menue-container {
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    gap: 2rem;
    margin-right: 0.8rem;
}

    /* SOCIALMEDIA DESIGN */
    .socialmedia-nav {
        display: none;
        box-sizing: border-box;
        height: 2rem;
        width: 2rem;
        margin-bottom: 10px;
        fill: #333333;
        background-color: transparent;
        border-color: #333333;
        border-style: solid;
        border-width: 1px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s;
    }

    .socialmedia-nav:active {
        border-width: 2px;
        transform: scale(0.5);
    }

    /* BURGER DESIGN */
    .burger {
        display: block;
        align-self: right;
        cursor: pointer;
    }

        .bar {
            height: 0.15rem;
            width: 2rem;
            background: #333333;
            margin: 0.3rem 0;
            transition: 0.5s;
        }

        /* BURGER MENUE OPEN */
        .nav--open {
            transform: translateX(0) !important;
            opacity: 100 !important;
        }

        .nav--open .nav-list{
            opacity: 100;
        }

        .burger--open .bar:nth-child(1) {
            transform: translateY(0.45rem) rotate(45deg);
        }

        .burger--open .bar:nth-child(2) {
            opacity: 0;
        }

        .burger--open .bar:nth-child(3) {
            transform: translateY(-0.45rem) rotate(-45deg);
        }

/* NAV DESIGN */
.nav {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0rem;
    justify-content: center;
    align-items: center;
    background-color: #e5e1dc;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

    .nav-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        opacity: 0;
        transition: all 0.4s ease-in-out;
    }

        .nav-link {
            color: #333333;
            font-size: 2rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.1s;
        }

        .nav-link:hover {
            font-size: 2.3rem;
        }

        .nav-link:active {
            color: #d4a017;
        }

        .navblume {
            z-index: -1;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80%;
            transform: translate(-50%, -50%);
            opacity: 20%;
        }

/* TABLET VIEW */
@media (min-width: 48rem) {

.socialmedia-nav {
    display: block;
}

}

/* DESKTOP VIEW */
@media (min-width: 64rem) {

.navblume {
    width: 50%;
}

}