/*
    ------------------------
    Reset
    ------------------------
    Resets are minimal and kept to only what's needed.
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/*
    ------------------------
    Elements
    ------------------------
*/
/** Standard **/
body {
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

header {
    align-items: center;
    display: flex;
    height: 6rem;
    padding: .4rem 0 0 .8rem;
}

h1 {
    color: var( --color-brand-gs );
    font-family: 'Ubuntu', sans-serif;
    font-size: 3.2rem;
    margin-bottom: .3rem;
}
h2 {
    color: var( --color-txt-h2 );
    font-family: 'Ubuntu', sans-serif;
    font-weight: 200;
}

main {
    height: 100%;
    width: 100%;
}

footer {
    background: var( --color-bg-footer );
    border-radius: .6rem 0 0 0;
    bottom: 0;
    color: var( --color-txt-footer );
    font-size: .9rem;
    padding: .1rem .4rem .4rem 1rem;
    position: fixed;
    right: 0;
}
footer a {
    text-decoration: none;
}

/** Specfic Elements **/
#live-ticker .platform-icon img {
    display: inline-block;
    height: 2.4rem;
    transform: translateY( .3rem );
    width: auto;
}


/*
    ------------------------
    ID Styles
    ------------------------
*/
#live-button {
    background: var( --color-bg-livebtn );
    border: 8px solid var( --color-border-livebtn );
    border-radius: 100%;
    box-shadow: 4px 4px 12px var( --color-shadow-livebtn );
    color: var( --color-txt-livebtn );
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    margin:2.3rem;
    padding: 1rem 2.2rem;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;
    transition: all .4s ease-in-out;
    /* z-index: 999; */
}
#live-button:hover {
    background: var( --color-bg-livebtn-hover );
    border: 8px solid var( --color-border-livebtn-hover );
    box-shadow: 0 0 12px var( --color-shadow-livebtn );
    color: var( --color-txt-livebtn-hover );
    transition: all .4s ease-in-out;
}

#main-image {
    display: block;
    position: absolute;
}

#find-us {
    background: var( --color-bg-findus );
    border-radius: 1.6rem;
    color: var( --color-txt-findus );
    display: block;
    font-size: 2.4rem;
    font-size: calc( 1.2vw + 1.2vh + 2vmin );
    padding: 2.2rem 10rem 2.2rem 3.8rem;
    position: absolute;
}

#logo-facebook {
    bottom: 1rem;
    display: block;
    height: 6.4rem;
    height: calc( 4vw + 4vh );
    opacity: .8;
    position: absolute;
    transition: all .6s ease-in-out;
    right: 1rem;
    width: auto;
}
a.brand-fb:hover #logo-facebook {
    bottom: 4rem;
    opacity: 1;
    transform: scale( 2 ) rotate( 13deg );
    transition: all .6s ease-in-out;
}

#live-ticker-container {
    background: var( --color-bg-ticker );
    bottom: 13%;
    box-shadow: 0 2px 8px var( --color-shadow-ticker );
    left: 0;
    overflow: hidden;
    padding: .64rem 0 1rem 0;
    position: fixed;
    width: 100%;
}
#live-ticker {
    animation: ticker-scroll 16s linear infinite;
    color: var( --color-txt-ticker );
    display: inline-block;
    font-size: 2.1rem;
    padding-left: 100%;
    white-space: nowrap;
}
#live-ticker-text {
    display: inline-block;
}
#live-ticker-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
}
#live-ticker-platform {
    font-size: .9rem;
    font-weight: 800;
}
#live-ticker-from,
#live-ticker-until {
    display: inline-block;
    font-family: 'Ubuntu Mono', monospace;
    padding: .1rem 1rem;
}
#live-ticker-from {
    background: var( --color-bg-ticker-from );
    border-radius: .5rem;
}
#live-ticker-until {
    background: var( --color-bg-ticker-until );
    border-radius: .5rem;
}
#live-ticker-location {
    color: var( --color-txt-ticker-location );
    font-size: 1.6rem;
    margin: 0 .6rem;
}
#broadcasting-location {
    font-weight: 600;
}
#live-ticker-join {
    font-weight: 500;
    margin-left: 2rem;
}
/* ----- Ticker animation ----- */
@keyframes ticker-scroll {
    0% {
        transform: translateX( 0 );
    }
    100% {
        transform: translateX( -100% );
    }
}


/*
    ------------------------
    Class Styles
    ------------------------
*/
.gs-icon {
    display: inline-block;
    height: 4rem;
    transform: translateY( 0.3rem );
    width: auto;
}

.find-us-shadow {
    text-shadow: 3px 3px 4px var( --color-shadow-findus );
}

footer .date {
    font-family: 'Ubuntu Mono', monospace;
    font-weight: 600;
}
footer .date span {
    font-size: 1.2rem;
}

/** Branding **/
/* ----- Gentle Shopper ----- */
.brand-gs {
    color: var( --colour-brand-gs );
    font-family: 'Ubuntu', sans-serif;
    font-style: normal;
    font-weight: 600;
}
#fb-link .brand-gs {
    font-size: 2.6rem;
    font-size: calc( 1.6vw + 1.6vh + 2.4vmin );
}

