/* Footer Component Styles */

.main-footer {
    background: #1e293b;
    color: #e5e7eb;
    padding: 3rem 1rem 1.5rem 1rem;
    border-top: 1px solid #334155;
    font-size: 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

@media (min-width: 1400px) {
    .footer-content {
        max-width: 1600px;
    }
}

@media (min-width: 1920px) {
    .footer-content {
        max-width: 1800px;
    }
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #3b82f6;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 1rem;
    color: #a5b4fc;
    font-weight: 400;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    font-size: 1rem;
}

.footer-nav a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #3b82f6;
}

.footer-middle {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col-title {
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}

.footer-col a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #3b82f6;
}

/* Social Links Component */
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #334155;
  color: #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Individual platform hover colors */
.social-link.linkedin:hover {
  background-color: #0077b5;
  color: white;
}

.social-link.twitter:hover {
  background-color: #000000;
  color: white;
}

.social-link.facebook:hover {
  background-color: #1877f2;
  color: white;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

/* Accessibility focus styles */
.social-link:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* For smaller screens */
@media (max-width: 480px) {
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link svg {
    width: 16px;
    height: 16px;
  }
}

/* .footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
} */

/* .footer-social-icon {
    font-size: 1.3rem;
    color: #60a5fa;
    background: #334155;
    border-radius: 50%;
    width: 2.1rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
} */

/* .footer-social-icon:hover {
    background: #3b82f6;
    color: #fff;
} */

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.footer-legal {
    color: #a5b4fc;
    font-size: 0.98rem;
}

.footer-legal a {
    color: #a5b4fc;
    text-decoration: none;
    margin: 0 0.2rem;
}

.footer-legal a:hover {
    color: #3b82f6;
}

.footer-meta {
    color: #64748b;
    font-size: 0.95rem;
}



/* Responsive Styles */
@media (max-width: 900px) {
    .footer-middle {
        gap: 1.5rem;
    }
}

@media (max-width: 700px) {
    .footer-content {
        gap: 1.2rem;
    }
    .footer-nav {
        gap: 0.7rem;
        font-size: 0.98rem;
    }
    .main-footer {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
    .footer-middle {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .footer-col {
        align-items: center;
    }
}
