@font-face {
    font-family: TASAOrbiter;
    src: url(../fonts/TASAOrbiterVF.woff2) format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

* {
    /* Variablen: */
    --transitionS: 200ms;
    --transitionL: 450ms;
    --txtcolor: whitesmoke;
    --accent: #FF4E00;

    margin: 0;
    padding: 0;
    box-sizing: border-box;

    line-height: 125%;
    font-size: 16px;
    color: var(--txtcolor);
    font-family: "TASAOrbiter", sans-serif;
    font-weight: 400;

    font-synthesis: none;
    -webkit-font-smoothing: antialiased; /* Can help with overall clarity */
    -moz-osx-font-smoothing: grayscale; /* For Firefox on macOS */
}

html {
  scroll-behavior: smooth;
}

body {
    background-color: black;
    display: flex;
    overflow: hidden;    
}
/* Hier werden teaser and content geladen, bevor sie aufgerufen werden */
/* Das ganze sollte nochmal optimiert werden, um Ladezeiten zu verringern */
.contentPreLoad {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    
    content: 
    url(../img/Bishop/Bishop_Teaser.mp4);
}
.Container {
    height: 100vh;
    display: flex;
    flex: 1;
}
img {
    width: 100%;
}
p {
    font-size: 16px;
    line-height: 24px;
}
.TxtHighlight {
    font-weight: bolder;
    /* color: #ffd9c8; */
}
.BlackOnWhite * {
    color: black;
}
.WhiteOnBlack * {
    color: var(--txtcolor);
}


.DynamicBG {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.BGvideo {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
#BGHomeVid {
    opacity: 1;
}
#BGPortVid {
    display: block;
    opacity: 0;
    z-index: 0;
    transition: opacity 500ms ease-in-out;
}
.BGimg {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
#BGPortImg {
    display: block;
    opacity: 0;
    transition: opacity 500ms ease-in-out;
}

.mobileBottomSpacer {
    display: none;
}


/* ====================================================================== */
/* ===== Nav ============================================================ */

nav {
    position: sticky;
    width: 450px;
    height: 100vh;
    padding: 37px 0 37px 37px;
    display: flex;
    flex-direction: column;
    flex-shrink: unset;
    overflow-y: auto;

    /* switches scrollbar to the left
    direction: rtl; */

    background-color: #141313;
}

#LangSelect {
    display: flex;
    gap: 5px;
    margin-bottom: 37px;
}
#LangSelect p, #LangSelect a {
    text-decoration: none;
    opacity: 50%;

    transition: var(--transitionS);
}
#LangSelect a:hover {
    opacity: 100%;
    cursor: pointer;

    transition: var(--transitionS);
}
#LangSelect #LangActive {
    text-decoration: underline;
    opacity: 100%;
    cursor: default;
}

#Branding {
    margin-bottom: 50px;
    display: flex;
    text-decoration: none;
}
#BrandLogo {
    width: 120px;
    height: 120px;
    background: center / contain no-repeat url(../assets/M_white.svg);
}
#Branding p {
    margin-left: 10px;
    font-size: 50px;
    line-height: 60px;
}

.NavLinkBox {
    position: relative;
    
    margin: auto 0;
    display: flex;
    flex-direction: column;
    gap: 46px;
}
.NavLinkBox h1 {
    opacity: 50%;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;

    transition: var(--transitionL);
}
.NavLinkBox h1:hover {
    opacity: 100%;

    transition: var(--transitionL);
}

