/**
 * Footer component styles - Modern, professional design
 */

.site-footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-lg);
  font-size: 0.875rem;
  position: relative;
}

/* Footer top gradient line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: var(--space-xl);
}

.footer-section {
  flex: 1;
  padding: 0 var(--space-md);
}

.footer-section-title {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-size: 1rem;
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  transition: all var(--transition-normal);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer-content {
    padding: 0 var(--space-md);
  }

  .footer-sections {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .footer-section {
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}