/* ---------------------------------------------------------------
   FOOTER.CSS — AIRSHADOW Footer
   --------------------------------------------------------------- */

/* --- FOOTER PRINCIPAL --- */
.footer {
  background: #000000;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding: 60px 0 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- CONTENU FOOTER --- */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- SECTION BRAND --- */
.footer-section:first-child h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-section:first-child p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #FFD700, #FF6B35);
  border-color: #FFD700;
  color: #000;
  transform: translateY(-2px);
}

/* --- SECTIONS FOOTER --- */
.footer-section h3,
.footer-section h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-section li a:hover {
  color: #FFD700;
  transform: translateX(4px);
}

/* --- BOTTOM FOOTER --- */
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  
  .footer-section:first-child {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-section:first-child {
    grid-column: span 1;
  }
  
  .footer-section h3,
  .footer-section h4 {
    font-size: 0.9rem;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 32px 0 0;
  }
  
  .footer-content {
    gap: 24px;
  }
  
  .footer-section:first-child h3 {
    font-size: 1.5rem;
  }
  
  .footer-section:first-child p {
    font-size: 0.85rem;
  }
}