.NavArea {
    height: 40px;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;

    transition: var(--transitionL);
}
#aboutLink {
    text-decoration: none;
}
/* .NavArea p {
    margin-bottom: 20px;
} */
.NavAreaExpanded {
    /* height: 200px; */
    transition: var(--transitionL);
}
.NavAreaExpanded h1 {
    opacity: 100%;
    text-decoration: underline;
}
.NavAreaExpanded#ProjectList {
    height: 410px;
}
.NavArea#ProjectList a {
    opacity: 50%;
    padding: 20px 0 20px 20px;
    font-size: 24px;
    line-height: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;

    transition: var(--transitionL);
}
.NavArea#ProjectList a:hover {
    opacity: 100%;
    padding: 30px 0 30px 40px;
    font-size: 32px;

    transition: var(--transitionL);
}
.NavArea#ProjectList #NavArea_ActiveProject {
    opacity: 100%;
    padding: 15px 0 30px 40px;
    font-size: 32px;
    text-decoration: underline;
    line-height: normal;
    display: flex;
    flex-direction: column;
    transition: var(--transitionL);
}

.WipFlag {
    margin-bottom: -10px;
    line-height: normal;
    display: flex;
    flex-direction: column;
}
.WipFlag>span {
    margin-top: 8px;
}
#NavArea_ActiveProject span {
    margin-top: 0;
}
.DisabledProj {
    opacity: 20%;
    padding: 20px 0 20px 20px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

#Link-KAstro-active {
    opacity: 0;
   /*  background: center / contain no-repeat url("../img/Teaser_KAstro.png"); */
}


/* Animated Underline START*/
/* .NavLabel {
    position: relative;
    display: inline-block;
}

.NavLabel::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0%;
    height: 2px;
    background: var(--txtcolor);

    transition: width var(--transitionS);
}
.NavLabel:hover:after {
    width: 100%;
}
.NavLabel.LineActive .NavLabel::after {
    width: 100%;
} */
/* Animated Underline END*/ 

footer {
    margin-top: 50px;
    margin-right: 45px;
    bottom: 37px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#LegalLinks {
    display: flex;
    flex-direction: column;
}
.NavArea#LegalLinks {
    height: 30px;
}
.NavAreaExpanded#LegalLinks {
    height: 300px;
}
#LegalLinks h1 {
    opacity: 50%;
    cursor: pointer;
    margin-top: 12px;
    text-transform: uppercase;
    text-decoration: none;

    transition: var(--transitionS);
}
.NavAreaExpanded#LegalLinks h1 {
    opacity: 1;
    text-decoration: underline;
}
#LegalLinks h1:hover {
    opacity: 100%;

    transition: var(--transitionS);
}
#LegalLinks p {
    margin-top: 10px;
}
.SoMeLinks {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.SoMeLinks a {
    opacity: 50%;
    width: 20px;
    transition: var(--transitionS);
}
.SoMeLinks a:hover {
    opacity: 100%;
    transition: var(--transitionS);
}

/* Blur-gradient and color */
/* see https://exord.de/blog/blur-gradients-mit-css */
#NavGradient {
    opacity: 40%;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

#NavBlurContainer .NavBlur {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 500px;
    z-index: -1;
}
#NavBlurContainer .NavBlur:nth-child(1) {
    backdrop-filter: blur(0.5px);
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
}
#NavBlurContainer .NavBlur:nth-child(2) {
    backdrop-filter: blur(1px);
    mask-image: linear-gradient(to right, black 80%, transparent 90%);
}
#NavBlurContainer .NavBlur:nth-child(3) {
    backdrop-filter: blur(1.5px);
    mask-image: linear-gradient(to right, black 70%, transparent 80%);
}
#NavBlurContainer .NavBlur:nth-child(4) {
    backdrop-filter: blur(2px);
    mask-image: linear-gradient(to right, black 60%, transparent 70%);
}
#NavBlurContainer .NavBlur:nth-child(5) {
    backdrop-filter: blur(1.5px);
    mask-image: linear-gradient(to right, black 50%, transparent 60%);
}
#MobileNavBlur {
    display: none;
    z-index: 150;
}

#BackToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: none;
    /* border: 1px solid; */
    backdrop-filter: brightness(60%) blur(4px);
    background: center / 20px no-repeat url(../assets/Arrow.svg);
    transform: rotate(-90deg);
    z-index: 100;
    /* display gets overwritten by JS, this is only for initial load */
    display: none;
}
#BackToTop:hover {
    border: 1px solid;
    background-color: var(--accent);
}

