/* GQLite.com Logo Gradient Style */

/* Importing Google Fonts for consistency */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Poppins:wght@800&family=Bebas+Neue&display=swap');

/* Alternative logo style with gradient effect */
.gqlite-logo-gradient {
  background: linear-gradient(45deg, 
    rgb(255, 140, 0), 
    rgb(140, 255, 0), 
    rgb(0, 255, 140), 
    rgb(0, 140, 255), 
    rgb(140, 0, 255), 
    rgb(255, 0, 140));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
               0 0 15px rgba(255, 255, 255, 0.5);
  animation: gradient-flow 8s ease infinite;
}

/* Animation keyframes for gradient flow */
@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive adjustments for gradient style */
@media (max-width: 768px) {
  .gqlite-logo-gradient {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3),
                 0 0 10px rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 480px) {
  .gqlite-logo-gradient {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3),
                 0 0 8px rgba(255, 255, 255, 0.3);
  }
}