/* LOGO DESIGN */

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

.logoimg {
    width: 4rem;
}

h1 {
    margin-left: 0.5rem;
    color: #333333;
    font-size: 1rem;
    line-height: 1rem;
}

/* MENUE DESIGN */

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

/* SOCIALMEDIA DESIGN */

.socialmedia-nav {
    display: none;
    box-sizing: border-box;
    height: 2rem;
    width: 2rem;
    fill: #333333;
    background-color: #f9f5f0;
    border-color: #333333;
    border-style: solid;
    border-width: 1px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.9;
    transition: all 0.5s;
}

.socialmedia-nav:hover {
    transform: scale(1.2);
}

/* 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;
}

.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%);
    transition: all 0.5s ease-in-out;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

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

.nav-link:hover {
    color: #d4a017;
    font-style: italic;
}

.nav-blume {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    opacity: 80%;
    filter: blur(0.5px);
}

/* TABLET VIEW */

@media (min-width: 48rem) {

.menue-container {
    width: 11rem;
}

.socialmedia-nav {
    display: block;
}

}

/* DESKTOP VIEW */

@media (min-width: 64rem) {

/* 
.nav {
    position:sticky;
    width: 500px;
    justify-content: right;
    transform: translateX(0%);
}

.nav-list {
    flex-direction: row;
}        

.burger {
    display: none;
}


.nav-blume {
    display: none;
} */

.nav-blume {
    width: 50%;
}

}