@charset "utf-8";

@font-face {
  font-family: UI-font;
  src: url(../fonts/MAIAN.TTF);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
  }

  .hidden{
    display: none;
  }

  .invisible{
    opacity: 0;
    pointer-events: none;
  }

  main{
    display: flex;
    height: 100vh;
    width: 100%;
    background-image: url(../images/bg.jpg);
    background-size: cover;
  }

  #spotContainer{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    visibility: visible;
    z-index: 3;   
  }

  #spotLight{
    width: 250px;
    height: 250px;
    transform: translate(200px, 15px);
    cursor: all-scroll;
    position: absolute;
    top: 100px;
    left: 100px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 0 2500px rgba(0, 0, 0, .85);
  }



  /* Left Sidebar */
  .left-sidebar {
    width: 20%;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 10px;
    min-width: 200px;
  }

  .logo, .lower-image {
    max-width: 100%;
    margin: 0 auto;
  }

  /* Right Content */
  .right-content {
    width: 95%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

  .title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    
  }

  .title-bar h1 {
    margin: 0;
    font-size: 20px;
  }

  .right-logo {
    height: 50px;
  }

  .content-area {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    position: relative;
  }

  .toc-content {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
  }

  .toc-content .button-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: calc(10rem + 100px);
    min-height: calc(10rem + 100px);
    background: antiquewhite;
    margin: 1rem;
  }

  .toc-content .button-wrap.assets-page {
    background: url(../images/assetsElm-bg.png);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    min-height: auto;
}

  .toc-content .item {   
    border: none;
    width: 15rem;
    height: 15rem;
    background: transparent;
    cursor: pointer;
    
  }

  .toc-content .item span{
    font-family: UI-font;
    margin: 10px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
  }

/* .toc-content .item:hover {
    background-color: #e0e0e0;
hhhhhhhhhh
  } */

  .back-button {
    margin-bottom: 20px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #FFEB3B;
    cursor: pointer;
    display: inline-block;
    float: right;
  }

.back-button:hover {
  background-color: #e4e4e4;
}

#mainAssetFrame {
  width: 100vw;
  height: 100vh;
  border: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: wheat;
  z-index: 999;
}

.fixed {
  position: fixed;
  top: 1rem;
  right: 1rem;
}

  /* Toolbar */
  .toolbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #ccc;
  }

.toolbar .tool-icon {
  position: relative;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  background-image: url(../images/tools.png);
  height: 50px;
  width: 50px;
  box-shadow: 2px 2px 2px #000;
  border-radius: 50%;
}

.tool-icon.home {
  background-position-x: -5px;
}

.tool-icon.spot-light {
  background-position-x: -68px;
}

.tool-icon.recording {
  background-position-x: -198px;
}

.tool-icon.toggle-screen {
  background-position-x: -825px;
}

.tool-icon.toggle-bg-music {
  background-position-x: -759px;
}

.tool-icon.help {
  background-position-x: 610PX;
}

.toolbar .tool-icon .tooltiptext {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: -80%;
  left: -50%;
  font-size: 1.2rem;
  text-wrap-mode: nowrap;
}

.toolbar .tool-icon:hover .tooltiptext {
  visibility: visible;
}

.tool-icon.toggle-screen.fadeActive {
  z-index: 99;
}

button.tool-icon.toggle-screen:before,
button.tool-icon.toggle-bg-music:before {
  width: 0;
  content: '';
  position: absolute;
  top: 23px;
  left: 0;
  height: 4px;
  background: #ba2f8b;
  transform: rotate(45deg);
  transition: .35s ease-in-out;
}

button.tool-icon.toggle-screen.fadeActive:before,
button.tool-icon.toggle-bg-music.fadeActive:before {
  width: 100%;
}

/*fade-screen*/
div#fade-screen-main.fadeActive {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease-in-out;
}

div#fade-screen-main.fadeActive {
  opacity: 1;
  visibility: visible;
}

  .toolbar .tool-icon .tooltiptext {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: -80%;
    left: -50%;
    font-size: 1.2rem;
    text-wrap-mode: nowrap;
  }
  
  .toolbar .tool-icon:hover .tooltiptext {
    visibility: visible;
  }
  .fadeActive {
    z-index: 99;
  }
  .fadeActive > button {
    opacity: 0;
  }
  .fadeActive .tool-icon.toggle-screen{
    opacity: 1;
  }
  button.tool-icon.toggle-screen:before {
    width: 0;
    content: '';
    position: absolute;
    top: 23px;
    left: 0;
    height: 4px;
    background: #ba2f8b;
    transform: rotate(45deg);
    transition: .35s ease-in-out;
  }
  
  .fadeActive button.tool-icon.toggle-screen:before {
    width: 100%;
  }
  /*fade-screen*/
  div#fade-screen-main.fadeActive {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease-in-out;
  }
  div#fade-screen-main.fadeActive {
    opacity: 1;
    visibility: visible;
  }
  div#scroll-text {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.8s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-direction: alternate;
}
@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}

#beeAnimation {
  position: absolute;
  transform-style: preserve-3d;
  perspective: 500px; /* Creates the 3D effect */
  pointer-events: none; /* Prevents the bee from blocking clicks */
  transition: transform 0.1s ease-out; /* Smooth transition for rotation */
}

