/**
 * DVMReady Logo Styles
 * Professional logo integration
 */

/* Logo Container */
.pc-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.pc-logo:hover {
  transform: scale(1.02);
}

/* Logo Image */
.pc-logo__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.pc-logo:hover .pc-logo__img {
  transform: rotate(5deg);
}

/* Logo Text */
.pc-logo__text {
  font-family: var(--pc-font-display, system-ui);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pc-primary, #0d7377) 0%, var(--pc-secondary, #32e0c4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Footer Logo */
.pc-footer__logo .pc-logo__img {
  width: 32px;
  height: 32px;
}

.pc-footer__logo .pc-logo__text {
  font-size: 1.25rem;
}

/* About Page Logo (larger) */
.pc-about-hero__logo {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .pc-logo__img {
    width: 32px;
    height: 32px;
  }
  
  .pc-logo__text {
    font-size: 1.25rem;
  }
  
  .pc-about-hero__logo {
    width: 80px;
    height: 80px;
  }
}

/* Loading animation for logo */
.pc-logo__img {
  animation: logo-fade-in 0.5s ease-out;
}

@keyframes logo-fade-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
