@import url('https://fonts.googleapis.com/css2?family=Kalnia:wght@100;200;400&display=swap');

/*Common Styles*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: 'Kalnia', serif;
    font-weight: 400;
}

html {
    font-size: 62.5%;
}

/*End of Common Styles*/


.intro-video {
    aspect-ratio: 2 / 1;
    width: min(95vw, 960px);
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
    background: #000;
}

.intro-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-audio {
    width: min(95vw, 960px);
    margin: 0 auto 2rem;
    text-align: center;
}

.intro-audio audio {
    width: 100%;
    max-width: 500px;
    height: 40px;
}

.intro {
	background-image: url("images/branding/SunsetFlow-Pink.jpg");
	background-size: cover;
    background-position: center;
    min-height: 100vh;
    margin: 10px 0 10rem 0;
    padding: 10px 0 5rem 0;
    box-sizing: border-box;
    align-content: center;
    overflow: visible;
    display: flex;
	flex-direction: column;
	align-items: center;
}

#mainheader {
    grid: inline-block;
    font-size: 40px;
    line-height: 6rem;
    color: white;
    text-shadow: 30px, 30px, 30px, black;
    font-family: 'Kalnia';
    text-align: center;
    margin-bottom: 20px;
    margin-left: 5%;
    margin-top: 20px;
    margin-right: 5%;
    justify-content: center;
    }

.introbuttons {
    font-size: 25px;
    margin: 30px;
    line-height: 2.5rem;
    align-content: center;
    justify-content: center;
}
    
#playnow, #about {
        background-color: turquoise;
        padding: 10px;
        font-family: 'Kalnia';
        font-weight: '400';
        font-size: 20px;
        color: #ffffff;
        box-shadow: 30px, 30px, 30px, black;
        color: white;
        text-shadow: 30px, 30px, 30px, black;
        line-height: 4rem;
        margin-left: 5%;
        margin-bottom: 10px;
        width: 300px;
    }

.introbody {
    grid-area: b;
    font-size: 15px;
    margin-left: 15%;
    margin-top: 40px;
    line-height: 1.5rem;
    color: purple;
    background-color: peachpuff;
    opacity: .8;
    padding: 30px;
    width: 70%;
    text-align: left;
}

#lightheader {
    grid-area: b;
    font-size: 15px;
    margin-left: 15%;
    line-height: 3rem;
    color: purple;
    background-color: peachpuff;
    opacity: .8;
    width: 70%;
    text-align: left;
}


.javabody {
    grid-area: b;
    font-size: 15px;
    margin-left: 15%;
    margin-top: 20px;
    line-height: 1.5rem;
    color: purple;
    background-color: peachpuff;
    opacity: .8;
    padding: 10px;
    width: 70%;
    text-align: center;
}

/*End INTRO*/

/*Section 1*/
.section1 {
    background-image: url("/images/branding/SunsetFlow-Pink.jpg");
    width: 100%;
    min-height: 150vh;
    background-color: pink;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 300px;
    margin-top: 10rem;
    padding: 10rem 0;
    overflow: auto;
}

.section1-video {
    width: min(95vw, 960px);
    margin: 0 auto 2rem;
    position: relative;
    z-index: 10;
    order: -1;
}

.section1-video video {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
    background: #000;
}

.videobody {
    font-size: 15px;
    margin: 2rem auto;
    line-height: 1.5rem;
    color: purple;
    background-color: peachpuff;
    opacity: .8;
    padding: 30px;
    width: 80%;
    text-align: left;
    display: block;
    overflow: visible;
    clear: both;
}

.video-audio {
    width: 100%;
    margin: 2rem auto;
    text-align: center;
}

.video-audio audio {
    width: 100%;
    max-width: 500px;
    height: 40px;
}

