/* ============================
   Footer Specific Styles
   ============================ */

.footer-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column .w-list-unstyled {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column h2 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-link {
  display: block;
  padding: 0.25rem 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Footer Social Links */
.footer-social-link:hover { 
  background-color: rgba(255,75,31,0.1); 
  color: var(--color-primary); 
  box-shadow: 0 2px 8px rgba(255,75,31,0.08); 
}

/* Inverse Footer Styling */
body .inverse-footer {
  background-color: var(--color-complementary);
  color: var(--color-text-on-complementary);
}

body .inverse-footer a {
  color: var(--color-text-on-complementary);
}

body .inverse-footer a:hover {
  opacity: .8;
}

/* Responsive Styles */
@media (max-width: 991px) { /* Tablet */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .logo {
    grid-column: 1 / -1; /* Span full width */
    margin-bottom: 2rem;
  }
  
  .footer-links-container {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .footer-connect {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) { /* Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-links-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-column {
    min-width: auto;
  }
} 