/* Hide hamburger on desktop */
#HamburgerMenu {
    display: none;
}
#HamburgerMenu svg {
    backdrop-filter: brightness(60%) blur(4px);
    z-index: 300;
}
#HamburgerMenu.open svg {
    backdrop-filter: blur(4px);
}

#HamburgerMenu svg .line {
    fill: var(--txtcolor);
    transition: 
        transform 0.3s,
        opacity 0.2s;
    transform-origin: 10px 15px;
}
#HamburgerMenu svg .bottom {
    transform-origin: 10px 25px;
}
#HamburgerMenu.open .top {
    transform: translateY(-4.5px) rotate(45deg) translateX(3.5px);
}
#HamburgerMenu.open .bottom {
    transform: translateY(4.5px) rotate(-45deg) scaleX(1.35) translateX(3.5px);
}


/* == Nav / Media queries == */
/* Hide nav, show hamburger on small screens */
@media screen and (max-width: 800px) {
    nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        padding: 37px 37px 75px 37px;
        z-index: 200;
        background-color: #1d1d1d86;
        overflow-x: hidden;
        overflow-y: auto;

        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    /* Reset hover styles. Usually not necessary since touch input shouldnt trigger it, BUUUT on Firefox Android sometimes it does for some reason */
    .NavArea#ProjectList a:hover {
    opacity: 50%;
    padding: 20px 0 20px 20px;
    font-size: 24px;
    transition: none;
    }

    #HamburgerMenu {
        display: block;
        position: fixed;
        top: 30px;
        left: 30px;
        z-index: 300;
        background: none;
        border: none;
        font-size: 2em;
        color: var(--txtcolor);
        cursor: pointer;
    }
    #MobileNavBlur {
        display: block;
        position: fixed;
        width: 110%;
        height: 120vh;
        backdrop-filter: brightness(60%) blur(6px);

        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    nav.open, #NavBlurContainer.open, #MobileNavBlur.open {
        transform: translateX(0);
    }
    #LangSelect {
        margin-left: 60px;
        gap: 15px;
    }
    #LangSelect a {
        font-size: 22px;
        /* Makes it more tappable on mobile */
    }
    #Branding {
        margin-bottom: 50px;
    }
    #BrandLogo {
        width: 80px;
        height: 80px;
        background: center / contain no-repeat url(../assets/M_white.svg);
    }
    #Branding p {
        margin-left: 15px;
        font-size: 42px;
        line-height: 50px;
        transform: translateY(-10px);
    }
    .NavLinkBox h1 {
        font-size: 28px;
    }
    .NavLinkBox {
        gap: 20px;
    }
    .SoMeLinks {
        gap: 15px;
    }
    .SoMeLinks a {
        width: 25px;
    }
    .mobileBottomSpacer {
        display: block;
        grid-column: span 2;
        width: 100%;
        height: 75px;
    }

    /* Specific to home page only */
    #NavGradient {
        opacity: 65%;
    }
    nav .NavBlur:nth-child(1) {
    backdrop-filter: blur(0.5px);
    }
    nav .NavBlur:nth-child(2) {
        backdrop-filter: blur(1px);
    }
    nav .NavBlur:nth-child(3) {
        backdrop-filter: blur(2px);
    }
    nav .NavBlur:nth-child(4) {
        backdrop-filter: blur(3px);
    }
    nav .NavBlur:nth-child(5) {
        backdrop-filter: blur(3px);
    }
}



/* ====================================================================== */
/* ===== About Me ======================================================= */