.section1-heading {
    font-size: 5rem;
    line-height: 4rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -.1rem;
    text-shadow: .5rem .5rem 1rem #000;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}

.infobody {
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
    background-color: darkblue;
    color: white;
    padding: 10px;
    opacity: .6;
    width: 80%;
    margin-left: 10%;
}

.hoverbody {
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
    background-color: purple;
    color: white;
    padding: 10px;
    opacity: .6;
}

.section1-icons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    justify-content: center;
}

.icon {
    width: 200px;
    background-image:url(/images/branding/TarotCardBacking_ej@2x.png);
    margin: 10px;
    border-radius: 5%;
    align-items: center;
    box-shadow: 3px 3px 20px #000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    transform: scale(.9); 
    transition: transform .5s;
}

.icon:hover {
    transform: scale(1.2);
    box-shadow: 3px 3px 20px #000;
}

.icon-img {
    position: relative;
    border-radius: 50%;
    width: 90%;
    margin-left: 5%;
}

.icon-name {
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .25rem;
    text-align: center;
    line-height: 3rem;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 10px;
    width: 70%;
    margin-left: 10%;
    margin-right: 10%;
    color: white;
}

.icon-description {
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.2rem;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 10px;
    width: 90%;
    margin-left: 5%;
    margin-bottom: 10px;
    color: white;
    background-color: purple;
    font-family: 'Arial';
    opacity: 0;
    visibility: hidden;
}

.icon:hover .icon-description {
    opacity: 100;
    visibility: visible;
    transition: 1 s;
 }
 

#begin-button {
    width: 80%;
    background-color: hotpink;
    color: white;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    box-shadow: 3px 3px 20px #000;
    cursor: pointer;
    line-height: 1 rem;
    margin-right: 10%;
    margin-left: 10%;
}

#begin-button:hover {
    transform: scale(1.2);
    box-shadow: 3px 3px 20px #000;
    transition: transform .5s;
}

