@import url('https://fonts.googleapis.com/css2?family=Mynerve&family=Tiny5&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+SC:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,700;1,800;1,900&family=Amatic+SC:wght@400;700&family=Orbitron:wght@400..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap');


body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}


  /* NAV BAR */
  .top-bar {
    position: fixed;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0;
    z-index: 1000;
  }

  .top-bar-left img {
    vertical-align: middle;
  }

  .top-bar-right {
    display: flex;
    justify-content: flex-end;
    flex: 1;
  }
  
  .top-bar-right img {
    vertical-align: middle;
    margin-top: 50px;   
    margin-right: 70px;    
    transform: rotate(270deg);
    display: inline-block; 
  }

  

  .liveicon{
    padding-top: 35px;
  }
  
  .iconinside{
    height: auto;
    margin-left: -24px; 
    padding-top: 50px;
  }

  .icon {
    height: auto;
    position: relative;   
    z-index: 2;         
  }

  .top-bar-text {
    font-size: 36px;
    font-weight: 600;
    color: #E0DBDB;
    display: flex;
    gap: 40px; 
    margin-left: 50px; 
    padding-top: 50px;
  }

  .top-bar-text .foryou{
    font-size: 40px;
    font-weight: 700;
    color: #E5007D;
  }

  /* NAV BAR END */
  /* container that holds all the pages */
  .container { 
    height: 1920px;
    width: 1080px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
  }
  
  /* individual scrollable page */
  .page {
    height: 100vh;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    background: grey;
    color: #fff;
  }
/* PAGE 4 PAGE 4 PAGE 4 PAGE 4 PAGE 4 PAGE 4 PAGE 4 PAGE 4 PAGE 4*/

  /* -------------------------------------- Page 1 -------------------------------------------- */
  .page1 {
    height: 100%;
    width: 100%;
    background-image: url("images/Forest_background.png");
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .page1 h2{
    font-family: "Roboto";
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .cursive-text {
    font-style: italic; 
    display: block;
}

  

  .page1 h1{
      font-size: 150px;
      font-family: 'Cormorant Garamond', serif;
      line-height: 110px;
      letter-spacing: 40px;
      margin: 0;
      padding: 0;
      padding-top: 30px;
      background: linear-gradient(90deg, white, #AFEDA5); /* add linear gradient to the text */ 
      -webkit-background-clip: text; /* only make sure it targets the text and not the whole box behind the text */
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .page1_cat {
    height: 60vh;
  }

  .page1_bush {
    position: absolute; /* to keep the bush in the corner of the page */
    right: 0;
    bottom: 0;
  }
  
  .arrows{
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 999;
    gap: 100px;
  }

  .arrowFront{
    transform: scaleX(-1);
  }


  /* -------------------------------------- Page 2 -------------------------------------------- */
    .page2 {
      height: 100%;
      width: 100%;
      background-image: url("images/arab.png");
      display: flex;
      flex-direction: column;      /* stack items vertically*/
      align-items: center;         /* center items vertically*/
      position: relative;
      text-align: center;
      background-size: cover;   /* make it cover the whole page no duplicates */
    }
    .page2::before {
    content: ""; /* neccesray ::before is a pseudo command and it needs content to display */
    position: absolute; 
    width: 100%; /* cover the whole background image, filter overlay needs to be same width as background image */
    height: 100%; /* cover the whole background image, filter overlay needs to be same height as background image */
    background-image: inherit; /* inherit the image to apply the filter to */
    filter: brightness(0.7);
  }


  .page2_run_text {
    color: white;
    font-family: 'Amatic SC', cursive;
    font-size: 130px;
    padding-top: 270px;
  }

  .page3_run_text {
    color: white;
    font-family: 'Amatic SC', cursive;
    display: flex;
    text-align: center;
    font-size:100px;
  }

  .page5_run_text {
    color: white;
    font-family: 'Amatic SC', cursive;
    display: flex;
    text-align: center;
    font-size:70px;
    justify-content: center;
    padding-top: 10vh;
  }
  
  .page3_run_text h2{
    margin: 0;
    padding: 0;
  }

  .arabcat{
    position: absolute;
    bottom: 0;
    display: flex;
  }

  .fatstare{
    margin-top: 560px;
    margin-left: 70px;
  }

  .gremlin{
    padding-top: 50px;
    margin-left: 170px;
  }

  .catstare{
    margin-left: 75vw;
    margin-top: 18vw;
  }

  /* -------------------------------------- Page 3 -------------------------------------------- */
  .page3 {
    height: 100%;
    width: 100%;
    background-image: url("images/Sea_background.png");

    /* makes sure evrything on the page is centered and aligned */
    display: flex;
    flex-direction: column;      /* stack items vertically*/
    align-items: center;         /* center items vertically*/
    justify-content: center;     /* center items vertically*/
    gap: 120px;
    position: relative;
  }

  .pixelplayground {
    font-size: 80px;
    font-family: 'Pixelify Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
  }

  .page3_choice_buttons {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 150px;
  }

  .page3_choice_buttons .page3_button {
    font-size: 80px;
    border: none;
    width: 350px;
    height: 150px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px 1px rgb(0,0,0,0.4);
    font-family: "Mynerve", cursive;
    font-weight: 800;
  }

  #page3_real {
    background-color: rgb(3, 224, 3);
    border: 5px solid rgb(44, 172, 44);
    color: rgb(0, 85, 0);
    transition: .2s;
  }

  #page3_real:active {
    background-color: rgb(0, 146, 0);
    border-color: rgb(3, 224, 3);
    color: #fff;
    transition: .2s;
  }

  #page3_fake {
    background-color: rgb(255, 0, 0);
    border: 5px solid rgb(180, 37, 37);
    color: rgb(71, 0, 0);
    transition: .2s;
  }

  #page3_fake:active {
    background-color: rgb(139, 0, 0);
    border-color: rgb(255, 0, 0);
    color: #fff;
    transition: .2s;
  }

  .page3_results h1{
    font-size: 60px;
  }

  .page3_results h2{
    font-size: 35px;
    font-weight: 550;
  }

