/* Jones Studios
Author: Bec Jones 

Aspect Ratios
Phone = 214 : 463
Tablet = 3 : 4
Destop = 16 : 9

Wood Ash =          #d6cab0 - Background Color
Darkest Forest =    #282b0e - Text Color
Caramel Macchiato = #c98f48 - Circle Color
Green Bush =        #828767 - Circle Color
Cypress Vine =      #5d6950 - Alt Menu Stripe
Pine Tree =         #292e23 - Footer Color
Opulent Orange =    #f16a44 - Circle Color


*/

/* Fonts */

@font-face {
    font-family: 'Molen-Surplus';
    src: url('../font/Molen-Surplus.otf');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'BNAxelGrotesk-Bold';
    src: url('../font/BNAxelGrotesk-Bold.otf');
    font-weight: normal;
    font-style: normal;
}

/* Body */

body, html {
    background-color: #d6cab0 ;
    margin: 0;
    height: auto;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

p {
    font-family: 'BNAxelGrotesk-Bold', Courier, monospace;
    color: #282b0e;
    line-height: 1.2em;
    /* text-align:justify; */
}

h2 {
    font-family: 'BNAxelGrotesk-Bold', Courier, monospace;
    text-transform: uppercase;
    color: #282b0e;
    font-weight: normal;
}

li {
    list-style-type: none;
}

/* Nav */

#nav-menu {
    background-image: url(../img/menu-bg.svg);
    width: 100vw;
    height:100vh;
    margin: 0;
    position: fixed;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(-110%);
    transition: transform .8s ease-in-out;
}

#menu-button {
    width: 1em;
    height: calc(1em * 0.049);
    position: fixed;
    content: "";
    display: block;
    top: 1em;
    left: 1em;
    padding: 1em;
    cursor: pointer;
    background-image: url(../img/menu.svg);
    background-repeat: no-repeat;
    z-index:10;
}

#nav-menu.visible {
    transform: translateY(0);
}

#nav-menu.hidden {
    transform: translateY(-110%);
}

nav li a{
    font-family: 'Molen-Surplus';
    color: #d6cab0;
    font-size: 6em;
    text-transform: uppercase;
    transition: all 2s;
}

@media (max-width: 768px) {
    nav li a{
        font-size: 4em;
        text-transform: uppercase;
        transition: all 2s;
        line-height: 1em;
    }
}

@media (max-width: 768px) {
    nav li {
        padding-bottom: 2em;
    }
}

nav li a:hover {
    color: #c98f48;
    transition: all 2s;
}

.small-ul {
    margin-top: 2em;
}

.small-li a{
    font-family: 'BNAxelGrotesk-Bold', Courier, monospace;
    text-transform: uppercase;
    color: #d6cab0;
    font-size: 3em;
    letter-spacing: .1em;
    line-height: 1.5em;
}

@media (max-width: 768px) {
    .small-li a{
        font-size: 2em;
        letter-spacing: .1em;
        line-height: 1.5em;
    }
}

.social-nav {
    margin: 2em 0 0 40px;
}

.insta-nav {
    content: "";
    display: inline-block;
    background-image: url(../img/insta-nav.svg);
    width: 2em;
    height: 2em;
    margin-right: 1em;
}

.facebook-nav {
    content: "";
    display: inline-block;
    background-image: url(../img/facebook-nav.svg);
    width: 2em;
    height: 2em;
}

.close {
    position: fixed;
    margin: 2em;
    content: "";
    background-image: url(../img/close.svg);
    left: 0;
    top: 0;
    width: 2em;
    height: 2em;
    cursor: pointer;
}

.nav-wave {
    width: 100vw;
    height: calc(100vw * 0.032492);
    content: "";
    display: block;
    background-image: url(../img/menu-bottom.svg);
    transform: translateY(calc(100vw * 0.03));
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
}

/* Main */

.hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50vh;
}

@media (max-width: 768px) {
    .hero {
        margin-bottom: 10vh;
    }
}    

.jones-studios-logo {
    width: 30vw;
    height: calc(30vw * .707);
    background-image: url(../img/Jones-Studios-logo.svg);
    background-repeat: no-repeat;
    /* grid-column: 1 / 1;
    grid-row: 2 / 1; */
}

@media (max-width: 768px) {
    .jones-studios-logo {
        width: 80vw;
        height: calc(80vw * .707);
    }
}