@keyframes rainbow {
    0% { background-color: #ff0000; }
    16.666% { background-color: #ff9900; }
    33.333% { background-color: #ffff00; }
    50% { background-color: mediumspringgreen; }
    66.666% { background-color: turquoise }
    83.333% { background-color: #9900ff; }
    100% { background-color: #ff0000; }
  }

  #begin-button:hover {
    animation: rainbow 3s infinite;
  }

/*End of Section1*/

/*BEGIN DETAILS SECTION*/

.details {
    background-image: url("/images/branding/SunsetFlow-Pink.jpg");
    width: 100%;
    height: 150vh;
    background-color: pink;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 300px;
    padding: 10rem 0;
    overflow: scroll;
}

.details-video {
    width: min(95vw, 960px);
    margin: 0 auto 2rem;
    position: relative;
    z-index: 10;
}

.details-video video {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
    background: #000;
}

.details-audio {
    width: min(95vw, 960px);
    margin: 0 auto 2rem;
    text-align: center;
}

.details-audio audio {
    width: 100%;
    max-width: 500px;
    height: 40px;
}

.details-heading {
    font-size: 5rem;
    line-height: 5rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -.1rem;
    text-shadow: .5rem .5rem 1rem #000;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10%;
    width: 80%;
    position: relative;
}

.detailsbody {
    text-align: left;
    font-size: 10px;
    margin-top: 20px;
    background-color: darkblue;
    color: white;
    padding: 10px;
    opacity: .6;
    width: 80%;
    columns: 2;
    column-gap: 20px;
    margin-left: 10%;
    padding: 20px;
    font-family: 'arial';
    align-self: center;
    margin-bottom: 30px;
}

.section2 {
    background-image:url(/images/branding/SunsetFlow-blue.jpg);
    width: 100%;
    height: 150vh;
    background-color: pink;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible;
    padding-bottom: 60px;
    box-sizing: border-box;
    margin-bottom: 800px;
}

.section2-audio {
    width: min(95vw, 960px);
    margin: 3rem auto 2rem;
    text-align: center;
}

.section2-audio audio {
    width: 100%;
    max-width: 500px;
    height: 40px;
}

.section2-heading {
    font-size: 5rem;
    line-height: 4rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -.1rem;
    text-shadow: .5rem .5rem 1rem #000;
    margin-top: 50px;
    margin-left: 5%;
    margin-right: 5%;
    position: relative;
}

.wands-icons {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 200px;
    padding-bottom: 200px;
    padding-top: 50px;
    box-sizing: border-box;
    transition: transform 10s ease-in-out;
    z-index: 1;
}

.wands-icons img{
    width: 125px;
    margin: 10px;
    box-shadow: 3px 3px 10px black;
    transform: scale(1);
    transition: transform 1s ease;
    z-index: 1;
    position: relative;
}

.wands-icons i.change img{
    transform: scale(0);
    transform: translateZ(0);
}

.wands-icons img:hover {
    transform: scale(2);
    box-shadow: 3px 3px 20px #000;
    cursor: pointer;
    z-index: 100;
}

.wands-icons.piled {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    transition: transform 3s ease-in-out;
}

.wands-icons.piled i {
    position: absolute;
    transform: scale(2) translateY(75px);
    top: 0;
    transition: transform 3s ease-in-out;
}

.wands-icons.piled img {
    transform: translateY translateZ;
    transition: transform 1s;
}

.wands-icons.piled:hover img {
    transform: rotate(0deg);
}

.section2-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: white;
    opacity: .7;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 40px;
}

.nav-button {
    background-color: #A60DDE;
    color: #fff;
    border: none;
    padding: 20px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

.nav-button:hover {
    background-color: #A60DDE;
    color: #fff;
    border: none;
    padding: 20px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    transform: scale(1.3);
}

/*End of Section2 */ 

/*section 3*/


.container3 {
    position: relative;
}


.section3 {
    background-image:url(/images/branding/SunsetFlow-blue.jpg);
    width: 100%;
    min-height: 150vh;
    background-color: pink;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: auto;
    padding-bottom: 60px;
    box-sizing: border-box;
    margin-bottom: 800px;
}


.section3-heading {
    font-size: 5rem;
    line-height: 4rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -.1rem;
    text-shadow: .5rem .5rem 1rem #000;
    margin-top: 50px;
    margin-bottom: 10px;
    padding-bottom: 20px;
    margin-left: 5%;
    margin-right: 5%;
    
}

.stars-icons {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 200px;
    padding-bottom: 200px;
    padding-top: 50px;
    box-sizing: border-box;
    transition: transform 10s ease-in-out;
}

.stars-icons img{
    width: 125px;
    margin: 10px;
    box-shadow: 3px 3px 10px black;
    transform: scale(1);
    transition: transform 1s ease;
    z-index: 1;
    position: relative;
}

.stars-icons i.change img{
    transform: scale(0);
    transform: translateZ(0);

}

.stars-icons img:hover {
    transform: scale(2);
    box-shadow: 3px 3px 20px #000;
    cursor: pointer;
    z-index: 100;
}

.stars-icons.piled {
    display: flex;
    flex-direction: column-reverse; /* Stack items from bottom to top */
    align-items: center; /* Center items horizontally */
    transition: transform 3s ease-in-out;
}

.stars-icons.piled i {
    position: absolute;
    transform: scale(2) translateY(50px);
    top: 0; /* Adjust as needed for spacing */
    transition: transform 3s ease-in-out;
}

.stars-icons.piled img {
    transform: translateY translateZ;
    transition: transform 1s;
}

.stars-icons.piled:hover img {
    transform: rotate(0deg);
}

.section3-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: white;
    opacity: .7;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 10px;
}

/*Section 4*/


.container4 {
    position: relative;
}

.section4 {
    background-image:url(/images/branding/SunsetFlow-blue.jpg);
    width: 100%;
    min-height: 150vh;
    max-height: 800px;
    background-color: pink;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: auto;
    padding-bottom: 60px;
    box-sizing: border-box;
    margin-bottom: 800px;
}


.section4-heading {
    font-size: 5rem;
    line-height: 4rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -.1rem;
    text-shadow: .5rem .5rem 1rem #000;
    margin-top: 50px;
    margin-bottom: 10px;
    margin-left: 5%;
    margin-right: 5%;
}

.stones-icons {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 200px;
    padding-bottom: 200px;
    padding-top: 50px;
    box-sizing: border-box;
    transition: transform 10s ease-in-out;
}

.stones-icons img{
    width: 125px;
    margin: 10px;
    box-shadow: 3px 3px 10px black;
    transform: scale(1);
    transition: transform 1s ease;
    z-index: 1;
    position: relative;
}

.stones-icons i.change img{
    transform: scale(0);
    transform: translateZ(0);

}

.stones-icons img:hover {
    transform: scale(2);
    box-shadow: 3px 3px 20px #000;
    cursor: pointer;
    z-index: 100;
}

.stones-icons.piled {
    display: flex;
    flex-direction: column-reverse; /* Stack items from bottom to top */
    align-items: center; /* Center items horizontally */
    transition: transform 3s ease-in-out;
}

.stones-icons.piled i {
    position: absolute;
    transform: scale(2) translateY(50px);
    top: 0; /* Adjust as needed for spacing */
    transition: transform 3s ease-in-out;
}

.stones-icons.piled img {
    transform: translateY translateZ;
    transition: transform 1s;
}

.stones-icons.piled:hover img {
    transform: rotate(0deg);
}
.section4-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: white;
    opacity: .7;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 10px;
}

/*Section 5*/


.container5 {
    position: relative;
}

.section5 {
    background-image:url(/images/branding/SunsetFlow-blue.jpg);
    width: 100%;
    min-height: 150vh;
    max-height: 800px;
    background-color: pink;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: auto;
    padding-bottom: 60px;
    box-sizing: border-box;
    margin-bottom: 800px;
}

.section5-heading {
    font-size: 5rem;
    line-height: 4.5rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -.1rem;
    text-shadow: .5rem .5rem 1rem #000;
    margin-top: 50px;
    margin-left: 5%;
    margin-right: 5%;
}

.swords-icons {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 200px;
    padding-bottom: 200px;
    padding-top:50px;
    box-sizing: border-box;
    transition: transform 10s ease-in-out;
}

.swords-icons img{
    width: 125px;
    margin: 10px;
    box-shadow: 3px 3px 10px black;
    transform: scale(1);
    transition: transform 1s ease;
    z-index: 1;
    position: relative;
}

.swords-icons i.change img{
    transform: scale(0);
    transform: translateZ(0);

}

.swords-icons img:hover {
    transform: scale(2);
    box-shadow: 3px 3px 20px #000;
    cursor: pointer;
    z-index: 100;
}

.swords-icons.piled {
    display: flex;
    flex-direction: column-reverse; /* Stack items from bottom to top */
    align-items: center; /* Center items horizontally */
    transition: transform 3s ease-in-out;
 
}

.swords-icons.piled i {
    position: absolute;
    transform: scale(2) translateY(50px);
    top: 0; /* Adjust as needed for spacing */
    transition: transform 3s ease-in-out;
}

.swords-icons.piled img {
    transform: translateY translateZ;
    transition: transform 1s;
    box-shadow: 3px 3px 5px black;
}

.swords-icons.piled:hover img {
    transform: rotate(0deg);
}
.section5-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: white;
    opacity: .7;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 10px;
}

/*Section 6*/


.container6 {
    position: relative;
}


.section6 {
    background-image:url(/images/branding/SunsetFlow-blue.jpg);
    width: 100%;
    min-height: 150vh;
    max-height: 800px;
    background-color: pink;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: auto;
    padding-bottom: 60px;
    box-sizing: border-box;
    margin-bottom: 800px;
}

.section6-heading {
    font-size: 5rem;
    line-height: 4rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -.1rem;
    text-shadow: .5rem .5rem 1rem #000;
    margin-top: 50px;
    margin-left: 5%;
    margin-right: 5%;
}

.forces-icons {
    position: relative;
    padding-top: 50px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 200px;
    padding-bottom: 200px;
    box-sizing: border-box;
    transition: transform 10s ease-in-out;
}

.forces-icons img{
    width: 125px;
    margin: 10px;
    box-shadow: 3px 3px 10px black;
    transform: scale(1);
    transition: transform 1s ease;
    z-index: 1;
    position: relative;
}

.forces-icons i.change img{
    transform: scale(0);
    transform: translateZ(0);

}

.forces-icons img:hover {
    transform: scale(2);
    box-shadow: 3px 3px 20px #000;
    cursor: pointer;
    z-index: 100;
}

.forces-icons.piled {
    display: flex;
    flex-direction: column-reverse; /* Stack items from bottom to top */
    align-items: center; /* Center items horizontally */
    transition: transform 3s ease-in-out;
}

.forces-icons.piled i {
    position: absolute;
    transform: scale(2) translateY(75px);
    top: 0; /* Adjust as needed for spacing */
    transition: transform 3s ease-in-out;
}

.forces-icons.piled img {
    transform: translateY translateZ;
    transition: transform 1s;
}

.forces-icons.piled:hover img {
    transform: rotate(0deg);
}
.section6-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: white;
    opacity: .7;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 10px;
}

