@charset "UTF-8";
/* Footer Ares - Corporate Style */
.footer-ares {
  background: var(--theme-bg-secondary);
  border-top: 1px solid var(--theme-border);
  padding: 4rem 0 2rem;
  margin-top: 0;
  /* Reset margin pour éviter l'accumulation d'espaces */ }

.footer-section {
  margin-bottom: 2rem; }

.footer-logo {
  margin-bottom: 1.5rem; }

.footer-logo img {
  transition: all 0.3s ease;
  filter: var(--theme-logo-filter); }

.footer-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--theme-text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem; }

.footer-description {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--theme-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0; }

.footer-section-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  color: var(--theme-text-primary);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0; }

.footer-links li {
  margin-bottom: 0.75rem; }

.footer-links a {
  color: var(--theme-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block; }

.footer-links a:hover {
  color: var(--theme-nav-hover);
  text-decoration: none;
  transform: translateX(4px); }

.footer-contact {
  margin: 0; }

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem; }

.contact-icon {
  margin-right: 0.75rem;
  font-size: 1rem;
  width: 20px;
  text-align: center; }

.contact-item a {
  color: var(--theme-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease; }

.contact-item a:hover {
  color: var(--theme-nav-hover);
  text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--theme-border);
  padding-top: 2rem;
  margin-top: 3rem; }

.copyright {
  font-size: 0.85rem;
  color: var(--theme-text-light);
  margin-bottom: 0; }

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end; }

.footer-legal a {
  font-size: 0.85rem;
  color: var(--theme-text-light);
  text-decoration: none;
  transition: all 0.3s ease; }

.footer-legal a:hover {
  color: var(--theme-nav-hover);
  text-decoration: none; }

/* Social Links */
.footer-social {
  margin-bottom: 2rem;
  margin-top: 2rem; }

.social-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  color: var(--theme-text-primary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase; }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }

.social-link {
  color: var(--theme-text-secondary);
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative; }

.social-link:hover {
  color: var(--theme-nav-hover);
  text-decoration: none;
  transform: translateX(4px); }

.social-icon {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  transition: all 0.3s ease; }

.social-icon-img {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  object-fit: contain;
  filter: brightness(0.8);
  /* Slightly dimmed by default */ }

.social-icon-text {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--theme-text-secondary); }

.social-link:hover .social-icon {
  transform: scale(1.2); }

.social-link:hover .social-icon-img {
  transform: scale(1.2);
  filter: brightness(1);
  /* Full brightness on hover */ }

.social-link:hover .social-icon-text {
  transform: scale(1.2);
  color: var(--theme-nav-hover); }

/* Social link hover effect */
.social-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 32px;
  /* Account for icon width */
  background: var(--theme-nav-hover);
  transition: width 0.3s ease; }

.social-link:hover::before {
  width: calc(100% - 32px); }

/* Dark theme specific adjustments */
[data-theme="dark"] .footer-ares {
  background: var(--theme-bg-secondary); }

[data-theme="dark"] .social-icon-img {
  filter: brightness(0.9) invert(1);
  /* Invert colors for dark theme */ }

[data-theme="dark"] .social-link:hover .social-icon-img {
  filter: brightness(1) invert(1); }

/* Responsive Design */
@media (max-width: 768px) {
  .footer-ares {
    padding: 3rem 0 1.5rem; }
  .footer-section {
    margin-bottom: 2.5rem; }
  .footer-legal {
    justify-content: flex-start;
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.5rem; }
  .footer-bottom {
    text-align: center; }
  .footer-bottom .row > div {
    text-align: center; }
  .social-links {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center; }
  .social-link {
    font-size: 0.85rem; } }

@media (max-width: 576px) {
  .footer-ares {
    padding: 2rem 0 1rem; }
  .footer-logo img {
    height: 32px; }
  .footer-section-title {
    font-size: 0.8rem; }
  .footer-links a,
  .contact-item,
  .copyright,
  .footer-legal a {
    font-size: 0.8rem; }
  .social-title {
    font-size: 0.85rem; }
  .social-link {
    font-size: 0.8rem; }
  .social-icon {
    font-size: 1rem; }
  .social-icon-img {
    width: 18px;
    height: 18px; } }

/* Animation pour les liens */
.footer-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: var(--theme-nav-hover);
  transition: width 0.3s ease; }

.footer-links a {
  position: relative; }

.footer-links a:hover::before {
  width: 100%; }

/* Hover effect pour les sections */
.footer-section:hover .footer-section-title {
  color: var(--theme-nav-hover);
  transition: color 0.3s ease; }
