@font-face {
    font-family: 'Blonkra';
    src: url('/fonts/Blonkra.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stack Sans Headline';
    src: url('/fonts/StackSansHeadline.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Akt';
    src: url('./fonts/Akt.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Monilora';
    src: url('/fonts/Monilora.ttf') format('truetype');
}

body { 
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    min-height: 100dvh;
    position: relative;
    }

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3; 

    background-image: radial-gradient(circle, rgba(137, 178, 224, 1) 0%, rgba(217, 229, 214, 1) 50%, rgba(255, 255, 255, 1) 100%, rgba(237, 221, 83, 1) 0%);
    background-repeat: no-repeat;

}

.grain-overlay::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;

    background-image: url("/assets/grain-blue.png");
    background-size: 20%;
    background-repeat: contain;
    opacity: 0.25;
}

.cello::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;

    background-image: url("/assets/cellophane.jpg");
    background-size: 100%;
    background-repeat: contain;
    opacity: 0.2;
}

.navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 15%;

}

.navbar-logo {
    width: 6em;
    margin: 0;
    padding-top: 3dvh;
    padding-left: 6dvh;
    padding-bottom:8dvh;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding-left: 3dvh;
    padding-bottom: 5em;
    max-width: 15vh;

}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1em;
    color: royalblue;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Monilora', sans-serif;
    font-weight: 200;
    text-shadow: 0.05rem 0.05rem 0.1rem #7d96bf;
}

.navbar a:hover {
    color: midnightblue;
    font-size: 1.3em;
    transition: color 0.2s, font-size 0.5s;
}

.content {
    display: flex;
    flex-direction: column;
    width: 48%;
    margin: 0;
    padding: 20dvh 0 20dvh 10dvh;
}

.left-bio {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
}

.left-bio h1 {
    font-family: 'Monilora', sans-serif;
    color: #10104a;
    font-weight: 600;
    font-size: 3em;
    text-shadow: 0.1rem 0.1rem 0.1rem #485D81;
}

.left-bio h2 {
    font-family: 'Stack Sans Headline', serif;
    color: #485D81;
}

.left-bio h3 {
    font-family: 'Stack Sans Headline', serif;
    color: #485D81;
    font-weight: 200;
    margin-bottom: 0;
}

.right-bio {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
}

.right-bio h1 {
    font-family: 'Monilora', sans-serif;
    color: #10104a;
    font-weight: 600;
    font-size: 3em;
    text-shadow: 0.1rem 0.1rem 0.1rem #485D81;
    text-align: right;
}

.right-bio h2 {
    font-family: 'Stack Sans Headline', serif;
    color: #485D81;
    text-align: right;
}

.left-bio p {
    font-size: 1em;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 300;
    color: midnightblue;
}

.right-bio p {
    font-size: 1em;
    text-align: right;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 300;
    color: midnightblue;
    padding-bottom: 4em;
}

.photos {
    display: flex;
    flex-direction: column;
    padding: 30dvh 0 10dvh 10dvh;
    width: 19%;
}

.portrait {
    width: 90%;
    border-radius: 1em;
    border: 0.3em double #485D81;
    filter: drop-shadow(0.03em 0.03em 1em rgba(137, 178, 224, 0.7));
}

.para-photo {
    padding-top: 30dvh;
}

.paramount {
    width: 100%;
    border-radius: 1em;
    border: 0.3em double #485D81;
    filter: drop-shadow(0.03em 0.03em 1em rgba(137, 178, 224, 0.7));
}

.concert {
    width: 100%;
    border-radius: 1em;
    border: 0.3em double #485D81;
    filter: drop-shadow(0.03em 0.03em 1em rgba(137, 178, 224, 0.7));
}

.concert-photo {
    padding-top: 10dvh;
}

.break {
    flex-basis: 100%;
    height: 0;
}

footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: center;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 200;
    font-size: small;
    color: midnightblue;
}

@media screen and (max-width: 768px) {

    body { 
        flex-direction: column;
        margin: 0; 
        position: relative;
        -webkit-text-size-adjust: none;
        text-size-adjust: none;
    } 

    body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3; 

    background-image: radial-gradient(circle, rgba(137, 178, 224, 1) 0%, rgba(217, 229, 214, 1) 50%, rgba(255, 255, 255, 1) 100%, rgba(237, 221, 83, 1) 0%);
    background-repeat: no-repeat;

    }

    .grain-overlay::before {
        background-size: 30%;
    }

    .navbar {
    width: 100%;    
    max-width: 100%; 
    min-height: auto;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: 1rem 0;
    box-sizing: border-box;
    }

    .navbar-logo {
    width: 6em;
    margin: 0 0 1rem 0;
    padding: 0;
    }

    .navbar ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    }

    .navbar a {
    padding: 0.5rem 1rem;
    }

    .break {
        flex-basis: 100%;
        height: 0;
    }

    .mobile-break {
        flex-basis: 100%;
        height: 0;
    }
    
    .content {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        flex-shrink: 0;
        flex-wrap: wrap;
        flex-basis: 100%;
        min-height: auto;
        flex-direction: row;
        padding: 0 2rem 0rem 2rem;
        min-width: 0;
        box-sizing:border-box;
    }

    .left-bio h1 {
        padding-top: 10dvh;
        font-size: 8dvw;
        margin: 0;
        padding-bottom: 0.7em;
    }

    .left-bio h2 {
        font-size: 6dvw;
        margin: 0;
        padding-bottom: 0.3em;
    }

    .left-bio h3 {
        font-size: 4dvw;
    }

    .right-bio h1 {
        padding-top: 10dvh;
        font-size: 8dvw;
        margin: 0;
        padding-bottom: 0.7em;
    }

    .right-bio h2 {
        font-size: 6dvw;
        margin: 0;
        padding-bottom: 0.3em;
    }

    .right-bio h3 {
        font-size: 4dvw;
    }

    .left-bio p {
        font-size: 1rem;
    }

    .right-bio p {
        font-size: 1rem;
    }

    footer {
        font-size: x-small;
    }

    .photos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items:center;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 5dvh 2rem 10dvh 2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .portrait {
        width: 100%;
    }

    .portrait, .concert-photo, .para-photo {
        padding-top: 0; 
        width: 28%;
    }

    .concert {
        width: 100%;
    }

    .paramount {
        width: 100%;
    }

}