#AboutMePage {
    padding: 98px 75px 60px 75px;
    width: 50%;
    flex-grow: 1;
    overflow-y: auto;
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;

    background-color: black;
}
#AboutMePage img {
    width: auto;
    height: 500px; 
    justify-self: left; 
    
}
#AboutMeHeader {
    display: flex;
}
#AboutMePage h1 {
    font-size: 50px;
    margin-bottom: 20px;
}
#AboutMePage h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
#AboutMePage h3 {
    font-size: 20px;
    font-weight: 700;
}
#AboutMeTxt p,#AboutMeTxt a {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
}


.CvEntry {
    margin-bottom: 20px;
}
.CvEntry p{
    font-size: 16px;
}


.Software {
    max-width: 500px;
    grid-area: 2 / 2 / 5 / 2;
}
.SoftEntry {
    margin-bottom: 24px;
}
.SoftTitle {
    display: flex;
    justify-content: space-between;
}
.SkillBar {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: rgba(255, 255, 255, 0.13);
}
.Skill {
    height: 3px;
    background-color: white;
}
.SoftEntry:hover .Skill {
    background-color: var(--accent);
}

.OtherFacts {
    max-width: 500px;
}
.OtherFacts p {
    margin-bottom: 8px;
}

/* == About Me / Media queries == */
@media screen and (max-width: 1220px) {
    #AboutMePage {
        grid-template-columns: 1fr;
        padding: 80px 35px 60px 35px;
        /* width: 100%; */
    }
    #AboutMePage img {
        height: auto;
        max-width: 100%;
    }
    .Software {
        max-width: 500px;
        grid-area: auto;
    }
}

@media screen and (min-width: 1921px) {
    #AboutMePage {
        grid-template-columns: repeat(2, 640px);
    }
}



/* ====================================================================== */
/* ===== Projects ======================================================= */

.projectFullPage {
    width: 50%;
    flex-grow: 1;
    overflow-y: auto;
    
    display: grid;
    grid-template-columns: 50% 50%;

    background-color: black;
}

/* .ProjHero {
    width: 100%;
    height: 48vh;
    max-height: 1200px;
} */

.ProjGradient {
    position: relative;
    margin-top: -10vw;
    bottom: 0;
    height: 10vw;
    grid-column: span 2;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 10;
}
.ProjHeader {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 75px 60px 75px;

    grid-column-start: span 2;
}

.ProjSummary {
    max-width: 670px;
}
.ProjSummary h1 {
    font-size: 36px;
    padding-bottom: 20px;
}