#beeAnimation img {
  max-width: 90px;
  height: 100%;
  display: block;
  transition: transform 0.1s ease-out;
  object-fit: cover;
  width: 100%;
}
.navigate > button {
  padding: 10px 40px !important;
  margin: 0 5px !important;
}
.navigate > button {
  align-items: center;
  background-color: initial;
  background-image: linear-gradient(#464d55, #25292e);
  border-radius: 8px;
  border-width: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1),0 3px 6px rgba(0, 0, 0, .05);
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  font-size: 18px;
  height: 52px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0 32px;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all 150ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.navigate > button:hover {
  box-shadow: rgba(0, 1, 0, .2) 0 2px 8px;
  opacity: .85;
}

.navigate > button:active {
  outline: 0;
}

.navigate > button:focus {
  box-shadow: rgba(0, 0, 0, .5) 0 0 0 3px;
}

@media (max-width: 420px) {
  .navigate > button {
    height: 48px;
  }
}

/* .toc-content::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(85, 85, 85, 0.3);
	background-color: #F5F5F5;
}

.toc-content::-webkit-scrollbar
{
	width: 2px;
	background-color: #F5F5F5;
}

.toc-content::-webkit-scrollbar-thumb
{
	background-color: #5c5c5c;
} */
/*fade-screen*/
/* #sprite-container {
  width: 100vw;
  height: 292px;
  background-image: url(../images/bottom-animation.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
} */
/* .right-content:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 319px;
  background: url(../images/bottom-grass.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 1;
} */

.toc-content:has(> .assets-page) {
  align-items: flex-start;
}

@keyframes float1 {
  0% {
    transform: translate(0%, 0%);
  }

  25% {
    transform: translate(10%, -15%);
  }

  50% {
    transform: translate(-20%, 10%);
  }

  75% {
    transform: translate(15%, -5%);
  }

  100% {
    transform: translate(0%, 0%);
  }
}

@keyframes float2 {
  0% {
    transform: translate(0%, 0%);
  }

  25% {
    transform: translate(-15%, 10%);
  }

  50% {
    transform: translate(20%, -5%);
  }

  75% {
    transform: translate(-10%, 15%);
  }

  100% {
    transform: translate(0%, 0%);
  }
}

@keyframes float3 {
  0% {
    transform: translate(0%, 0%);
  }

  25% {
    transform: translate(5%, 15%);
  }

  50% {
    transform: translate(-15%, -20%);
  }

  75% {
    transform: translate(20%, 10%);
  }

  100% {
    transform: translate(0%, 0%);
  }
}

@keyframes float4 {
  0% {
    transform: translate(0%, 0%);
  }

  25% {
    transform: translate(-20%, 15%);
  }

  50% {
    transform: translate(10%, -10%);
  }

  75% {
    transform: translate(5%, 20%);
  }

  100% {
    transform: translate(0%, 0%);
  }
}

@keyframes float5 {
  0% {
    transform: translate(0%, 0%);
  }

  25% {
    transform: translate(15%, -10%);
  }

  50% {
    transform: translate(-10%, 25%);
  }

  75% {
    transform: translate(-25%, -15%);
  }

  100% {
    transform: translate(0%, 0%);
  }
}


/* Glowing animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.8);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 102, 255, 1);
  }

  100% {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.8);
  }

}

/* Particle burst animation */
@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--x), var(--y)) scale(0.3);
  }
}

@media only screen and (max-width:940px) {
  .left-sidebar {
    display: none;
  }

  /* .toc-content .button-wrap {
  .toc-content .button-wrap {
    min-width: 95%;
  }
  .right-content {
    width: 90%;
    margin: 0 auto;
  }

  .toc-content {
    justify-content: center;
  }

  .content-area {
    padding-top: 55px;
    max-width: 100%;
  }

  .title-bar img.sun-img {
    top: -20px;
    left: -20px;
    max-width: 150px;
  }

  .back-button {
    right: 25px;
  }

  .toc-content .button-wrap:after {
    bottom: -32px;
  }

  .button-wrap::after,
  .button-wrap {
    height: 40% !important;
  }

  .toc-content {
    align-items: flex-start;
  }

  main {
    background-size: cover;
    background-position: center;
  }
}


/*inder edits*/


#iball_record {
  /* visibility: hidden; */
  position: absolute;
  z-index: 1000;
  background-color: #012847;
  border: 2px solid #fff;
  display: block;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  width: 215px;
  text-align: center;
}

#recordTitle {
  color: #FFF;
  font-family: BookFont;
  font-size: 18px;
  text-align: center;
  line-height: 32px;
  font-weight: bold;
  background-color: #356f9d;
  border-bottom: #FFF 2px solid;
}

#myEmbed {
  height: 302px;
  width: 96%;
  border: none;
  overflow: auto;
  top: 30px
}

#recordTitle span {
  float: right;
  display: inline-block;
  width: 40px;
  font-size: 25px;
  color: #ffff00;
  cursor: pointer;
  text-shadow: 3px 3px #040000;
}


.assetClose {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 50px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #FFEB3B;
  cursor: pointer;
}
div#scroll-text {
 display: none;
}

.navigate{
  position: absolute;
  bottom: 50px;
  width: 90vw;
  z-index: 1000;
}

@keyframes float {
  0% {
    transform: translate(0%,0%);	
  }
  25% {
    transform: translate(5%,8%);	
  }	
  50% {
    transform: translate(10%,5%);	
  }	
  75% {
    transform: translate(0%,8%);	
  }	
  100% {
    transform: translate(0%,0%);
  }	
}