/* Site Footer Styles */

.site-footer {
  background: linear-gradient(90deg, #203465 0%, #E60094 100%);
  color: white;
  margin-top: auto;
  width: 100%;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 30px 16px;
}

/* Footer Main Section */
.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 24px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-family: 'Norwester', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-description {
  font-family: 'Encode Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-family: 'Encode Sans', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: white;
  padding-left: 4px;
}

/* Contact Section */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact p {
  margin: 0;
  font-family: 'Encode Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact strong {
  color: white;
  display: block;
  margin-bottom: 3px;
  font-size: 0.85rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-family: 'Encode Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 0.8rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
  text-decoration: underline;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.4);
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-content {
    padding: 32px 24px 16px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .footer-content {
    padding: 28px 18px 14px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }

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

  .footer-social {
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-nav a:hover {
    padding-left: 0;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-top: 12px;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 480px) {
  .footer-content {
    padding: 24px 14px 12px;
  }

  .footer-heading {
    font-size: 0.95rem;
  }

  .footer-description,
  .footer-nav a,
  .footer-contact p {
    font-size: 0.8rem;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }

  .footer-copyright,
  .footer-legal {
    font-size: 0.75rem;
  }
}
