* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    font-family: "Open-Sans", sans-serif;
}

body {
    height: 100vh;
    background-color: #6e6e6e;
    background: url(images/background-simson.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000000;
    font-size: 1.15rem;
    font-weight: bold;
    transition: 0.2s;
}

a:hover {
    color: gold;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;        
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter : blur(9px);
    border-bottom: 3px solid rgba(255, 255, 255, 0.25);
}

nav {
    width: 100%;
    height: 55px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .links {
    display: flex;
    gap: 2rem;
}

nav .logo {
    cursor: pointer;
    backdrop-filter: none;
    scale: 0.9;
    transition: scale 0.2 ease;
}

nav .logo:hover {
    scale: 1;
}

nav .toggle-btn {
    color: rgb(41, 41, 41);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.instagram-logo {
    background-color: rgba(0, 0, 0, 1);
    color: gold;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    scale: 1.1;
    transition: scale 0.2 ease;
}

.instagram-logo:hover {
    scale: 1.2;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 200px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-menu::before {
    background-color: rgba(180, 180, 180, 0.75);
    content: '';
    filter: blur(18px);
    position: absolute;
    inset: 1%;
    z-index: -1;
}

.dropdown-menu.open {
    height: 183px;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.dropdown-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu .action-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.inhalt1 {
    align-items: center;
    box-sizing: border-box;
    color: rgb(0, 0, 0);
    height: 107vh;
    margin-top: 10px;
    display: flex;
}

.section1 {
    align-items: center;
    box-sizing: border-box;
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: space-between;
    max-width: 1200px;
}

.field1 {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: auto;
    max-width: 1200px;
}

section#hero{
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: gold;
}

#hero h1{
    font-size: 5rem;
    margin-bottom: 1rem;
}

@media(max-width: 992px) {
    nav .links,
    nav .instagram-logo{
        display: none;
    }

    nav .logo {
        scale: 0.8;
    }  

    nav .toggle-btn {
        display: block;
    }

    .dropdown-menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .dropdown-menu{
        left: 2rem;
        width: unset;
    }
}