@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body{
    
    display: flex;
    flex-direction: column;
    /* height: 100vh; */

    background-image: url("../img/neoclassicalBedroomLandscape.png");
    background-size: cover;
    background-position-y: bottom;

    background-position: center bottom;
    background-repeat: none;

}

*{
    margin: 0;
    padding: 0;
}

header{
    height: 20vh;
    background: linear-gradient(
      hsl(0, 0%, 0%) 0%,
      hsla(0, 0%, 0%, 0.738) 19%,
      hsla(0, 0%, 0%, 0.541) 34%,
      hsla(0, 0%, 0%, 0.382) 47%,
      hsla(0, 0%, 0%, 0.278) 56.5%,
      hsla(0, 0%, 0%, 0.194) 65%,
      hsla(0, 0%, 0%, 0.126) 73%,
      hsla(0, 0%, 0%, 0.075) 80.2%,
      hsla(0, 0%, 0%, 0.042) 86.1%,
      hsla(0, 0%, 0%, 0.021) 91%,
      hsla(0, 0%, 0%, 0.008) 95.2%,
      hsla(0, 0%, 0%, 0.002) 98.2%,
      hsla(0, 0%, 0%, 0) 100%
    );

    align-items: center;
    display: flex;
    
}

section{
    min-height: 80vh;
    background-color: white;
    display: grid;
    grid-template-columns: 2fr 21fr 5fr;
    grid-template-rows: 1rem auto;
    align-content: start;
    row-gap: 3rem;
    /* margin-top: 20vh; */
    margin-top: 20vh;
    padding-bottom: 10rem;
    
}




#screen{
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
}

h1{
    margin-left: 5rem;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    color: rgba(255,255,255,0.6);
    z-index: 100;
    font-size: 6rem;
    margin-top: auto;
}

.headerLink{
    
    font-family: "Inter", sans-serif;
    color: rgba(255,255,255,1);
    text-decoration: none;
    margin-right: 6rem;
    font-size: 1.4rem !important; 
    font-weight: 110;
    /* font-weight: 100; */

    /* transition-duration: 300ms; */
    letter-spacing: 3px;
    margin-top: auto;
    margin-bottom: 3rem;
}

.headerLink:hover{
    transform: translateY(-1rem);
}

#homeHeader{
    margin-left: auto;
}

p{
    font-family: "Inter", sans-serif;  
    height: min-content;
}

h1{
    margin-right: 0;
    margin-top: auto;
}

#nav{
    width: auto;
    margin-left: auto;
    height: 100%;
    position: relative;
}

header{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#headingDiv{
    display: flex;
    position: relative;    
    height: 100%;
}

#nav{
    margin-left: 5rem;
    width: 100%;
    display: flex;
}

#nav a{
    font-size: clamp(1vw, 0.1rem + 1.175vw, 2vw);
}

h1{
    font-size: clamp(3vw, calc(4vw + 1.1rem), 8vw);
}

header{
    z-index: 1001;
}

#menu-bar a {
    /* border: 2px solid red !important; */
    /* opacity: 1 !important; */
    z-index: 1002;
    /* background-color: yellow; */
    /* font-size: rem; */
}

#menu-bar {
    top: 0;
    left: 0;
    padding-top: 8rem; /* Platz für den Header */
    padding-left: 3rem;
}

#screen {
    pointer-events: none;
}

@media (orientation:portrait){


    header{
        height: 15dvh;
        margin-bottom: 0;

    }

    .headerLink{
        display: none;
    }

    h1{
        font-size: 5vh;
        margin-top: auto;
        margin-right: auto;
        /* margin: ; */
        margin: auto auto 0 5vw;
    }

    section{
        margin-top: 15dvh;
    }

    .menu-btn{
        margin: auto 3rem 3vw auto;
        z-index: 1001;
        
    }

}