/* ------------------------------------------ The modal --------------------------------------------- */

  /* creates the modals and puts them in the right place */
  .page3_modal {
    display: none;
    position: fixed;
    z-index: 1; /* keeps it on top */
    left: 0; /* positioning on page */
    top: 0;

    /* full page coverage */
    width: 100%;
    height: 100%;

    background-color: rgb(0,0,0);
    background-color: rgb(0,0,0,0.4); /* seethrough background */
    animation-name: page3_animateopacity;
    animation-duration: .4s;
  }

  /* animates background opacity of modal*/
  @keyframes page3_animateopacity {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  /* modal box, creates the actual pop-up */
  .page3_modal_content {
    margin: 50% auto; /* to center it on the screen */
    padding: 40px;
    width: 649px;
    height: 869px;
    background-color: #fff;
    color: #000;
    position: relative;
    border: 3px solid #ccc;
    border-radius: 15px;
    animation-name: page3_animatetop;
    animation-duration: .6s;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 400;
  }

  /* animates the modal box appearing */
  @keyframes page3_animatetop {
  from {top: -100px; opacity: 0}
  to {top: 0; opacity: 1}
  }

  .page3_close {
    font-size: 80px;
    font-weight: bolder;
    color: #aaa;
    float: right;
    position: absolute; /* puts the x in the top right of the box without interacting with other divs */
    right: 5%;
  }

  .page3_close:hover,
  .page3_close:focus {
    color: #000;
    cursor: pointer;
  }

  .page3_results {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 90%;
  }

  .page3_results img {
    /* margin-block: 1vh; */
    width: 45%;
    height: auto;
  }

  .page3_results * {
    margin: 0;
    text-align: center;
  }

  /* changes text to pixels */
  .page3_pixel_text {
    font-family: "Tiny5", sans-serif;
    font-size: 250%;
  }
  
  .page3_info_button {
    aspect-ratio: 447 / 223;
    height: 100px;
    border-radius: 10px;
    margin: 10px;
    width: auto;
    background-image: url('Images/Woman-pointing-at-cat.jpg');
    background-size: cover;
    background-position: center;
  }

.page4{
    background-image: url(images/medieval.png);
    width: 1080px;
    height: 1824px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.popcat{
  display: flex;
  padding-top: 4.5vh;
  margin-left: -4.5vh; 
  transform: rotate(-10deg);
}

.bananadead{
  display: flex;
  padding-top: 15vh;
  margin-left: 7vh; 
}

.popcat img{
  width: 650px;
  height: auto;
}

/* PAGE 5 PAGE 5 PAGE 5 PAGE 5 PAGE 5 PAGE 5 PAGE 5 PAGE 5 PAGE 5 */
.page5{
    background-image: url(images/7\ 2.png);
    width: 1080px;
    height: 1920px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.gifdance{
    display: flex;
    justify-content: center;
    /* padding-top: vh; */
  }

.buttonrow{
  display: flex;
  justify-content: center;
  padding-top: 15vh;
}


#green, /* button sizing img*/
#red {
  width: 183px;    
  height: 182px;   
}

#yellow{ /* setting it to position relative, it doesn't interfere with the other images as well as make me able to move it up */
  width: 224px;
  height: 228px;
  position: relative; /* moves the yellow button 120px upwards */
  top: -120px; 
}

/* MODAL ONE PAGE 5 */
.greenmodal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Add this back */
  top: 0;
  left: 0;
}


