/* GQLite.com Logo Gold Style */

/* Gold style for GQLite.com - creating a metallic, luxurious appearance */
.gqlite-logo-gold {
  font-family: 'Fredoka One', 'Bebas Neue', 'Poppins', cursive, sans-serif;
  position: relative;
  letter-spacing: -1px;
}

.gqlite-logo-gold span {
  display: inline-block;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 
    0 0 5px rgba(255, 215, 0, 0.5),
    0 0 10px rgba(255, 215, 0, 0.3),
    1px 1px 0px rgba(255, 255, 255, 0.1),
    -1px -1px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
  animation: gold-shimmer 3s ease-in-out infinite;
}

/* Gold border and shine effect */
.gqlite-logo-gold span::before {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.7;
  transform: translate(2px, 2px);
  z-index: -1;
  filter: blur(1px);
  animation: gold-glow 2s ease-in-out infinite alternate;
}

/* Gold highlight effect */
.gqlite-logo-gold::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

/* Hover effect for gold logo */
.gqlite-logo-gold:hover span {
  animation: gold-pulse 1.5s ease-in-out infinite;
  text-shadow: 
    0 0 10px rgba(255, 215, 0, 0.7),
    0 0 20px rgba(255, 215, 0, 0.5),
    1px 1px 0px rgba(255, 255, 255, 0.2),
    -1px -1px 0px rgba(0, 0, 0, 0.3);
}

.gqlite-logo-gold:hover span:nth-child(1) { transform: scale(1.05) rotate(-2deg); }
.gqlite-logo-gold:hover span:nth-child(2) { transform: scale(1.05) rotate(2deg); }
.gqlite-logo-gold:hover span:nth-child(3) { transform: scale(1.05) rotate(-1deg); }
.gqlite-logo-gold:hover span:nth-child(4) { transform: scale(1.05) rotate(1deg); }
.gqlite-logo-gold:hover span:nth-child(5) { transform: scale(1.05) rotate(-2deg); }
.gqlite-logo-gold:hover span:nth-child(6) { transform: scale(1.05) rotate(2deg); }
.gqlite-logo-gold:hover span:nth-child(7) { transform: scale(1.05) rotate(-1deg); }
.gqlite-logo-gold:hover span:nth-child(8) { transform: scale(1.05) rotate(1deg); }
.gqlite-logo-gold:hover span:nth-child(9) { transform: scale(1.05) rotate(-2deg); }
.gqlite-logo-gold:hover span:nth-child(10) { transform: scale(1.05) rotate(2deg); }

.gqlite-logo-gold:hover::after {
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Animation keyframes for gold effects */
@keyframes gold-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gold-glow {
  0% { background-position: 0% 50%; opacity: 0.7; }
  100% { background-position: 100% 50%; opacity: 0.9; }
}

@keyframes gold-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive adjustments for gold style */
@media (max-width: 1024px) {
  .gqlite-logo-gold span {
    text-shadow: 
      0 0 4px rgba(255, 215, 0, 0.5),
      0 0 8px rgba(255, 215, 0, 0.3),
      1px 1px 0px rgba(255, 255, 255, 0.1),
      -1px -1px 0px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .gqlite-logo-gold {
    letter-spacing: -2px;
  }
  
  .gqlite-logo-gold span {
    text-shadow: 
      0 0 3px rgba(255, 215, 0, 0.5),
      0 0 6px rgba(255, 215, 0, 0.3),
      1px 1px 0px rgba(255, 255, 255, 0.1),
      -1px -1px 0px rgba(0, 0, 0, 0.2);
  }
  
  .gqlite-logo-gold span::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .gqlite-logo-gold::after {
    display: none;
  }
}