/* prop-making */ 
.services {
    display: grid;
    width: 100vw;
    height: 100vh;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

@media (max-width: 768px) {
    .services {
        display: flex;
        width: 100vw;
        height: auto;
        flex-direction: column;
    }
}

.par-img-left {
    width: calc(60vh * 0.666);
    height: 60vh;
    background-repeat: no-repeat;
    background-color: #282b0e;
    border-radius: calc(60vh * 0.666 /2);
    justify-self: center;
    align-self: center;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.par-img-right {
    width: calc(60vh * 0.666);
    height: 60vh;
    /* background-image: url(../img/Jones-Studios-logo.svg); */
    background-repeat: no-repeat;
    background-color: #282b0e;
    border-radius: calc(60vh * 0.666 /2);
    justify-self: center;
    align-self: center;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

#prop-making-img {
background-image: url(../img/prop-making-img-min.jpg);
background-size: cover;
}

#themed-construction-img {
    background-image: url(../img/themed-construction-min.jpg);
    background-size: cover;
}

#costuming-img {
    background-image: url(../img/costuming-img.jpg);
    background-size: cover;
}


.textbox-right {
    justify-self: center;
    align-self: center;
    padding: 5vw 5vw 5vw 0;
}

.textbox-left {
    justify-self: center;
    align-self: center;
    padding: 5vw 0 5vw 5vw;
}