.ProjInfo {
    margin: 0 0 10px 0;
    min-width: 240px;
    max-width: 300px;
    flex-grow: 1;
}
.ProjInfoSection {
    padding: 8px 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.ProjInfoSectionDiv {
    border-bottom: 1px solid white;
}
.ProjInfoSection h1 {
    font-weight: 700;
    text-align: right;
    opacity: 50%;
    margin-bottom: -20px;
}

.ImgFullWidth {
    max-width: 100%;
    grid-column: span 2;
    object-fit: cover;
}
.VidShowcase {
    grid-column: span 2;
}

.YTVideoContainer {
    padding: 75px 75px 60px 75px;
    height: 70vh;
    min-height: 800px;
    grid-column: span 2;
    text-align: center;
}
.YTVideoContainer h1 {
    font-size: 36px; 
}

.Proj1col1row {
    grid-column: span 2;

    padding: 40px 75px 40px 75px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
.Proj1col1row p {
    max-width: 670px;
}
.Proj2col1row {
    grid-column: span 2;

    padding: 40px 75px 40px 75px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.Proj2col2row {
    grid-column: span 2;

    padding: 40px 75px 40px 75px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: 1fr 1fr; */
    gap: 50px;
    align-items: center;
}

.Proj2col1row p, .Proj2col2row p {
    max-width: 600px;
}

.BlockBot {
    align-self: flex-end;
}
.BlockLeftTop {
    align-self: flex-start;
}
.BlockRightBot {
    align-self: flex-end;
}
.ImgOnContent {
    width: 100%;
    border: solid 2px white;
    margin-bottom: 30px;
    object-fit: cover;
}
.img2col {
    grid-column: span 2;
    width: 100%;
}

.projectFullPage h2 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ProjBGvid {
    position: relative;
    grid-column: span 2;
    overflow: hidden;
}
.ProjBGvid video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.TimeSubline {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
}
.subtxt {
    font-size: 13px;
    opacity: 50%;
}

.workGallery {
    position: relative;
    width: 100%;
    height: inherit;
    flex-shrink: 0;
    overflow: hidden;
}
.workSlider {
    height: inherit;
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.workSlide {
    width: 100%;
    height: inherit;
    flex-shrink: 0;
}
.workSlide p {
    width: 60%;
    max-width: 1000px;
    margin: 5px 0 50px 0;
}
.workSlide_2col {
    display: flex;
    gap: 20px;
}
.workSlide_3col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.workSlide_3col p {
    width: 100%;
    max-width: 1000px;
    margin: 0 0 50px 0;
    align-content: center;
}
.workImg {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}
.GalleryControls {
    position: absolute;
    top: 90%;
    right: 0;
    width: 15%;
    min-width: 150px;
    max-width: 220px;
    height: 50px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: brightness(60%) blur(4px);
}
.GalleryControls>button {
    height: 25px;
    width: 15px;
    /* position: absolute;
    bottom: 0; */
    /* transform: translateY(-50%); */
    background-color: rgba(255, 255, 255, 0.5);
    color: white;
    border: none;
    
    cursor: pointer;
    z-index: 2;
}  
button.SliderPrev {
    /* left: 10px; */
    background: center / cover no-repeat url(../assets/Carousel_ArrowL.svg);
}
button.SliderNext {
    /* right: 10px; */
    background: center / cover no-repeat url(../assets/Carousel_ArrowR.svg);
}
.carousel-indicators {
    /* position: absolute; */
    display: flex;
    width: 80%;
    justify-content: center;
    margin: 0 8px;
    gap: 5px;
}
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-style: solid;
    border-color: white;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    transition: var(--transitionS)
}
.carousel-indicators button.active {
    background: white;
    width: 20px;
}

/* == Other work == */
#ProjOther {
    display: block;
    padding: 0 35px;
}
#OtherSpacer {
    height: 40px;
}

.AccordPart {
    width: 100%;
    height: 200px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    /* background-color: #997782; */
    transition: var(--transitionL);
}
.TileExpanded {
    height: auto;
    transition: var(--transitionL);
}

.workYear {
    font-weight: 400;
    font-size: 24px;
    color: var(--txt-invert);
}

.AccordPart.TileExpanded .workDesc {
    max-height: 700px;
    opacity: 100%;

    /* transition: var(--transitionL); */
}
.AccordPart .workImg {
    object-fit: cover;
    object-position: center;
}
.close-btn {
    display: none;
    margin-top: 11px;
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    background: center / cover no-repeat url(../assets/close_w.svg);
}
.AccordPart.TileExpanded .close-btn {
    display: block;
    flex-shrink: 0;
}
.AccordPart .GalleryControls {
    display: none;
}
.AccordPart.TileExpanded .GalleryControls {
    display: flex;
    width: unset;
    top: unset;
    bottom: 0;
}
.workView>button {
    display: none;
    height: 25px;
    width: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    
    cursor: pointer;
    z-index: 2;
}
.AccordPart.TileExpanded .workView>button {
    display: block;
}
.workView {
    position: relative;
    width: 33vw;
    max-width: 700px;
    height: inherit;
    flex-shrink: 0;
    overflow: hidden;
    
    /* background-color: antiquewhite; */
}
.workImg {
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    transition: transform 0.5s ease-in-out;
}

.AccordHead {
    width: 60%;
    height: 100%;
    max-width: 1000px;

    padding: 54px 60px 54px 0;
    /* background-color: brown; */
}
.workInfoWrapper {
    display: flex;
    justify-content: space-between;
}
.workHeading {
    margin-bottom: 10px;
    font-size: 36px;
    color: var(--txtcolor);
}
.workDesc {
    padding-top: 20px;

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

    /* transition: var(--transitionL); */
}

/* ===== Bishop ===== */
#ProjBishop {
    background-color: black(255, 255, 255);
}

