.nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav {
    width: 100%;
    padding: 16px 20px;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;

    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(10px);
    border-bottom: .8px solid white;
}

nav.scrolled, nav.open {
    background: white;
    border-bottom: 1px solid black;
}

nav.scrolled .logo, nav.open .logo {
    color: black;
}

nav.scrolled .mib1,
nav.scrolled .mib2,
nav.open .mib1,
nav.open .mib2 {
    background: black;
}

nav .logo {
    color: white;
    font-size: 18px;
    font-weight: 300;
    min-width: 240px;
}

nav a {
    text-decoration: none;
}

nav .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

nav .menu-icon-bar {
    width: 32px;
    height: 2px;
    background-color: white;
    border-radius: 20px;
    transform-origin: center;
    transition: all 0.3s ease;
}

.menu-icon.open .mib1 {
    transform: rotate(45deg) translateY(5px);
}

.menu-icon.open .mib2 {
    transform: rotate(-45deg) translateY(-5px);
}

/* Mobile-Menü */
nav ul.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    visibility: hidden;

    transition: max-height 0.4s ease, visibility 0.3s ease;

    text-align: center;
    padding: 50px 0;
    border-bottom: 1px solid black;
    flex-direction: column;
}

nav.open ul.nav-menu {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
}

nav ul.nav-menu li {
    margin: 40px 0;
}

nav ul.nav-menu li a {
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
    color: black;
    transition: all .3s ease;
}

nav ul.nav-menu li a:hover {
    font-weight: 500;
    scale: (1.2);
}

@media screen and (min-width: 768px) {
    nav {
        padding: 16px 50px;
    }
}

/* DESKTOP-NAVIGATION ab 1200px */
@media screen and (min-width: 1200px) {
    nav {
        padding: 16px 100px;
    }

    nav .menu-icon {
        display: none;
    }

    nav ul.nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        max-height: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding: 0;
        border-bottom: none;
        transition: none;
    }

    nav ul.nav-menu li {
        margin: 0 20px;
        list-style: none;
    }

    nav ul.nav-menu li a {
        color: white;
        font-size: 14px;
        font-weight: 300;
    }

    nav.scrolled ul.nav-menu li a {
        color: black;
    }
}

@media screen and (min-width: 1200px) {

    .responsive-padding {
        padding: 16px 0px;
    }

    .nav-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px; 
        display: flex;
        align-items: center;
        justify-content: space-between; 
    }

}

  
  
  
