/* ================ Reset ================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

hr { border: none; }

li { list-style: none; }

a { text-decoration: none; }

img, video { -webkit-user-drag: none; }

button {
    border: none;
    background: none;
}



/* ================ Global ================ */
h1, h2, p, i, a {
    font-family: system-ui;
    color: white
}

button {
    cursor: pointer;
}

img, video {
    background: linear-gradient(to top right, rgb(20,20,20), rgb(35,35,35));
}




/* ============================================ */
/* ================ Background ================ */
/* ============================================ */
html {
    scroll-behavior: smooth;
    background-color: black;
}

body {
    min-height: 100vh;
}

body {
    --s: 80px; 
    --c1: #000000;
    --c2: #090909;

    --_g: 
    #0000 calc(-650%/13) calc(50%/13),var(--c1) 0 calc(100%/13),
    #0000 0 calc(150%/13),var(--c1) 0 calc(200%/13),
    #0000 0 calc(250%/13),var(--c1) 0 calc(300%/13);
    --_g0: repeating-linear-gradient( 45deg,var(--_g));
    --_g1: repeating-linear-gradient(-45deg,var(--_g));
    background:
    var(--_g0),var(--_g0) var(--s) var(--s),
    var(--_g1),var(--_g1) var(--s) var(--s) var(--c2);
    background-size: calc(2*var(--s)) calc(2*var(--s));
}




/* ======================================== */
/* ================ Header ================ */
/* ======================================== */
header {
    display: flex;
    flex-direction: column;
    align-items: center;

    background:  linear-gradient(rgb(24,24,24), rgb(15,15,15));
    /* box-shadow: black 0 0 15px; */
}

header a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: fit-content;
    height: 80px;
}



header hr {
    width: 100%;
    height: 2px;
    background: orange;
}



nav {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgb(24,24,24);
    box-shadow: rgba(0,0,0, 0.33) 0 8px 8px;
}

nav ul {
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: auto;
    max-width: 1080px;
    height: 27px;
    padding-left: 10px;
}

nav a {
    white-space: nowrap;
    font-weight: 500;
    margin-right: 12px;
}

nav a:hover {
    color: darkorange;
}




/* ====================================== */
/* ================ Main ================ */
/* ====================================== */
main {
    min-height: 100vh;
    padding-bottom: 40px;
    margin: 0 auto;
    max-width: 1080px;
    padding-left: 10px;
    padding-right: 10px;
}



/* ================ Section ================ */
section {
    /* min-height: 500px; */
    margin-top: 30px;
    background: rgb(15,15,15, 0.85);
    box-shadow: rgba(0,0,0, 0.50) 0 0 15px;
}

section, section h2 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    
    text-align: center;
    background: linear-gradient(rgb(49, 2, 49), rgb(39, 2, 39));
    height: 40px;
}

section h2 a {
    transition: 75ms;
}

section h2 a:hover {
    color: darkorange;
}


/* ================ Container ================ */
section ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
}




/* ========================================= */
/* ================ Customs ================ */
/* ========================================= */

/* ================ Models ================ */
.models li {
    background: black;
    overflow: hidden;
    border-radius: 5px;
    
    margin: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: rgba(0,0,0, 0.50) 0 0 12px;
}


.models li:hover {
    box-shadow: rgba(32,32,32, 0.66) 0 0 12px;
}

.models li:hover img {
    filter: brightness(1.12);
}

.models li:hover p {
    color: darkorange;
    /* background: linear-gradient(rgb(25,25,25), black); */
}

.models img, 
.models p {
    transition: filter 120ms;
}



.models img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 2/3;
}

.models p {
    display: flex;
    align-items: center;
    justify-content: center;
    
    white-space: nowrap;
    font-weight: 500;
    height: 34px;
    margin-top: -4px;
    background: linear-gradient(rgb(20,20,20), black);
}




/* ================ Navigation ================ */
#gohead {
    position: fixed;
    bottom: 25px;
    right:  25px;

    border-radius: 15px;
    width:  30px;
    height: 30px;
    background-color: rgb(80, 0, 80);
    box-shadow: rgba(0,0,0, 0.50) 0 0 12px;
}

#gohead:hover {
    background-color: rgb(115, 0, 115);
}

#gohead p {
    color: white;
    font-size: 15px;
    margin-top: -5px;
}



/* ======================================== */
/* ================ Footer ================ */
/* ======================================== */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    background:  linear-gradient(rgb(32,32,32), black);
    box-shadow: rgba(0,0,0, 0.50) 0 0 15px;
}

footer h1 {
    text-align: center;
    text-shadow: black 0 0 15px;
}