#Bishop_fullConcept {
    grid-template-columns: 2fr 1fr;
    background-color: white;
}
#Bishop_fullConcept_txt {
    display: block;
}
#Bishop_fullConcept_frontBack {
    grid-column: span 2;
}
#Bishop_arm {
    height: auto;
    background-color: white;
}
#Bishop_head {
    height: 70vh;
    background: top / contain no-repeat url(../img/Bishop/Bishop_Headshapes.jpg) white;
}
#Bishop_head h2, #Bishop_head h3, #Bishop_head p {
    padding-left: 20px;
}
#Bishop_Mood {
    height: 80vh;
    min-height: 660px;
    padding-bottom: 100px;
    background: top / contain no-repeat #1d1d1d url(../img/Bishop/Moodboard_phase1.jpg);
}
#Bishop_world {
    height: 30vw;
    min-height: 780px;
    background: left / cover no-repeat url(../img/Bishop/Map_Solaris.jpg);
}
#Bishop_world_img {
    width: auto;
    max-height: 400px;
}
#Bishop_model {
    background-color: black;
}
#Bishop_model_arm {
    grid-row: span 2;
}
#Bishop_fullConcept img, #Bishop_arm img, #Bishop_model img, #Bishop_model2 img {
    width: 100%;
}

/* ===== Keele Astrograph ===== */
#ProjKAstro {
    background-color: black;
}
#KAstro_rig {
    height: 68vh;
    justify-content: space-between;
    align-items: baseline;
    background: center / contain no-repeat url(../img/KAstro/KAstro_rig.jpg);
}
#KAstro_rig .BlockRightBot {
    grid-area: 2 / 2 / 2 / 2;
}
#KAstro_dual {
    height: 65vh;
    background: left / contain no-repeat url(../img/KAstro/KAstro_colorways_linked.jpg);
}
#KAstro_dual img {
    display: none;
}


/* ===== Waldlotsen ===== */
#Wald_artDir {
    align-items: start;
    height: 60vw;
    min-height: 1000px;
    background: center / cover no-repeat url(../img/Waldlotsen/Goslar_CoverRendering.jpg);
}
#Wald_GeoNodes img {
    width: 90%;
    max-width: 707px;
    margin: 40px 75px 40px 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 32px 16px hsla(207, 79%, 54%, 0.856); 
}
#Wald_Anim {
    height: 60vh;
    min-height: 600px;
}


/* ===== Hraesvelgr ===== */
/* #ProjHraes {
    background-color: rgb(32, 27, 24);
}
*/
#Hraes_rig_block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}
#Hraes_rig_full {
    width: 100%;
    flex: 4;
    min-height: 200px;
    background: top / cover no-repeat url(../img/Hraes/Hraes_rig_full.png);
}

/* ===== Shattered Skies ===== */
#PSS_EJS {
    height: 30vw;
    min-height: 40vw;
    background: center / cover no-repeat url(../img/PSS/EJS_3Quarter_BG.jpg);
}
#PSS_EJS img, #PSS_Pilot img {
    display: none;
}
#PSS_Pilot {
    grid-template-columns: 2fr 1fr;
    height: 40vw;
    min-height: 450px;
    background: center / cover no-repeat url(../img/PSS/250930_Sky_AlexPiloting_Sunset_21by9.jpg);
}
#PSS_Pilot h2, #PSS_Pilot p {
    color: black;
}
#PSS_Pilot_Pic {
    background: none;
}
#PSS_Pilot_Txt {
    align-self: flex-start;
    max-width: 400px;
    padding-right: 10px;
}
/* #PSS_Helmet_history {
    display: grid;
    grid-template-columns: 1fr 1fr;
} */
#PSS_Helmet_history {
    grid-column: span 2;
    display: flex;
}
#PSS_Helmet_rigging {
    align-self: center;
}

