/* ========================================
   ORTHOSCAPHE - STYLES DU PIED DE PAGE
   ======================================== */

/* ========================================
   12. PIED DE PAGE - COMPACT
   ======================================== */

.site-footer {
  margin-top: 32px;
  padding: 20px;
  background: #222e36;
  color: #ffffff;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Mobile: Layout vertical avec tout centré */
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
  }
  
  .footer-brand {
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .footer-brand p {
    text-align: center;
    margin: 0;
  }
  
  .footer-links {
    margin-bottom: 0.5rem;
    justify-content: center;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .footer-copyright {
    margin-top: 0.5rem;
    text-align: center;
  }
  
  .footer-credit {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Desktop: Layout horizontal avec copyright en bas */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
  }
  
  .footer-brand {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .footer-links {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .footer-contact {
    flex-shrink: 0;
  }
  
  .footer-copyright {
    margin-top: 0;
    flex-shrink: 0;
  }
  
  .footer-credit {
    margin-top: 0;
    flex-shrink: 0;
  }
}

.footer-brand {
  font-size: var(--font-size-lg);
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-color);
}

.footer-contact-item {
  margin: 0.25rem 0;
  text-align: center;
  font-size: var(--font-size-sm);
  display: block;
}

.footer-copyright {
  margin-top: 0.5rem;
  opacity: 0.7;
  text-align: center;
  font-size: var(--font-size-xs);
}

.footer-credit {
  margin-top: 0.5rem;
  opacity: 0.6;
  text-align: center;
  font-size: var(--font-size-xs);
}

.footer-credit a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #ffffff;
}
