:root {
    --text-size: ;
    --headline-size: ;
    --text-color: ;
    --background-color: ;
    --element-color-1: ;
    --element-color-2: ;
}


@font-face {
    font-family: 'HQI';
    src: url(assets/fonts/HQIBusinessFont-Regular.otf) format('opentype');
}

* {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    margin-block-end: 0;
    margin-block-start: 0;
}

ol,
ul {
    list-style: none;
}

html,
body {
    height: 100%;
    width: 100%;
}

img {
    display: block;
}

body {
    background: black;
    animation: fadeBlackToWhite 5s ease forwards;
}

/* utility classes */

.full-screen {
    height: 100%;
    width: 100%;
}

.absolute {
    position: absolute;
    left: 0;
    top: 0;
}

.hidden {
    display: none;
}

/* main structure styles */

#content-house {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

#footer {
    height: 3%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: black;
    display: none;
}

#date-announcement {
    font-size: 2rem;
    line-height: 1;
    left: .5rem;
    top: .5rem;
    position: absolute;
    color: rgb(0, 0, 0);
    padding: .5rem;
    font-family: HQI, sans-serif;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    opacity: 0;
    animation: fadeInOpacity 1s ease forwards 5s;
    width: fit-content;
    background-color: yellow;
    z-index: 2;
}

#live-stream-button {
    all: unset;
    font-size: 2rem;
    line-height: 1;
    right: .5rem;
    top: .5rem;
    position: absolute;
    color: rgb(0, 0, 0);
    padding: .5rem;
    font-family: HQI, sans-serif;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    opacity: 0;
    animation: fadeInOpacity 1s ease forwards 5s;
    width: fit-content;
    background-color: yellow;
    z-index: 2;
    cursor: pointer;
}

/* shirt with an actual motive */

.quarter-size {
    height: 33%;
    width: 33%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.quarter-size img {
    height: 100%;
    width: auto;
}

/* loading gif container */

#animation-container {
    height: 100%;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#animation-container img {
    height: 100%;
    width: auto;
}

#fashion-type-layer {
    height: 100%;
    width: 100%;
    z-index: 2;
}

#stream {
    height: 100%;
    width: 25%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    background-color: rgba(1, 1, 1, .3);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    overflow-y: auto;
    overflow-x: none;
}

.stream-open {
    right: calc(.5rem + 25%) !important;
}

#stream * {
    width: 100%;
    max-width: 100%;
    height: auto;
}

#stream img {
    width: 100%;
    height: auto;
}

/* dress shirt grid! */ 

#shirtbox-container {
    height: 100%;
    width: 100%;
    display: flex;
    opacity: 1;
    flex-wrap: wrap;
    pointer-events: none;
    z-index: 3;
}

.shirtbox {
    height: calc(100%/3 - 1rem);
    width: calc(100%/3 - 1rem);
    /* border: 2px solid blue; */
    flex-grow: 1;
    position: relative;
    margin: .5rem;
}

.shirt-1 {
    opacity: 0;
    height: 100%;
    width: 100%;
    animation: fadeInOpacity 5s cubic-bezier(1, -1, 0, 2) infinite alternate-reverse 5s; 

}

.shirt-2 {
    height: 100%;
    width: 100%;
    animation: fadeInOpacity 5s cubic-bezier(1, -1, 0, 2) infinite alternate 5s;
    height: fit-content;
}

.shirtbox img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    margin: 0 auto;
    mix-blend-mode: lighten;
}

.dressshirt-recolor-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background-color: rgb(136, 199, 255);

    -webkit-mask-image: url("assets/shirt-white-front-exclamation-mark.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;

    mask-image: url("assets/shirt-white-front-exclamation-mark.png");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    /* mix-blend-mode: difference; */

}

.dressshirt-recolor-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background-color: red;

    -webkit-mask-image: url("assets/shirt-white-back-question-mark.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;

    mask-image: url("assets/shirt-white-back-question-mark.png");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    /* mix-blend-mode: difference; */
}

/* shirt with an actual motive // not working at the moment */

.quarter-size {
    position: relative;
}

.quarter-size img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.quarter-size img:nth-child(2) {
    opacity: 0;
}

.quarter-size:hover img:nth-child(1) {
    opacity: 0;
}

.quarter-size:hover img:nth-child(2) {
    opacity: 1;
}

/* animations */

@keyframes fadeBlackToWhite {
    from {
        background: black;
    }

    to {
        background: white;
    }
}

@keyframes fadeInOpacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
