/* ============================================
   FOOTER LOGO STYLING
   ============================================ */

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  line-height: 0;
  margin-bottom: 0.5rem;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-logo-image {
  height: 150px; /* Large and readable in footer */
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo-image {
  filter: drop-shadow(0 4px 12px rgba(212, 161, 82, 0.5));
}

/* Remove the golden line under footer logo section */
.footer-logo-section h3:after,
.footer-logo-section::after {
  display: none;
}

/* Adjust spacing for footer logo section text */
.footer-logo-section p {
  color: var(--secondary);
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 280px;
}

/* Mobile responsiveness for footer logo */
@media (max-width: 768px) {
  .footer-logo-section {
    align-items: center;
    text-align: center;
  }

  .footer-logo-image {
    height: 120px; /* Still large and readable on tablet */
  }

  .footer-logo-section p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-logo-image {
    height: 100px; /* Readable on mobile */
  }
}

/* Theme support for footer logo */
[data-theme="light"] .footer-logo-image {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

[data-theme="light"] .footer-logo-link:hover .footer-logo-image {
  filter: drop-shadow(0 4px 12px rgba(138, 15, 30, 0.3));
}
