/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0; height: 100%; 
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

/* Container to hold the entire content */
.container {
    position: relative;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    overflow-y: hidden;
}

.page {
    overflow: auto !important;
    overflow-y: auto !important;
}

/* Header Menu Styles */
.menu-landscape {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4vh;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80vw;
    flex: 1;
    transition: all .5s;
}

.logo-schriftzug-container{
    display: flex;
    align-items: center;
    gap: 3vw;
}

.menu-landscape .schriftzug-landscape{
    min-height: 10px;
    height: 1vw;
    max-height: 20px;
}

.schriftzug-portrait {
    display: none;
    min-height: 10px;
    height: 1vw;
    max-height: 20px;
}

.menu-landscape .logo {
    min-height: 30px;
    height: 2vw;
    margin-left: 4vw;
}

.menu-landscape .menu-buttons-landscape {
    display: flex;
    gap: 2vw;
    justify-self: flex-start;
    padding-right: 2vw;
}

.menu-item ::selection {
    background-color: transparent;
}


.menu-landscape .menu-item {
    min-width: 50px;
    width: 3vw;
    min-height: 50px;
    height: 3.5vw;

    background-size: contain;
    background-repeat: no-repeat;
    /* Adjust size as necessary */
}

.cara { background-image: url("images/Icon_Cara.png");}
.cara:hover { background-image: url("images/Icon_Cara_Hover.png");}
.behance { background-image: url("images/Icon_Behance.png");}
.behance:hover { background-image: url("images/Icon_Behance_Hover.png");}
.instagram { background-image: url("images/Icon_Instagram.png");}
.instagram:hover { background-image: url("images/Icon_Instagram_Hover.png");}
.email { background-image: url("images/Icon_E-Mail.png");}
.email:hover { background-image: url("images/Icon_E-Mail_Hover.png");}



/* Background Illustration Styles */
.background {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.background .illustration {
    width: 100%;
    height: 100%;
    max-width: 80vw;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url('images/Background_Landscape_Yvonne_Krol_Illustration.png');
    transition: all .5s;
    margin-top: 5vh;
    z-index: -1;
}

.menu-buttons-portrait{
    width: 80vw;
    max-width: 500px;
    position: absolute;
    bottom: 5vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}

.menu-buttons-portrait .menu-item {
    width: 8vh;
    height: 10vh;

    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    /* Adjust size as necessary */
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1vh 0;
    font-family: 'Montserrat', sans-serif;
    font-size: .8em;
    color: #999;
}

footer a {
    color: #999;
    text-decoration: none;
}

footer a:hover {
    color: #666;
}



footer ::selection {
    background-color: transparent;
}

/* Media Queries */


@media screen and (orientation: portrait) and (max-width: 767px)  {
    
    .background .illustration {
        background-image: url('images/Background_Portrait_Yvonne_Krol_Illustration.png');
        background-position: top center;
        margin-top: 7vh !important;
        max-width: 90vw !important;
    }
    
    .menu-landscape{
        display: none;
    }

    .menu-buttons-landscape{
        display: none !important;
    }
    .logo-schriftzug-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .menu-landscape .logo {
        min-height: 100px;
        height: 10vh;
        margin-left: 0;
    }
    
    .page .page-logo-top-on-mobile {
        display: block;

    }
}

.page-logo-top-on-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    padding-top: 5vh;
    z-index: 1;
}

.page-logo-top-on-mobile .logo {
    min-height: 50px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .background .illustration {
        background-image: url('images/Background_Landscape_Yvonne_Krol_Illustration.png');
    }

    .menu-buttons-portrait{
        display: none !important;
    }
}

@media screen and (max-width: 1520px) {
    .background .illustration {
        max-width: 93vw;
        background-position: top center;
        margin-top: 10vh;
    }
    .menu-landscape {
        max-width: 93vw;
    }
}

@media screen and (max-width: 850px) {
    .background .illustration {
        max-width: 98vw;
    }
    .menu-landscape {
        max-width: 98vw;
    }
    
}

.page-container {
    position: relative;
    margin-top: 20vh;
    width: 80vw;
    max-width: 800px;
    font-size: .8em;
    line-height: 1.5;
    text-align: left;
    left: 50%;
    transform: translateX(-50%);
    color: #3B2609;
}

.page-container h1 {
    font-size: 1.5em;
    margin-bottom: 1em;
    color: #A861A4;
}

.page-container h2 {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #F6A61D;
}

.page-container h3 {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #5A640F;
}

.page-container h4 {
    font-size: 1em;
    margin-bottom: 1em;
    color: #3B2609;
}

.page-container a{
    color: #A861A4;
    text-decoration: underline;
}


.page-container p {
    margin-bottom: 1em;
}


