/* Site Footer Styles */

.site-footer {
  background: linear-gradient(135deg, #FFE5B4 0%, #E6F3FF 25%, #F0E6FF 50%, #FFE6F0 75%, #E6FFE6 100%);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Footer Left - Logo */
.footer-left {
  display: flex;
  justify-content: flex-start;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

/* Footer Center - Social Media */
.footer-center {
  display: flex;
  justify-content: center;
}

.footer-social {
  text-align: center;
}

.footer-social h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1rem 0;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icons a:nth-child(1):hover {
  color: #E1306C; /* Instagram */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icons a:nth-child(1):hover svg {
  color: white;
}

.social-icons a:nth-child(2):hover {
  color: white;
  background: #1877F2; /* Facebook */
}

.social-icons a:nth-child(2):hover svg {
  color: white;
}

.social-icons a:nth-child(3):hover {
  color: white;
  background: #0A66C2; /* LinkedIn */
}

.social-icons a:nth-child(3):hover svg {
  color: white;
}

/* Footer Right - Navigation */
.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.footer-nav a:hover {
  color: #4DD0E1;
}

/* Footer Bottom - Copyright */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0 0.5rem;
  text-align: right;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-nav {
    gap: 0.75rem;
  }

  .footer-nav a {
    font-size: 0.8125rem;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .footer-logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .footer-nav a {
    font-size: 0.75rem;
  }
}