#focusbutton {
    background-color: #A60DDE;
    color: #fff;
    border: none;
    padding: 20px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

/*SHUFFLE SCENE*/
.section7 {
    background-image: url(/images/branding/SunsetFlow-blue.jpg);
    width: cover;
    height: 150vh;
    position: relative;
    overflow:scroll;
    background-size: cover;
    grid-template-rows: 20%, 80%;
}

.shufflesceneheader {
    margin: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    position: relative;
    margin-left: 5%;
    align-items: center;
    justify-items: center;
}

.shuffleButton, .gatherButton {
    background-color: purple;
    position: relative;
    font-family: 'Kalnia';
    font-weight: '400';
    font-size: 25px;
    padding: 1rem;
    color: white;
    opacity: .9;
    align-items: center;
    margin: 10px;
    justify-content: center;
    justify-items: center;
    align-content: center;
    width: 45%;
}

.shuffleButton:hover, .gatherButton:hover {
    transform: scale(1.2);
    box-shadow: 3px 3px 20px #000;
    transition: transform .5s;
}

.shuffleDescription {
    font-size: 20px;
    color: salmon;
    line-height: 1.7rem;
    padding: 10px;
    justify-self: center;
    align-self: center;
    font-weight: bold;
    font-family: 'Kalnia';
    text-align: center;
    width: 80%;
}

.tarotcardshuffle-container {
    grid-area: b;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80vw;
    height: 80vh;
    margin-top: 100px;
    margin-left: 10%;
}

.tarotcardshuffle {
    width: 200px;
    height: 300px;
    perspective: 300px;
    transition: 2s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-image: url(/images/branding/TarotCardBacking_smallweb.jpg);
    z-index: 1;
    position: absolute;
}

.shuffleactive .tarotcardshuffle-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    width: 1400px;
    height: 600px;
    margin: 0 auto;
}

.shuffle-active .tarotcardshuffle {
    position: absolute;
    transform: translateZ();
}

.shuffle-card-inner-shuffled{
    position: relative;
    height: 300px;
    width: 200px;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    opacity:100;
    background-image: url(/images/branding/TarotCardBacking_backwards.jpg);
}

.shuffle-card-front-shuffled, .shuffle-card-back-shuffle {
    position: absolute;
    width: 200px;
    height: 300px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


