@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: fallback;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
}

:root {
    --primary: #005BEA;
    --secondary: #1DB954;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Roboto, sans-serif;
    font-size: '14px';
	touch-action: manipulation;
}
/*   
#root {
    height: 100%;
    display: flex;
    justify-content: center;
} */
  
html, 
body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-size: 14px;
    padding-left: 0%;
    padding-right: 0%;
	scrollbar-width: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

@media print {
    body {
      zoom: 75%;
    }
}
/* body::-webkit-scrollbar {
	display: none;
}
 */
 

@keyframes blinker {  
    50%{ 
        opacity: 0; 
    } 
}

.sparkle-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.sparkle-image {
    width: 100%;
    height: auto;
}

.sparkle {
    position: absolute;
    width: 12px; /* Smaller size for subtlety */
    height: 12px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    border-radius: 50%;
    filter: blur(1.5px); /* Slight blur */
    pointer-events: none;
    animation: sparkle-animation 6s infinite ease-in-out; /* Slower animation */
    opacity: 0;
}

.sparkle-1 {
    animation-delay: 1.2s;
    top: 25%;
    left: 55%;
    width: 14px;
    height: 14px;
}

.sparkle-2 {
    animation-delay: 2.5s;
    top: 65%;
    left: 35%;
    width: 10px;
    height: 10px;
}

.sparkle-3 {
    animation-delay: 3.8s;
    top: 45%;
    left: 75%;
    width: 12px;
    height: 12px;
}

.sparkle-4 {
    animation-delay: 5s;
    top: 85%;
    left: 45%;
    width: 8px;
    height: 8px;
}

@keyframes sparkle-animation {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.5) rotate(30deg); /* Smaller scale for subtlety */
        opacity: 0.8; /* Reduced opacity */
    }
}


.logo-container {
    display: inline-block;
}

.glowing-logo {
    width: 150px; /* Adjust the size as needed */
    height: auto;
    animation: glow 2s infinite; /* Animation that runs every 2 seconds */
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2), 0 0 10px rgba(255, 255, 255, 0.2), 
                    0 0 15px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.2);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.8), 
                    0 0 40px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 1);
        opacity: 1;
    }
}


.glimmer-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.glimmer-image {
    width: 100%;
    height: auto;
    display: block;
}

.glimmer-effect {
    position: absolute;
    top: 0;
    left: -150%; /* Start the glimmer off-screen */
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-30deg);
    animation: glimmer-animation 3s infinite; /* Control speed of the glimmer */
}

@keyframes glimmer-animation {
    0% {
        left: -150%;
    }
    100% {
        left: 150%; /* Move the glimmer across the image */
    }
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0px);
    }
}
  
.animated-text {
    animation: fadeInUp 1s ease-out;
}

.animated-text-infinite {
    animation: fadeInUp 1s ease-out 3s  infinite;
}

.sparkling-text {
    font-size: 3em;
    font-weight: bold;
    color: #FFD700; /* Gold color */
    text-align: center;
    animation: sparkle 1.5s infinite linear;
  }

  @keyframes sparkle {
    0%, 100% {
      text-shadow: 0 0 4px #90EE90, 0 0 8px #98FB98, 0 0 12px #00FA9A;
    }
    50% {
      text-shadow: 0 0 6px #FFFFFF, 0 0 10px #EEEEEE, 0 0 14px #DDDDDD;
    }
  }


  .fun-text {
    margin: 0px;
    animation: bounce 2s infinite alternate, colorchange 3s infinite;
  }

  @keyframes bounce {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(5px);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes colorchange {
    0% {
      color: #ff6347; /* Tomato */
    }
    33% {
      color: #ffb6c1; /* LightPink */
    }
    66% {
      color: #87ceeb; /* SkyBlue */
    }
    100% {
      color: #32cd32; /* LimeGreen */
    }
  }  
/*
body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }

*/

.category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  padding: 10px;
  box-sizing: border-box;
  background-color: transparent;
  min-height: 60px;
  cursor: pointer;
  border: 2px solid transparent; 
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  text-align: center;
}

.selected {
  border-color: rgba(4, 59, 4, 0.2);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 255, 0, 0.05);
  padding: 10px;
  box-sizing: border-box;
}

.category-image {
  object-fit: contain;
  width: calc(100% - 80px); /* Start with a larger width */
  height: auto;
  max-height: 150px; /* Increase max-height for visibility */
  transition: width 0.3s ease, max-height 0.3s ease;
}

.selected-image {
  width: calc(100% - 20px); /* Keep the selected width larger than default */
  max-height: 180px; /* Further increase height when selected for emphasis */
}

.category-text {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  color: black;
  margin-top: 5px;
}

.selected-text {
  font-size: 20px;
  font-weight: bold;
  color: rgb(4, 92, 4);
}


.ease-in-div {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}

.ease-in-div.show {
  opacity: 1;
  transform: translateY(0);
}

.ease-in-div.hide {
  opacity: 0;
  transform: translateY(0);
  transition: none;
} 


.swipe-in-div {
  opacity: 0;
  transform: translateY(100%) scale(0.95); /* Start off-screen at the bottom */
  transition: opacity 0.4s ease-out, transform 0.4s ease-out; /* Smooth entry transition */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  will-change: opacity, transform; /* Optimize for animations */
}

.swipe-in-div.show {
  opacity: 1;
  transform: translateY(0) scale(1); /* Move into view */
}

.swipe-in-div.hide {
  opacity: 0;
  transform: translateY(100%) scale(0.95); /* Move off-screen to the bottom instantly */
  transition: none; /* Immediate exit without transition */
}




/* Container takes up the full viewport and has a transparent background */
.screensaver {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  overflow: hidden; /* Ensures the logo doesn't show outside the viewport */
}

/* Style and animate the logo */
.logo-screensaver {
  position: absolute;
  width: 150px; /* Adjust the size as needed */
  height: auto;
  animation: logoMove 20s ease-in-out infinite;
}

/* Keyframes for moving, rotating, and scaling the logo */
@keyframes logoMove {
  0% {
    left: 10%;
    top: 10%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    left: 70%;
    top: 20%;
    transform: rotate(90deg) scale(1.05);
  }
  50% {
    left: 80%;
    top: 70%;
    transform: rotate(180deg) scale(1);
  }
  75% {
    left: 20%;
    top: 80%;
    transform: rotate(270deg) scale(0.95);
  }
  100% {
    left: 10%;
    top: 10%;
    transform: rotate(360deg) scale(1);
  }
}

.glow-wrapper.glow {
  animation: quick-dark-green-glow 1.5s ease-out;
  border-radius: 10px;
}

@keyframes quick-dark-green-glow {
  0% {
    box-shadow: 0 0 0px rgba(0, 128, 0, 0);
    background-color: white;
  }
  20% {
    box-shadow: 0 0 30px rgba(0, 128, 0, 0.9);
    background-color: #e0f5e9;
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 100, 0, 0.7);
    background-color: #d0f0df;
  }
  100% {
    box-shadow: 0 0 0px rgba(0, 128, 0, 0);
    background-color: white;
  }
}


.shoutout {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.ql-align-center {
  text-align: center;
}
.ql-align-right {
  text-align: right;
}
.ql-align-justify {
  text-align: justify;
}




.flip-image {
  display: inline-block;
  animation: logoFlip 5s ease-in-out infinite;
}

.flip-image img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}

@keyframes logoFlip {
  0%, 90% {
    transform: rotateY(0deg);
  }
  95% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
} 