/* ----- Jayro ----- */
.brand-jayro {
    color: var( --color-txt-brand-jayro );
    display: inline-block;
    font-family: 'Londrina Sketch', monospace;
    font-size: 1.16rem;
    font-weight: 800;
    margin: 0 .12rem;
    text-shadow: 0 0 2px var( --color-shadow-jayro );
    transform: translateY( .1rem );
    -webkit-transition: all .45s ease-in-out;
    -ms-transition: all .45s ease-in-out;
    -o-transition: all .45s ease-in-out;
    transition: all .45s ease-in-out;
}
.brand-jayro:hover {
    color: var( --color-txt-brand-jayro-hover );
    transform: rotate( -3deg ) scale( 1.12 ) translateX( .07rem );
    -webkit-transition: all .45s ease-in-out;
    -ms-transition: all .45s ease-in-out;
    -o-transition: all .45s ease-in-out;
    transition: all .45s ease-in-out;
}

/* ----- Coder Jason ----- */
.brand-cj {
    display: inline-block;
    font-family: 'Ubuntu Sans', sans-serif;
    -webkit-transition: all .45s ease-in-out;
    -ms-transition: all .45s ease-in-out;
    -o-transition: all .45s ease-in-out;
    transition: all .45s ease-in-out;
}
.brand-cj:hover {
    transform: scale( 1.13 ) rotate( -3deg );
    -webkit-transition: all .45s ease-in-out;
    -ms-transition: all .45s ease-in-out;
    -o-transition: all .45s ease-in-out;
    transition: all .45s ease-in-out;
}
.brand-cj em {
    font-style: normal;
}
.brand-coder {
    font-weight: 700;
}
.brand-coder span {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.4rem;
    font-weight: 500;
    margin-left:-.2rem;
    transform: translate( .2rem, .6rem );
}
footer .brand-cj {
    font-size: .88rem;
    margin: 0 .2rem;
}
footer .brand-coder {
    color: var( --color-txt-brand-coder );
}
footer .brand-coder span {
    font-size: 2.2rem;
    line-height: 1rem;
    transform: translateY( .44rem );
}
footer .brand-jason {
    color: var( --color-txt-brand-jason );
}


/* 
    ------------------------
    Functional Classes
    ------------------------
*/
.hide {
    display: none;
    opacity: 0;
    transform: scale( 0 );
}
.appear {
    display: block;
    opacity: 1;
    transform: scale( 1 );
    -webkit-transition: all 2.6s ease-in-out;
    -ms-transition: all 2.6s ease-in-out;
    -o-transition: all 2.6s ease-in-out;
    transition: all 2.6s ease-in-out;
}

.main-image-start {
    height: 34vh;
    left: 60%;
    opacity: 0;
}
.move-left {
    left: 4%;
    height: 78vh;
    margin-top: 1.8rem;
    opacity: 1;
    -webkit-transition: opacity 1.2s ease-in-out, left 2.8s ease-in-out, height 2.8s ease-in-out;
    -ms-transition: opacity 1.2s ease-in-out, left 2.8s ease-in-out, height 2.8s ease-in-out;
    -o-transition: opacity 1.2s ease-in-out, left 2.8s ease-in-out, height 2.8s ease-in-out;
    transition: opacity 1.2s ease-in-out, left 2.8s ease-in-out, height 2.8s ease-in-out;
}

.find-us-start {
    right: 0;
    top: 0;
}
.find-us-appear {
    position: absolute;
    right: 12%;
    top: 24vh;
    transform: rotate( -13deg );
    -webkit-transition: all 2.8s ease-in-out;
    -ms-transition: all 2.8s ease-in-out;
    -o-transition: all 2.8s ease-in-out;
    transition: all 2.8s ease-in-out;
}


/*
    ------------------------
    Screen Size Adjusments
    ------------------------
*/
@media screen and ( max-width: 1000px ) {
    #main-image {
        height: 64vh;
    }

    .reg {
        display: none;
    }
}

@media screen and ( max-width: 900px ) {
    header {
        height: 10rem;
    }
    header .gs-icon {
        display: none;
    }

    .live-button {
        top: 4rem;
    }

    #main-image {
        height: 62vh;
        margin-top: 3rem;
    }

    #find-us {
        background: var( --color-bg-findus-900px );
        font-size: 2.4rem;
        padding: 1.2rem 9rem 1.2rem 2.8rem;
    }
    .find-us-appear {
        position: absolute;
        right: 8%;
        top: 33%;
        transform: rotate( -13deg );
        -webkit-transition: all 2.8s ease-in-out;
        -ms-transition: all 2.8s ease-in-out;
        -o-transition: all 2.8s ease-in-out;
        transition: all 2.8s ease-in-out;
    }
    #find-us .brand-gs {
        font-size: 3rem;
    }
    #logo-facebook {
        height: 7.2rem;
        width: auto;
    }
}