.modalcontentone {
  margin: 50% auto;  /* centers modal in the middle*/
  position:relative;
  background-color: #fefefe;
  padding: 40px;
  border: 1px solid #888;
  width: 649px;
  height: 869px;
  border-radius: 8px;
  animation-name: animatetop; /* animation for modal to appear so it isn't abrupt */
  animation-duration: 0.4s
}

@keyframes animatetop {  /* the animation that gets called above */
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}

.closepage5 {
  position: absolute; /* so it doesn't interfere with other buttons */
  right: 30px; /* top and right makes it position to the topright of the modal*/
  top: 30; 
  color: black;
  font-size: 100px;
  font-weight: bold;  /* makes text bolder*/
}

.modaltitleone{  /* basic text styling */
  color: black;
  font-family: 'Roboto', sans-serif;
  font-size: 72px;
  font-weight: 600;
  display: flex;
  justify-content: center;
}

.modaltitleone p{
  margin: 0;
  padding: 0;
}


.modaltextone{ /* some more basic text styling*/
  color: black;
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 600;
  display: flex;
  justify-content: center;
}

.why{  /* center property in the middle of the modal*/
  display: flex;
  justify-content: center;
  align-items: center;
}
.why img{ /* increasing img width and height*/
  width: 309px;
  height: 315px;
}

.modaltextone p{
 margin: 0;
 padding: 15px;
}

#sad{
  font-size: 36px;
  margin-top: 30px;
}

.verdrietig{
  position: absolute; /* positioning property in the top left on the modal*/
  top: 30px;
  left: 80px;
}

.verdrietig img {
  width: 120px;  /* increasing img size*/
  height: auto; 
}
.greentry { /* positioning property in the bottom right of the modal*/
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-family: 'Roboto', sans-serif;
}

.greentry a { /* basic text styling*/
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: black;
  text-decoration: none; 
}

/* MODAL TWO PAGE 5 */

.yellowmodal {
  display: none;
  position: fixed;
  left: 0; /* positioning on page */
  top: 0;
  /* full page coverage */
  width: 100%;
  height: 100%;

}

.modalcontenttwo {
  margin: 50% auto;
  position:relative;
  background-color: #fefefe;
  padding: 40px;
  border: 1px solid #888;
  width: 649px;
  height: 869px;
  border-radius: 8px;
  animation-name: animatetop;
  animation-duration: 0.4s
}

.actor{
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  color: black;
  display: flex;
  justify-content: center;
}

.spacingtwo{
  margin: 0;
  padding: 50px;
}

.toptwo{
  padding-top: 10px;
  line-height: 0.8;
}

#perfect{
  text-align: center;
}

.perfect{
  display: flex;
  justify-content: center;
  padding-top: 80px;
}

