/* 
 * Footer CSS Styles
 * Comic Gallery Website
 */

 .site-footer {
    background-color: var(--secondary-bg);
    color: var(--text-dim);
    padding: 3rem 1rem 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  
  .footer-section h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: #bc8ee7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-links a:hover {
    color: var(--text-light);
  }
  
  .footer-links svg {
    width: 18px;
    height: 18px;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  /* MailerLite Form Customization */
  .ml-form-embedContainer {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .ml-form-embedContainer .ml-form-embedWrapper {
    background-color: transparent !important;
    border: none !important;
  }
  
  .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody {
    padding: 0 !important;
  }
  
  .ml-form-embedContainer input {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-light) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 4px !important;
    margin-bottom: 0.5rem !important;
  }
  
  .ml-form-embedContainer input:focus {
    border-color: var(--accent-color) !important;
    outline: none !important;
  }
  
  .ml-form-embedContainer input::placeholder {
    color: var(--text-dim) !important;
    opacity: 0.8 !important;
  }
  
  .ml-form-embedContainer button {
    background-color: var(--accent-color) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
  }
  
  .ml-form-embedContainer button:hover {
    background-color: #bc8ee7 !important;
    transform: translateY(-2px) !important;
  }
  
  .footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(191, 142, 231, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-dim);
  }
  
  .footer-bottom p {
    margin: 0.5rem 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .newsletter-form {
      max-width: 100%;
    }
    
    .social-links {
      justify-content: center;
    }
    
    .footer-section {
      align-items: center;
      text-align: center;
    }
    
    .footer-links a {
      justify-content: center;
    }
  }
  
  /* Dotted background overlay for footer (similar to main container) */
  .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(#fff 1px, transparent 1px),
      radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
  }


  html body .app-container .site-footer .footer-links li a,
html body .app-container .site-footer .social-links a,
html body .app-container .site-footer .footer-bottom a {
  color: #bc8ee7 !important;
  text-decoration: none !important;
}