/**
 * Viktoria Lime Logo Styles
 * 
 * This CSS provides:
 * - Logo layout with icon + text side by side
 * - Hover animation with scale and glow effects
 * - Mobile-responsive behavior (no animation on touch devices)
 */

/* Main logo container - wraps icon and text, clickable link */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  /* Smooth transition for all hover effects */
}

/* The lime-heart icon wrapper */
.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 50%;
  /* Prepare for glow effect on hover */
}

/* The logo icon image itself */
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* The text "VIKTORIA LIME" */
.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: hsl(222 47% 11%);
  transition: color 0.3s ease;
}

/* --- HOVER ANIMATION --- */

/* On hover: scale up slightly and add lime glow */
.logo-container:hover .logo-icon {
  transform: scale(1.05);
  /* Soft lime-green glow using box-shadow */
  box-shadow: 0 0 20px hsl(82 77% 45% / 0.4),
              0 0 40px hsl(82 77% 45% / 0.2),
              0 0 60px hsl(82 77% 45% / 0.1);
}

/* Slightly darken text on hover for feedback */
.logo-container:hover .logo-text {
  color: hsl(82 77% 35%);
}

/* --- MOBILE BEHAVIOR --- */

/* On mobile/touch devices: disable hover animations */
@media (hover: none) and (pointer: coarse) {
  .logo-container:hover .logo-icon {
    transform: none;
    box-shadow: none;
  }
  
  .logo-container:hover .logo-text {
    color: hsl(220 60% 18%);
  }
}

/* For screens smaller than 768px: adjust logo size */
@media (max-width: 768px) {
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  
  .logo-text {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}
