@font-face {
    font-family: "Sackers Gothic";
    src: url('Sackers\ Gothic\ Std\ Medium.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IM Fell Great Primer";
    src: url('IMFellGreatPrimer-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

:root {
    font-family: "IM Fell Great Primer", serif;
    font-weight: 400;
    font-style: normal;

    --primary: #ADADAD;
    --secondary: #131313;
    --text-primary: #FDFDFD;
    --text-secondary: #CFCFCF;
    --text-hyperlink: #5E5E7F;
    --background-colour: #FEFEFE;
    --fog-colour: #D1D1D1;
}

h1, h2, h3, h4, h5, a {
    font-family: "Sackers Gothic";
    margin: 0;
}

h5 {
    font-size: x-small;
}

h3 {
    font-size: medium;
}

a {
    color: var(--text-hyperlink);
    cursor: pointer;
    z-index: 2;
    position: relative;
}

html {
    background-color: var(--background-colour);
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 60px;
}

/* breakpoints */
@media(min-width: 750px) {
    h1 {
        font-size: 72px;
    }
}

.hidden {
    display: none !important;
}

.modal {
    align-content: center;
    justify-content: center;
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: transparent;
    width: 85%;
    position: relative;
    text-align: center;
    /* overflow-y: auto; */
}

.modal-close {
    position: fixed;
    color: var(--text-primary);
    left: 85%;
    top: 10%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    transition: background-color 100ms ease-in-out;
    z-index: 11;
}
.modal-close:hover {
    cursor: pointer;
    color: var(--secondary);
    background: rgb(255, 255, 255);
    transition: background-color 100ms ease-in-out;
}

.modal-art {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-nav-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 11;
}

.modal-nav-prev {
    font-size:xx-large;
    color: rgba(200,200,200,0.7);
    cursor: pointer;
}

.modal-nav-prev:hover > span {
    color: var(--background-colour);
}

.modal-nav-next {
    font-size:xx-large;
    color: rgba(200,200,200,0.7);
    cursor: pointer;
}

.modal-nav-next:hover > span {
    color: var(--background-colour);
}

.full-background-image {
    position:fixed;
    width: 100%;
    height: 25%;
    z-index: 0;
    background-image: linear-gradient(to bottom, transparent, var(--background-colour)), url('../assets/serpentmound.jpg');
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    min-height: 190px;
}

.header-area-dark {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    min-height: 190px;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(to bottom, transparent, #131313), url('../assets/serpentmound.jpg')
}

.header-canvas {
    background: transparent;
    position: absolute;
    width: 100%;
    height: 190px;
    z-index: 1;
}

.large-canvas {
    background: transparent;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-logo {
    width: 100%;
    object-fit: contain;
    z-index: 2;
}

@media (min-width: 750px) {
    .header-logo {
        width: 50%;
    }
}

@media (min-width: 1250px) {
    .header-logo {
        width: 35%;
    }
}

@media (min-width: 1550px) {
    .header-logo {
        width: 25%;
    }
}

.split-space {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-grow: 1;
}

.header-links-area {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-links-area > h3 {
    padding: 5px;
    color: var(--text-primary);
    z-index: 2;
}


.header-links-area > h3 > a {
    text-decoration: none;
}

.header-links-area > h3 > a:hover {
    text-decoration: underline;
}

.sticky-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(19, 19, 19, 0.9);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.sticky-logo {
    height: 40px;
    object-fit: contain;
}

.sticky-links-area {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sticky-links-area > h5 {
    margin: 0 10px;
    font-size: 14px;
    color: var(--text-primary);
}

.sticky-links-area > h5 > a {
    text-decoration: none;
}

.sticky-links-area > h5 > a:hover {
    text-decoration: underline;
}

.short-banner {
    max-height: 80px;
    min-width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--background-colour);
    z-index: 1;
    position: relative;
}

.link-centred {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-logo {
    width: 75%;
}
.link-logo > img {
    width: 100%;
}

.link-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: 300px;
    padding: 10px;
    background: var(--background-colour);
    z-index: 2;
}

.link-tree > a {
    width: 250px;
    text-align: center;
    padding: 9px;
    margin-top: 2px;
    margin-bottom: 2px;
    background-color: var(--primary);
    text-decoration: none;
    color: var(--secondary);
}

.link-tree > a:hover {
    cursor: pointer;
    background-color: var(--secondary);
        text-decoration: underline;
    color: var(--text-primary);
}


.horizontal-split {
    min-width: 100%;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.content {
    display: flex;
    flex-direction: column;
}

.content-dark {
    display: flex;
    flex-direction: column;
    background-color: var(--secondary);
}

.qr-logo {
    width: 25%;
    padding: 50px;
    align-self: center;
    background-color: var(--secondary);
}

/* home page stuff */

.showcase-area {
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
}

.showcase-area > .feature-area > iframe {
    max-height: 650px;
    max-width: 100%;
    min-width: 100%;
    min-height: 100%;
}

.art-area {
    min-height: 650px;
    max-height: 800px;
    width: 100%;
    max-width: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.feature-area {
    display: flex;
    width: 100%;
    height: 80%;
    position: relative;
    z-index: 2;
}

.feature-area > img {
    max-height: 650px;
    max-width: 100%;
    min-height: 100%;
    object-fit: cover;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}


.extend-indicators {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    align-content: space-between;
}

.extend-indicators:hover {
    cursor: pointer;
}

.extend-indicators:hover > .extend-horizontal > .extender {
    margin: 5px;
}

.extend-horizontal {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
}

.extend-horizontal:last-of-type {
    align-items: end;
}

.extender {
    width: 50px;
    height: 50px;
    margin: 15px;
    transition: margin 250ms;
}

.ul {
    border-left: 2px solid var(--background-colour);
    border-top: 2px solid var(--background-colour);
}


.ur {
    border-right: 2px solid var(--background-colour);
    border-top: 2px solid var(--background-colour);
}

.ll {
    border-left: 2px solid var(--background-colour);
    border-bottom: 2px solid var(--background-colour);
}

.lr {
    border-right: 2px solid var(--background-colour);
    border-bottom: 2px solid var(--background-colour);
}


.art-picker {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: nowrap;
    z-index: 2;
}

.art-picker-item {
    padding: 0;
    width: 95%;
    height: 100px;
    object-fit:cover;
    margin: 1px;
    border:1px solid transparent;
}

.art-picker-item:hover {
    cursor: pointer;
}

.art-picker-item-selected {
    padding:0;
    margin:0;
    width: 95%;
    height: 100px;
    object-fit:cover;
    border: 2px solid var(--text-hyperlink);
}

.art-picker-item-selected:hover {
    cursor: pointer;
}

.model-picker {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: nowrap;
    z-index: 2;
}

.model-picker-item {
    padding: 0;
    width: 95%;
    height: 100px;
    object-fit:cover;
    margin: 1px;
    border:1px solid transparent;
}

.model-picker-item:hover {
    cursor: pointer;
}

.model-picker-item-selected {
    padding:0;
    margin:0;
    width: 95%;
    height: 100px;
    object-fit:cover;
    border: 2px solid var(--text-hyperlink);
}

.model-picker-item-selected:hover {
    cursor: pointer;
}

.doc-area {
    min-width: 100%;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-self: start;
    text-align: center;
    justify-content: center;
    z-index: 1;
}

/* breakpoints */
@media(min-width: 750px) {
    .feature-area {
        
    }
    .art-picker {
    }

    .art-area {
        width: 50%;
    }

    .doc-area {
        min-width: 50%;
        max-width: 50%
    }
}

@media(min-width: 1250px) {
    .art-area {
        flex-direction: row;
    }

    .showcase-area {
        flex-direction: row;
    }

    .feature-area {
        width: 80%;
        height: 100%;
    }
    
    .art-picker {
        width: 20%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
        flex-direction: column;
    }
    
    .model-picker {
        width: 20%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
        flex-direction: column;
    }
    
    .doc-area {
    }
}

@media(min-width: 1550px) {
    .art-area {
        max-width: 35%;
    }
    .feature-area {
        
    }
    .art-picker {
        
    }
    .model-picker {

    }
    .doc-area {
        min-width: 30%;
        max-width: 30%;
    }
    .showcase-area {
        min-width: 35%;
        max-width: 35%;
    }
}


/* about page stuff */
.bio-area {
    width: 60%;
    align-self: center;
}

.bio-area > p {
    z-index: 2;
    position: relative;
}

.logo-area {
    justify-content: center;
    display: flex;
    z-index: 1;
}

.logo-area > img {
    width: 30%;
    border-radius: 50%;
    background: var(--secondary);
}

/* journal page stuff */
.centre-blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}


@media(min-width: 1250px) {
    .centre-blog {
        width: 60%;
    }
}

.blog-article {
    width: 100%;
}

.blog-subscribe {
    text-align: center;
    margin-bottom: 20px;
}


/* art page stuff */
.art-grid {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    gap: 20px;
}

.art-tile {
    width: 100%;
    height: 350px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

@media(min-width: 750px) {
    .art-tile {
        width: calc(50% - 10px);
    }
}

@media(min-width: 1250px) {

}

/* likely just 4 art tiles */
@media(min-width: 1550px) {
    .art-tile {
        width: calc(25% - 15px);
    }
}


.art-tile > img {
    display: block;
    object-fit: cover;
    height: 350px;
    width: 100%;
    transition: transform 250ms ease;
}

.art-tile:hover > img {
    transform: scale(1.1);
}

.art-tile > h3 {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    justify-self: anchor-center;
    align-self: anchor-center;
    backdrop-filter: blur(4px);
    padding: 10px;
    width: 150px;
    text-align: center;
}

.art-tile > h3 > a {
    color: var(--text-primary);
    text-decoration: none;
}

.art-tile:hover > h3 > a {
    text-decoration: underline;
}

.art-tile-headerise {
    width: 100%;
    height: 150px;
}

.art-category-split {
    display: flex;
    flex-direction: row;
}

.art-category-info {
    display: flex;
    flex-direction: column;
    z-index: 1;
    margin-left: 10%;
    margin-right: 10%;
}

.art-category-info > h3 > a:hover {
    text-decoration: underline;
}

/* playlist page stuff */ 
.playlist-area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 90%;
    align-self: center;
    margin-top: 20px;
    gap: 20px;
    z-index: 2;
}

.playlist-frame {
    border: none;
    width: calc(50% - 10px);
}

@media(min-width: 750px) {
    .playlist-frame {
        width: calc(33% - 12px);
    }
}

@media(min-width: 1250px) {
    .playlist-frame {
        width: calc(25% - 15px);
    }
}

/*
@media(min-width: 1550px) {
    .playlist-frame {
        width: calc(15% - 20px);
    }
}
*/

/* end of page stuff */
.height-filler {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

.rotate-one-eighty {
    transform: rotate(180deg);
}

.footer-area {
    display: flex;
    padding: 5px;
    flex-direction: row;
    justify-content: end;
    background: linear-gradient(to top, var(--background-colour), transparent);
    height: 190px;
    z-index: 1;
    position: relative;
}


.footer-area-dark {
    display: flex;
    padding: 5px;
    flex-direction: row;
    justify-content: end;
    background: linear-gradient(to bottom, var(--secondary), var(--fog-colour));
    height: 190px;
}

.footer-area > div > img {
    width: 150px;
    border-radius: 100%;
    margin-left: 50px;
    background: linear-gradient(135deg, transparent, #121212);
}

.footer-info-area {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-info-area > h5 > a {
    text-decoration: none;
}

.footer-info-area > h5 > a:hover {
    text-decoration: underline;
}