@media (max-width: 768px) {
    .textbox-left {
        padding: 5vw;
    }

    .textbox-right {
        padding: 5vw;
    }
    
}

 .textbox p {
    font-size: 2em;
 }

 @media (max-width: 768px) {
    .textbox p {
        font-size: 1.5em;
     }
 }

 .textbox h2 {
    font-size: 5em;
    margin: 0;
    font-weight: normal;
 }

 @media (max-width: 768px) {
    .textbox h2 {
        font-size: 3.5em;
    }
 }

 /* Stickers */
 .prop-making-sticker {
    width: 25vw;
    height: 25vw;
    margin: 2vw;
    background-image: url(../img/prop-making.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
 }

 @media (max-width: 768px) {
 .prop-making-sticker {
    width: 35vw;
    height: 35vw;
    margin: 2vw;
    }
 }

 .prop-making-sticker-single {
    width: 25vw;
    height: 25vw;
    margin: 2vw;
    background-image: url(../img/prop-making.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
 }

 @media (max-width: 768px) {
    .prop-making-sticker-single {
       width: 35vw;
       height: 35vw;
       margin: 2vw;
       }
    }

 .single-container-right {
    transform: translateY(65vh);
    position: absolute;
 }

 @media (max-width: 768px) {
    .single-container-right {
        right: 0;
     }
 }

 .single-container-left {
    transform: translateY(65vh);
    position: absolute;
    right: 0;
 }

 .themed-construction-sticker {
    width: 25vw;
    height: 25vw;
    margin: 2vw;
    background-image: url(../img/Themed-Construction.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
 }

 @media (max-width: 768px) {
    .themed-construction-sticker {
       width: 35vw;
       height: 35vw;
       margin: 2vw;
       }
    }

 .themed-construction-sticker-single {
    width: 25vw;
    height: 25vw;
    margin: 2vw;
    background-image: url(../img/Themed-Construction.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
 }

 @media (max-width: 768px) {
    .themed-construction-sticker-single {
       width: 35vw;
       height: 35vw;
       margin: 2vw;
       }
    }

 .costuming-sticker {
    width: 25vw;
    height: 25vw;
    margin: 2vw;
    background-image: url(../img/costuming.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
 }

 @media (max-width: 768px) {
    .costuming-sticker{
       width: 35vw;
       height: 35vw;
       margin: 2vw;
       }
}

 .costuming-sticker-single {
    width: 25vw;
    height: 25vw;
    margin: 2vw;
    background-image: url(../img/costuming.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
 }

 @media (max-width: 768px) {
    .costuming-sticker-single{
       width: 35vw;
       height: 35vw;
       margin: 2vw;
       }
}

.single-sticker-container {
    transform: translateY(0vh);
}

@media (max-width: 768px) {
    .single-sticker-container {
        transform: translateY(-20vh);
    }
}

 .sticker-divider {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    transform: rotate(15deg);
    position: relative;
 }

 .sticker-container {
    width: 100vw;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    position: absolute;
 }

 @media (max-width: 768px) {
    .sticker-container {
        margin-top: 50vh;
    }
 }

 .break {
    height: 50vh;
 }

 /* Slide Up */

.slide-up {
    width: 100vw;
    height: 100vh;
    background-color: #5d6950;
    position: fixed;
    top: 0;
    transform: translateY(110vh);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 2s;
    z-index: 10;
    overflow: visible;
 }

 .slide-up p {
    color: #d6cab0;
    font-size: 1.8em;
    max-width: 60vw;
    display: block;
 }

 @media (max-width: 768px) {
    .slide-up p {
        color: #d6cab0;
        max-width: 80vw;
     }
 }

 .slide-up h2 {
    color: #d6cab0;
    font-size: 6em;
    font-weight: normal;
 }

 @media (max-width: 768px) {
    #about-text {
        font-size: 1.2em;
    }
    }

 #about.visible {
    transform: translateY(0);
}

#about.hidden {
    transform: translateY(120%);
}

#contact.visible {
    transform: translateY(0);
}

#contact.hidden {
    transform: translateY(120%);
}

.slide-wave {
    width: 100vw;
    height: calc(100vw * 0.032492);
    content: "";
    display: block;
    background-image: url(../img/about-wave.svg);
    transform: translateY(-50vh);
    background-repeat: no-repeat;
    position: absolute;
}

/* Footer */ 

.footer-wave-1,
.footer-wave-2,
.footer-wave-3 {
    position: absolute; /* Stack the waves on top of each other */
    left: 0;
    width: 100vw;
}

.footer-wave-1 {
    background-image: url(../img/wave-1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100vw;
    height: calc(100vw * .206);
    content: "";
    display: block;
    z-index: 1;
    top: calc(0px - (100vw * 0.19));
}

.footer-wave-2 {
    background-image: url(../img/wave-2.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100vw;
    height: calc(100vw * .206);
    content: "";
    display: inline-block;
    /* transform: translateX(calc(-(100vw * .465))); */
    z-index: 1;
    top: calc(0px - (100vw * 0.145));
}

.footer-wave-3 {
    background-image: url(../img/wave-3.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    width: 100vw;
    height: calc(100vw * 0.105);
    content: "";
    display: inline-block;
    z-index: 2;
    top: calc(0px - (100vw * 0.10));
}

footer {
    background-repeat: no-repeat;
    font-family: 'BNAxelGrotesk-Bold', Courier, monospace;
    text-transform: uppercase;
    color: #c98f48;
    margin: calc(0px + (100vw * 0.25)) 0 0 0;
    width: 100vw;
    height: 50vh;
    position: relative;
}

.footer-container {
    background-color: #292e23;
    height: 100%;
    width: 100%;
    z-index: 3;
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}
.footer-img {
    width: 100px;
    height: 200px;
    background-image: url(../img/Jones-tower.svg);
    background-repeat: no-repeat;
    justify-self: center;
    align-self: center;
    /* grid-column: 1 / 1;
    grid-row: 2 / 1; */
}

.footer-text {
    justify-self: center;
    align-self: center;
    font-size: 3em;
    line-height: 2em;
}

@media (max-width: 768px) {
    .footer-text {
        font-size: 2em;
        line-height: 2em;
    }
}

footer a {
    color:#c98f48;
    transition: all 2s;
}

footer a:hover {
    color:#d6cab0;
    transition: all 2s;
}

.footer-text ul {
    padding: 0;
    margin: 0 0 1em 0;
}

.insta {
    content: "";
    display: inline-block;
    background-image: url(../img/insta.svg);
    width: 1em;
    height: 1em;
    margin-right: .5em;
}

.facebook {
    content: "";
    display: inline-block;
    background-image: url(../img/facebook.svg);
    width: 1em;
    height: 1em;
}

.copyright p {
    font-size: .5em;
    position: absolute;
    bottom: 20px;
    width: 100vw;
    color: #5d6950;
    z-index: 5;
    text-align: center;
    letter-spacing: .2em;
}

@media (max-width: 768px) {
    .copyright p {
        font-size: .4em;
        position: absolute;
        bottom: 0;
    }
}

/* Linktree */

.linktree {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.linktree-button-container {
    display: flex;
    flex-direction: column;
}

.linktree-button {
    background-color:#5d6950;
    color:#d6cab0;
    font-size: 2em;
    padding: 1em;
    border-radius: 2em;
    display: block;
    font-family: 'BNAxelGrotesk-Bold', Courier, monospace;
    text-transform: uppercase;
    text-align: center;
    margin: .7em;
}

.linktree-button a {
    color:#d6cab0;
}

.jones-studios-logo-linktree {
    width: 30vw;
    height: calc(30vw * .707);
    background-image: url(../img/Jones-Studios-logo.svg);
    background-repeat: no-repeat;
    /* grid-column: 1 / 1;
    grid-row: 2 / 1; */
}

@media (max-width: 768px) {
    .jones-studios-logo-linktree {
        width: 60vw;
        height: calc(60vw * .707);
    }
}

#email {
    color: #d6cab0;
    transition: all 2s;
}
#email:hover {
    color:#c98f48;
    transition: all 2s;
}