/* ===== Other work ===== */
/* #Other_cd {
    height: 780px;
} */


/* == Projects / Media queries == */
@media screen and (max-width: 1220px) {
    #projectFullPage {
        grid-template-columns: 1fr;
    }
    .ProjHeader {
        flex-direction: column;
        justify-content: space-between;
        padding: 0 35px 60px 35px;
    }
    .ProjInfo {
        max-width: unset;
    }
    .Proj1col1row {
        padding: 40px 35px 40px 35px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
    }
    .Proj2col1row {
        padding: 40px 35px 40px 35px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
    }
    .Proj2col2row {
        grid-column: span 2;

        padding: 40px 35px 40px 35px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
    }
    .YTVideoContainer {
        padding: 75px 35px 60px 35px;
        height: 70vh;
    }
    .workSlide p {
        width: 100%;
        max-width: unset;
    }
    .workSlide_3col {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #OtherSpacer {
        height: 80px;
    }
    .AccordPart {
        display: block;
        overflow: hidden;
    }
    .AccordHead {
        width: 100%;
        padding: 54px 0 54px 0;
    }
    .workView {
        width: 100%;
    }


    #Bishop_Mood {
        height: auto;
    }
    #Bishop_fullConcept {
        grid-template-columns: 1fr;
    }
    #Bishop_fullConcept_frontBack {
        grid-column: unset;
    }
    #Bishop_world_img {
        width: unset;
        max-height: unset;
    }
    #Bishop_head h2, #Bishop_head h3, #Bishop_head p {
        padding-left: 0;
    }
    #Bishop_head {
        align-items: end;
    }

    #KAstro_rig {
        height: 80vh;
    }
    #KAstro_rig .BlockRightBot {
        grid-area: 3 / 1 / 3 / 1;
    }
    #KAstro_dual {
        height: unset;
        display: flex;
        flex-direction: column-reverse;
        background: none;
        /* background: bottom / contain no-repeat url(../img/KAstro/KAstro_colorways_linked.jpg); */
    }
    #KAstro_dual img {
        display: block;
        width: 100%;
        transform: scale(1.18);
    }

    #Wald_artDir {
        height: 60vw;
        min-height: 850px;
    }
    #Wald_GeoNodes {
        display: flex;
        flex-direction: column;
        justify-content: left;
    }
    #Wald_GeoNodes img {
        width: 80%;
        margin: 40px;
    }

    #Hraes_rig_full {
        min-height: 350px;
    }

    #PSS_EJS {
        height: auto;
        min-height: unset;
        background: none;
    }
    #PSS_EJS img {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        transform: scale(1.18);
    }
    #PSS_Helmet_history {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    }
}

/* Extra breakpoint for PSS_Pilot due to its background image */
@media screen and (max-width: 1560px) {
    #PSS_Pilot {
        grid-template-columns: 1fr;
        height: auto;
        min-height: unset;
        background: none;
    }
    #PSS_Pilot h2, #PSS_Pilot p {
        color: unset;
    }
    #PSS_Pilot_Pic {
        display: block;
        height: 40vh;
        width: 100%;
        transform: scale(1.18);
        background: center / cover no-repeat url(../img/PSS/250930_Sky_AlexPiloting_Sunset_21by9.jpg);
    }
    #PSS_Pilot_Txt {
        align-self: unset;
        max-width: unset;
        padding-top: 40px;
        padding-right: 0;
    }
    #PSS_Helmet_details .workSlide_3col {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: min-content auto;
        gap: 20px;
    }
    #PSS_Helmet_details .workSlide_3col p {
        justify-self: start;
        height: fit-content;
        margin-bottom: 50px;
        max-width: 650px;
    }
}
