/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&family=Grandstander:ital,wght@0,100..900;1,100..900&display=swap');

/* Nav styling */
body {
    color: #090909;
    background-color: #fff;
    background: linear-gradient(#fff, #e1f5ff);
    background-attachment: fixed;
    margin: 0;
    font-family: 'Atkinson Hyperlegible Next', Arial, Helvetica, sans-serif;
    text-align: center;
}

header {
    background-color: #000;
    margin: 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

::-webkit-scrollbar {
    background: linear-gradient(#fff, #e1f5ff);
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #000;
    border: 2px solid #000;
}

header h1 {
    font-family: 'Grandstander', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #FACA16;
    font-size: 20pt;
    display: flex;
    flex-direction: row;
}

nav { 
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-flex;
    margin: 0 .5em;
}

nav ul.pagenav {
    font-size: 16pt;
    text-transform: uppercase;
}

nav ul.pagenav li a {
    color: #3abeff;
}

nav ul.pagenav li a.active {
    color: #C0E8FF;
}

h1 {
    line-height: 1em;
    padding: 0;
    margin: 2%;
    margin-top: 8%;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.hero {
    min-width: 80%;
    max-width: 80%;
}

section {
    background-color: #C0E8FF;
    padding: 2%;
    margin: 0 2%;
    margin-top: 8%;
}

footer {
    background-color: #000;
    color: #fff;
    position: static;
    padding: 1%;
}

footer h3 {
    font-size: 20pt; 
    line-height: 1em;
    padding: 0;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer li {
    font-family: 'Grandstander', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding: 2%;
}

footer li::before {
    content: '🥭';
    vertical-align: middle;
    padding-right: 2%;
}

footer li img {
    min-width: 75px;
    max-width: 75px;
    vertical-align: middle;
}

footer li img.discord {
    min-width: 100px;
    max-width: 100px;
}

footer li {
    color: #FACA16;
}

footer li span {
    vertical-align: top;
    padding-left: 1%;
    font-size: 14pt;
}

/* Gallery styling */

.quicknavi {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin: 10% auto;
    background-color: #C0E8FF;
    width: fit-content;
    padding: 3% 5%;
}

.quicknavi a::before {
    content: "🔗";
}

.quicknavi a {
    font-size: 15pt;
    text-decoration: none;
    color: #00283d;
}

img {
    min-width: 90%;
    max-width: 100%;
}

hr {
    border: none;
    padding: 2%;
}

/* Prices styling */
.notes {
    font-style: italic;
}

table {
    background-color: #7dd3ff;
    border-collapse: collapse;
    max-width: 100%;
    display: block;
    margin: 0% auto;
}

th {
    background-color: #5cc9ff;
}

th, td:first-of-type {
    font-weight: bold;
}

table, th, td {
    border: 2px solid #C0E8FF;
    width: fit-content;
}

th, td {
    padding: .5em;
}

td, .notes {
    color: #00283d;
}

.addons table td:nth-of-type(2) {
    font-size: 10.5pt;
}

section:last-of-type {
    margin-bottom: 10%;
}


@media screen and (min-width: 700px) {
    /* Nav styling */

    .hero {
        min-width: 60%;
        max-width: 60%;
    }
    
    nav {
        padding: 1%;
        flex-direction: row;
    }

    h1 {
        font-size: 32pt;
        margin-top: 5%;
    }

    ul li h1 {
        font-size: 30pt;
    }

    nav ul.pagenav {
        font-size: 20pt;
    }

    p, td, th {
        font-size: 16pt;
    }

    h2 {
        font-size: 23pt;
    }

    h3 {
        font-size: 20pt;
    }

    footer h3 {
        font-size: 25pt;
    }

    footer li {
        padding: 1%;
    }

    footer li, footer li span {
        font-size: 16pt;
        vertical-align: middle;
    }

    footer li img {
        min-width: 100px;
        max-width: 100px;
    }

    footer li img.discord {
        min-width: 125px;
        max-width: 125px;
    }


    /* Gallery styling */

    .quicknavi {
        margin: 5% auto;
        margin-bottom: 8%;
    }

    .quicknavi a {
        font-size: 20pt;
    }
   
    img {
        min-width: 70%;
        max-width: 90%;
    }

    .art {
        
    }

    .art {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    /* Prices styling */
    section {
        margin-top: 5%;
    }

    table {
        max-width: 80%;
    }

    .addons table td:nth-of-type(2) {
        font-size: 14pt;
    }

    section:last-of-type {
        margin-bottom: 5%;
    }
}

@media screen and (min-width: 1000px) {
    /* Nav styling */

    h1 {
        font-size: 40pt;
    }

    nav ul.pagenav {
        font-size: 25pt;
    }
}

@media screen and (min-width: 1400px) {
    /* Nav styling */
    body {
        margin-top: 7%;
    }

    header {
        position: absolute;
    }

    h1 {
        margin-top: 3%;
        font-size: 35pt;
    }

    .hero {
        max-width: 30%;
        min-width: 30%;
    }

    section {
        width: 75%;
        margin: 3% auto;
    }

    h2 {
        font-size: 28pt;
    }
    
    nav {
        padding: .5% 1%;
    }
    
    nav ul.pagenav {
        font-size: 23pt;
    }

    footer li {
        padding: .5%;
    }

    /* Gallery styling */
    
    h1 {
        margin-bottom: 0;
    }

    .quicknavi {
        margin: 0;
        flex-direction: row;
        justify-content: center;
        column-gap: 2%;
        width: auto;
        background-color: transparent;
    }

    .art {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: center;
    }
    
    img {
        min-width: 100%;
        max-width: 100%;
        vertical-align: middle;
    }

    /* Price styling */
}

@media screen and (min-width: 1900px) {
    /* Nav styling */

    body {
        margin-top: 5%;
    }
    
    nav {
        padding: .25% .5%;
        justify-content: space-evenly;
    }
    
    nav ul.pagenav {
        font-size: 20pt;
    }

    h1 {
        font-size: 30pt;
    }

    h2 {
        font-size: 25pt;
    }

    p, td, th {
        font-size: 14pt;
    }

    section {
        max-width: 55%;
        padding: 1%;
    }

    .hero {
        min-width: 25%;
        max-width: 25%;
    }

    footer {
        padding: 1%;
    }

    footer li::before {
        padding-right: 1%;
    }

    footer li span {
        padding-left: .5%;
    }

    /* Gallery styling */
    .art {
        max-width: 75%;
        margin: 0 auto;
    } 

    .art {
        
    }
}