/* Footer Minimal Styles */
/* Ensures Open Sans fonts, purple hover states (#6B46C1), and responsive design */

.footer-minimal {
  background-color: var(--color-scheme-4--background, #1e293b);
  color: var(--color-scheme-4--text, #ffffff);
  padding: 3rem 0 1rem 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
}

.footer-brand .footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-brand .footer-logo-link:hover {
  transform: translateY(-2px);
}

.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: #6B46C1;
  transform: translateX(4px);
}

/* Footer Partner Section */
.footer-partner .partner-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.footer-partner .partner-link:hover {
  background: rgba(107, 70, 193, 0.1);
  color: #6B46C1;
  transform: translateY(-1px);
}

.footer-partner .partner-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-partner .partner-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  white-space: nowrap;
}

/* Footer Impact Stories Inline */
.footer-impact-inline {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.impact-section-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.impact-heading {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-arrow {
  color: #6B46C1;
  font-size: 1.25rem;
  font-weight: bold;
}

.impact-links-inline {
  display: flex;
  gap: 1.5rem;
}

.impact-link-inline {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.impact-link-inline:hover {
  color: #6B46C1;
  border-color: #6B46C1;
  background: rgba(107, 70, 193, 0.1);
  transform: translateY(-2px);
}

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  gap: 2rem;
}

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

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}

.copyright .clekzo-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright .clekzo-link:hover {
  color: #6B46C1;
}

.legal-links-minimal {
  display: flex;
  gap: 1.5rem;
}

.legal-link-minimal {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.25rem 0;
  transition: all 0.3s ease;
}

.legal-link-minimal:hover {
  color: #6B46C1;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.social-link:hover {
  background: #6B46C1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.social-link .simple-icon,
.social-link .icon-facebook,
.social-link .icon-instagram {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .footer-minimal {
    padding: 2.5rem 0 1rem 0;
  }
  
  .footer-container {
    padding: 0 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }
  
  .footer-group {
    text-align: center;
    gap: 0.75rem;
  }
  
  .footer-partner .partner-link {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .legal-links-minimal {
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-minimal {
    padding: 2rem 0 1rem 0;
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .impact-section-inline {
    flex-direction: column;
    gap: 1rem;
  }
  
  .impact-links-inline {
    gap: 1rem;
  }
  
  .impact-link-inline {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
  }
  
  .copyright {
    text-align: center;
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  
  .legal-links-minimal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link .simple-icon,
  .social-link .icon-facebook,
  .social-link .icon-instagram {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 479px) {
  .footer-minimal {
    padding: 1.5rem 0 1rem 0;
  }
  
  .footer-container {
    padding: 0 0.75rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-top {
    gap: 1.5rem;
  }
  
  .footer-brand .footer-logo {
    height: 32px;
  }
  
  .footer-partner .partner-link {
    font-size: 0.8125rem;
    gap: 0.5rem;
    padding: 0.375rem;
  }
  
  .footer-partner .partner-logo {
    width: 28px;
    height: 28px;
  }
  
  .footer-impact-inline {
    padding: 1rem 0;
  }
  
  .impact-section-inline {
    gap: 0.75rem;
  }
  
  .impact-heading {
    font-size: 0.8125rem;
  }
  
  .impact-arrow {
    font-size: 1rem;
  }
  
  .impact-links-inline {
    gap: 0.75rem;
  }
  
  .impact-link-inline {
    font-size: 0.75rem;
    padding: 0.3125rem 0.625rem;
  }
  
  .footer-bottom {
    gap: 1rem;
  }
  
  .footer-legal {
    gap: 0.75rem;
  }
  
  .copyright {
    font-size: 0.625rem;
  }
  
  .legal-links-minimal {
    gap: 0.5rem;
  }
  
  .legal-link-minimal {
    font-size: 0.6875rem;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
  }
  
  .social-link .simple-icon,
  .social-link .icon-facebook,
  .social-link .icon-instagram {
    width: 14px;
    height: 14px;
  }
}

/* Navigation Links - Ensure Open Sans fonts */
.navbar6_link,
.navbar6_menu a,
.w-nav-link {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar6_link:hover,
.navbar6_menu a:hover,
.w-nav-link:hover {
  color: #6B46C1 !important;
}

/* Ensure all text uses Open Sans */
body, 
.w-container,
.text-style-tagline,
.heading-style-h1,
.heading-style-h2,
.heading-style-h3,
.heading-style-h4,
.heading-style-h5,
.heading-style-h6,
.text-size-medium,
.text-size-large,
.text-size-small {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}