/* ========================================
   FOOTER.CSS - STYLES DU FOOTER ISYTEM
   ======================================== */

   .footer {
    background: #171615;
    padding: 64px 0 32px 0;
    color: #F8F4EC;
    position: relative;
    overflow: hidden;
  }
  
  .footer::before {
    content: '🧩';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 150px;
    opacity: 0.02;
    transform: rotate(-15deg);
  }
  
  .footer__container {
    position: relative;
    z-index: 1;
  }
  
  .footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(248, 244, 236, 0.1);
  }
  
  .footer__section {
    /* Contenu des sections */
  }
  
  .footer__title {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #F8F4EC;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer__item {
    margin-bottom: 12px;
  }
  
  .footer__link {
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #F8F4EC;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer__link:hover {
    opacity: 1;
    color: #FF8000;
    transform: translateX(4px);
  }
  
  .footer__link--social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  .footer__bottom {
    text-align: center;
    padding-top: 32px;
  }
  
  .footer__copyright {
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #F8F4EC;
    opacity: 0.6;
    margin: 0;
  }
  
  /* ===================
     RESPONSIVE - MOBILE
     =================== */
  @media (max-width: 768px) {
    .footer {
      padding: 48px 0 24px 0;
    }
    
    .footer__content {
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 32px;
      padding-bottom: 32px;
    }
    
    .footer__title {
      font-size: 16px;
      margin-bottom: 16px;
    }
    
    .footer__link {
      font-size: 14px;
    }
    
    .footer__bottom {
      padding-top: 24px;
    }
    
    .footer__copyright {
      font-size: 13px;
    }
  }