/**********************
Global
**********************/

@font-face {
    font-family: "Biscuit Chicken W05 Regular";
    src: url("/assets/fonts/9e4bb272-ac1b-40f2-8deb-ecbf01e6a96d.woff2") format("woff2"), url("/assets/fonts/20556c21-fd32-4a02-a816-d247cb28ecb7.woff") format("woff");
}

:root {
    --orange: #FCB221;
    --pink: #ed8aaf;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Bangers", cursive;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: orange;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    outline: none;
}

img,
picture {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 800px) {
    body {
        align-items: start;
    }
}


/*********
Header
***********/

.header {
    font-size: 50px;
    text-decoration: underline;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.header.orange {
    color: var(--orange);
}

@media (max-width: 800px) {
    .header {
        font-size: 40px;
    }
}


/************
Button Loading
************/


.button {
    background-color: var(--orange);
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    border: 1px solid #212121;
    box-shadow: -3px 3px #212121;
    transition: .3s;
    cursor: pointer;
    display: block;
}

.button:hover {
    box-shadow: 0 0 #212121;
}

.button.loading {
    position: relative !important;
    pointer-events: none !important;
    color: transparent !important;
}

.button.loading::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: loading 1s ease infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}


/*******
Page
*********/

.page {
    margin: auto;
    padding: 30px 20px;
    max-width: 750px;
}

.page.full {
    padding: 0;
    max-width: none;
}

/*********
TV
**********/
.tv {
    position: relative;
    display: none;
}

.tv.active {
    display: block;
}

.tvImage {
    pointer-events: none;
    border-radius: 10px;
}

.tvContent {
    position: absolute;
    top: 12.2%;
    overflow-y: scroll;
    left: 18.2%;
    width: 49%;
    height: 67%;
    background-color: white;
    border-radius: 13% 13% 11% 12%;
}

.tvContent::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.tvNav {

}

.tvLink {
    height: 5%;
    width: 3%;
    position: absolute;
}

.tvLinkHome {
    bottom: 29.2%;
    right: 25.1%;
}

.tvLinkMenu {
    bottom: 29.2%;
    right: 20.5%;
}

.tvLinkShop {
    bottom: 29.2%;
    right: 15.8%;
}

.tvLinkAbout {
    bottom: 21%;
    right: 25%;
}

.tvLinkContact {
    bottom: 21%;
    right: 20.5%;
}

.tvLinkSocial {
    bottom: 21.5%;
    right: 16%;
}


@media (max-width: 800px) {
    .tvContent {
        top: 15%;
        left: 9.5%;
        width: 81%;
        height: 59%;
        border-radius: 12% 13% 12% 11%;
    }

    .tvLink {
        height: 7%;
        width: 11%;
    }

    .tvLinkHome {
        bottom: 13%;
        right: 83%;
    }

    .tvLinkMenu {
        bottom: 13%;
        right: 69%;
    }

    .tvLinkShop {
        bottom: 13%;
        right: 56.8%;
    }

    .tvLinkAbout {
        bottom: 5.5%;
        right: 83%;
    }

    .tvLinkContact {
        bottom: 5.5%;
        right: 69.5%;
    }

    .tvLinkSocial {
        bottom: 5.5%;
        right: 57%;
    }
}

/*******
Off
********/

#offContent {
    background-color: #0b0a0b;
}

#offMessage {
    text-align: center;
    font-size: 3.5vw;
    font-family: "Biscuit Chicken W05 Regular", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: var(--pink)
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

#off .tvLinkHome::after {
    background-image: url(/assets/img/dot.png);
    background-size: cover;
    content: "";
    height: 25%;
    width: 20%;
    display: block;
    right: -37%;
    position: relative;
    top: -28%;
    animation: blink-animation 2s steps(5, start) infinite
}

#off .tvLinkShop::after {
    position: relative;
    background-image: url(/assets/img/pink-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    bottom: 175%;
    right: -71%;
    display: block;
    width: 307%;
    height: 262%;
    z-index: 1;
    transform: rotate(145deg);
}

@media (max-width: 800px) {
    #offMessage {
        font-size: 8vw;
    }

    #off .tvLinkHome::after {
        font-size: 25px;
        right: -40%;
        top: 1%;
    }

    #off .tvLinkShop::after {
        width: 172%;
        height: 298%;
    }

}

/**************
Main / store
****************/

#storeContent {
    background-color: #0b0a0b;
}

#storeVideo {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#storeVideo.active {
    display: flex;
}

#storeHero {
    text-align: center;
    display: none;
    min-height: 100%;
    object-fit: cover;
}

#storeHero.active {
    display: flex;
}

@media (max-width: 800px) {

}

/*********
Contact
**********/

#contactInfo {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.4;
    font-family: "Noto Sans", sans-serif;
}

#contactInfo > a {
    text-decoration: underline;
}

#contactForm {
    display: grid;
    row-gap: 20px;
}

#contactFormSuccess {
    text-align: center;
    margin-top: 20px;
    font-size: 30px;
    color: var(--orange);
    display: none;
}

#contactFormSuccess.active {
    display: block;
}

#contactForm > input,
#contactForm > textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #212121;
    border-radius: 0;
    font-family: "Noto Sans", sans-serif;
}

#contactForm > textarea {
    height: 100px;
    resize: none;
}

#contactFormErrors {
    color: darkred;
}

@media (max-width: 800px) {
    #contactInfo {
        font-size: 18px;
    }


}

/*********
Social
 */

#social.page {
    padding: 30px 0;
}


/******
About
 */

#aboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    align-items: center;
}

#aboutImage {
    aspect-ratio: 1;
    object-fit: cover;
}

#aboutBody {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Noto Sans", sans-serif;
}

@media (max-width: 1600px) {
    #aboutBody {
        font-size: 15px;
    }
}

@media (max-width: 1300px) {
    #aboutBody {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    #aboutGrid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    #aboutBody {
        font-size: 14px;
        order: -1;
    }
}

/******
Menu
 */

#menuContent {
    background-color: var(--orange);
}