/* Fichier font-awesome-custom.css optimisé - contient uniquement les icônes utilisées */

/* Définition des polices */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('../fonts/fontawesome/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/fontawesome/fa-brands-400.woff2') format('woff2');
}

/* Styles de base pour les icônes */
.fa,
.fas,
.far,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
}

/* Icônes sociales */
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f39e";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-linkedin-in:before {
  content: "\f0e1";
}
.fa-github:before {
  content: "\f09b";
}

/* Icônes de navigation */
.fa-bars:before {
  content: "\f0c9";
}
.fa-times:before {
  content: "\f00d";
}

/* Icônes section services */
.fa-code:before {
  content: "\f121";
}
.fa-palette:before {
  content: "\f53f";
}
.fa-mobile-alt:before {
  content: "\f3cd";
}
.fa-chart-line:before {
  content: "\f201";
}
.fa-share-nodes:before {
  content: "\f1e0";
}
.fa-check:before {
  content: "\f00c";
}

/* Icônes section équipe */
.fa-user:before {
  content: "\f007";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-handshake:before {
  content: "\f2b5";
}
.fa-terminal:before {
  content: "\f120";
}

/* Icônes expérience */
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-calendar-alt:before {
  content: "\f073";
}
.fa-clock:before {
  content: "\f017";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-heart:before {
  content: "\f004";
}

/* Icônes villes */
.fa-map-marker-alt:before,
.fa-location-dot:before {
  content: "\f3c5";
}
.fa-building:before {
  content: "\f1ad";
}

/* Icônes contact */
.fa-envelope:before {
  content: "\f0e0";
}
.fa-phone:before {
  content: "\f095";
}
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-message:before {
  content: "\f27a";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-tag:before {
  content: "\f02b";
}

/* Animation pour .fa-spin */
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 