@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');


/* Background, font, and text color */
.footer {
  background-color: #1E40AF;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 2rem 1rem;
}

/* Style of links */
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #60A5FA;
  text-decoration: underline;
}

/* Footer section styling */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  
}

.footer-column {
  flex: 1;
  min-width: 200px;
  text-align: center;            
}

.footer-column + .footer-column {
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}

/* Social media links */
.footer-socials {
  display: flex;
  justify-content: center;       
  gap: 1rem;
  margin: 1rem 0;
}
.footer-socials a {
  color: #ffffff;
  font-size: 1.25rem;
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: #60A5FA;
}


.footer-copy {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Mobile column format */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-column + .footer-column {
    
    border-left: none;
    padding-left: 0;

    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 1.5rem;
  }
}
