/* ============================================
   HEPHIO FOOTER STYLES
   ============================================ */

.hephio-footer {
  background: #2d3748;
  color: #cbd5e1;
  padding: 3rem 1rem 1.5rem;
}

.hephio-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Section */
.hephio-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.2);
  gap: 2rem;
}

.hephio-footer-brand {
  flex: 1;
  max-width: 600px;
}

.hephio-footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}

.hephio-footer-logo-dot {
  color: #2563eb;
}

/* Links - Now prominent below logo */
.hephio-footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.hephio-footer-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.hephio-footer-link:hover {
  color: #2563eb;
}

/* Social Icons */
.hephio-footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hephio-footer-social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hephio-footer-social-link:hover {
  background: #2563eb;
  color: white;
}

.hephio-footer-social-icon {
  width: 32px;
  height: 32px;
}

/* Bottom Section */
.hephio-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hephio-footer-description {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.hephio-footer-copyright {
  font-size: 0.75rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
  .hephio-footer-top {
    flex-direction: column;
  }

  .hephio-footer-links {
    flex-wrap: wrap;
  }
}