.perfect img{
  width: 590px;
  height: 410px;
}

.dream{
  position: absolute;
  top: 90px;
  left: 25px;
}
/* MODAL THREE PAGE 5 */

.redmodal {
  display: none;
  position: fixed;
  left: 0; 
  top: 0;
  width: 100%;
  height: 100%;

}

.modalcontentthree {
  margin: 50% auto;
  position:relative;
  background-color: #fefefe;
  padding: 40px;
  border: 1px solid #888;
  width: 649px;
  height: 869px;
  border-radius: 8px;
  animation-name: animatetop;
  animation-duration: 0.4s
}


/* bottomnavbar bottomnavbar bottomnavbar bottomnavbar bottomnavbar bottomnavbar*/
.bottomnav {
  margin-top: auto; 
  display: flex;
  justify-content: space-between;
  background: #f0f0f0;
  z-index: 10;
  height: 120px; 
}

.block {
  width: 50%;
  height: 120px;
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95); 
}

.bottomgnavimg{
  width: 110px;
  height: 110px;
}


.swipebar {
  position: absolute;
  left: 0;
  top: 35%;
}

/* INFOPAGE STYLING */

.infotitle{
  font-family: "Roboto";
  font-size: 64px;
  padding-left: 50px;
  padding-top: 30px;
  font-weight: 700;
}

.infotitlepurple{
  font-family: "Roboto";
  font-size: 56px;
  color: white;
  font-weight: 600;
  margin-left: 100px;
}

.infotext{
  font-family: "Roboto";
  font-size: 32px;
  padding-left: 100px;
  padding-top: 30px;
  width: 85%;
}

.minorblock{
  margin-top: 50px;
  width:70%;
  background-color: #E5007D;
  height: 100px;
  display: flex;
  align-items: center;   
  justify-content: flex-start; 
}

.centercat {
  margin-top: 50px;
  display: flex;
  justify-content: center; 
  align-items: center;    
}

.leave{
  position: absolute;
  top: 0;
  padding-right: 20px;
  padding-top: 20px;
  right: 0;
  z-index: 100;
}


/* Scenes */



.scenesPage{
  background-color: #242424;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.htmlScenes{
  display: flex;
 justify-content: center;
 width: 1080px;
 height: 1920px;
}
.mainScenes{
  /* justify-content: center; */
  display: flex;
  flex-direction: column;
  width: 865px;
  gap:125px;

}

.titleScenes{
  display: flex;
  /* flex-direction: column; */
  /* max-height: 114px; */
}
.titleVirtualProduction{
  width: 863px;
  font-size: 152px;
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #E5007D;
  text-align: center;
  margin: 0%;
  margin-top: 50px;
}

.titleScene1{
  text-align: center;
  font-size: 152px;
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  padding: 0%;
  color: white;
}
.imgMovieClipper1{
  position:absolute;
  width: 130px; 
  top: 600px;
  left: 150px;
}
.imgMovieClipper2{
  position: absolute;
  width: 400px;
  left: 600px;
  top: 800px;
  transform: scaleX(-1);
  
}
.titleScene2{
  font-size: 152px;
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  padding: 0%;
  color: white;
  text-align: left;
}

.containerScenes{
  display:flex;
  flex-direction: column;
}

.rowScenes{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.sceneImage{
height: 100%;
width: 100%;
}
.iconScene{
  height: 245px;
  width: 306px;
}

/* PAGE5 */

.page6{
  background-image: url(images/snowscene.png);
  width: 1080px;
  height: 1920px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.vikingcenter{
  display: flex;
  justify-content: center;
  margin-top: 50px;
  /* align-items: center; */
}

.vikingguy{
  margin-left: 210px;
  margin-top: px
}

.catnotamused{
  position: absolute;
  margin-top: 53vh;
  margin-left: 23vw;
}

.catnotamused img{
  width: 700px;
  height: 900px;
}

.qrflex{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; 
  width: 81%; 
  padding: 50px;
  padding-inline: 100px;
}

.qrflex{
  font-family: 'Roboto';
  font-size: 64px;
  font-weight: bold;
}