@charset "UTF-8";
/*! CV Portfolio - Styles principaux
* Description: Fichier principal regroupant tous les styles du portfolio
* Version: 1.0
*/
/*! Functions Utilitaires - v1.0
* Collection de fonctions réutilisables pour le portfolio
*/
/*! Z-index
* Fonction pour accéder aux valeurs de z-index
*/
/*! Breakpoint
* Fonction pour accéder aux valeurs de breakpoint
*/
/*! Theme Value
* Fonction pour accéder aux valeurs de thème
*/
/*! Color Functions
* Fonctions pour la manipulation des couleurs
*/
/*! Color Manipulation
* Fonctions pour la manipulation des couleurs
*/
/*! Mixins Utilitaires - v1.0
* Collection de mixins réutilisables pour le portfolio
*/
/*! Breakpoints
* Mixin pour la gestion responsive du site
* Utilise la map $breakpoints pour les points de rupture
*/
/*! Media Queries
* Mixins améliorés pour les media queries
*/
/*! Flex Center
* Mixin pour centrer facilement avec Flexbox
* Combine align-items et justify-content
*/
/*! Card Base
* Mixin de base pour les composants de type carte
* Inclut les styles pour les thèmes clair/sombre
*/
/*! Hover Lift
* Effet de soulèvement au survol
* Ajoute une transition fluide et une ombre
*/
/*! Gradient Text
* Effet de texte en dégradé
* Utilise les variables de couleur du thème
*/
/*! Focus Ring
* Mixin pour améliorer l'accessibilité des éléments focusables
*/
/*! Truncate Text
* Mixin pour tronquer le texte avec ellipsis
*/
/*! Aspect Ratio
* Mixin pour maintenir un ratio d'aspect
*/
/*! Theme Variant
* Mixin pour appliquer des styles selon le thème
*/
/*! Reset de base - v1.0
* Réinitialisation et styles de base pour tout le site
* Inclut les optimisations de performance et les styles de thème
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
[data-theme=light] body {
  background-color: #f8fafc;
  color: #1a1a1a;
}

/*! Styles de fond principaux
* Définition des couleurs de fond et des dégradés
* Adaptation selon le thème sélectionné
*/
.gradient-bg {
  background: radial-gradient(circle at top right, rgba(0, 112, 243, 0.1), transparent), radial-gradient(circle at bottom right, rgba(0, 212, 255, 0.1), transparent);
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
[data-theme=light] .gradient-bg {
  background: radial-gradient(circle at top right, rgba(0, 112, 243, 0.03), transparent 60%), radial-gradient(circle at bottom left, rgba(0, 212, 255, 0.03), transparent 60%), radial-gradient(circle at center, rgba(248, 250, 252, 0.8), #f8fafc 100%);
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}
[data-theme=light] h1, [data-theme=light] h2, [data-theme=light] h3, [data-theme=light] h4, [data-theme=light] h5, [data-theme=light] h6 {
  color: #1a1a1a;
}

a {
  color: #0070f3;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(0, 88.4938271605, 192);
}
[data-theme=light] a:hover {
  color: rgb(0, 76.7407407407, 166.5);
}

a:focus, button:focus, input:focus, select:focus, textarea:focus, [tabindex]:not([tabindex="-1"]):focus {
  outline: 2px solid rgba(0, 112, 243, 0.5);
  outline-offset: 2px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible), input:focus:not(:focus-visible), select:focus:not(:focus-visible), textarea:focus:not(:focus-visible), [tabindex]:not([tabindex="-1"]):focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 2px solid rgba(0, 112, 243, 0.5);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style-position: inside;
  padding-left: 1rem;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:root {
  --line-height-headings: 1.25;
  --line-height-body: 1.5;
  --letter-spacing-headings: -0.01em;
  --letter-spacing-body: 0.01em;
  --max-line-length: 80ch;
}

.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}
[data-theme=light] .text-muted {
  color: rgba(45, 45, 45, 0.65) !important;
}
.text-gradient {
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
[data-theme=light] .text-gradient {
  background: linear-gradient(135deg, rgb(0, 100.2469135802, 217.5), #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.fw-normal {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}

.lh-tight {
  line-height: var(--line-height-headings);
}
.lh-normal {
  line-height: var(--line-height-body);
}
.lh-relaxed {
  line-height: 1.75;
}

.fs-sm {
  font-size: 0.875rem;
}
.fs-base {
  font-size: 1rem;
}
.fs-lg {
  font-size: 1.125rem;
}
.fs-xl {
  font-size: 1.25rem;
}
.fs-2xl {
  font-size: 1.5rem;
}
.fs-3xl {
  font-size: 1.875rem;
}
.fs-4xl {
  font-size: 2.25rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.focus-visible:focus-visible {
  outline: 2px solid #0070f3 !important;
  outline-offset: 3px !important;
}

.readable-text {
  max-width: var(--max-line-length);
  line-height: var(--line-height-body);
  letter-spacing: var(--letter-spacing-body);
}

.text-purple {
  color: purple;
}

/*! Animations - v1.0
* Définition des animations principales du portfolio
*/
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/*! Animation Toast - v1.0
* Animation pour l'apparition/disparition des notifications toast
*/
@keyframes toast-in-out {
  0% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  15% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  85% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
}
/*! Effet Shimmer - v1.0
* Effet de scintillement pour les états de chargement
*/
.shimmer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-theme=light] .shimmer {
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.03) 0%, rgba(26, 26, 26, 0.08) 50%, rgba(26, 26, 26, 0.03) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/*! Utilities CSS - v1.0
* Classes utilitaires pour la mise en page et les effets visuels
* Optimisées pour la réutilisation et la performance
*/
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

/*! Dynamic Spacing - v1.0
* Classes d'espacement avec des valeurs fluides et adaptatives
*/
.gap-dynamic {
  gap: clamp(1rem, 2vw, 2rem);
}

.py-dynamic {
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

/*! Visual Effects - v1.0
* Effets visuels réutilisables pour améliorer l'interface
*/
.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hover-shadow {
  transition: box-shadow 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: 0 8px 20px rgba(0, 112, 243, 0.15);
}

/*! Accessibility - v1.0
* Styles améliorant l'accessibilité et l'expérience utilisateur
*/
.focus-ring {
  outline: none;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.focus-ring:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.5);
}

.btn-social {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 2px solid;
}
.btn-social:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 112, 243, 0.2);
}
.btn-outline-light {
  border-width: 2px;
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  line-height: 1.1;
}
.btn-outline-light:hover {
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  border-color: transparent;
}
[data-theme=light] .btn-outline-light {
  border-color: rgba(26, 26, 26, 0.3);
  color: #1a1a1a;
}
[data-theme=light] .btn-outline-light:hover {
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  border-color: transparent;
  color: white;
}

.btn-primary {
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 112, 243, 0.2);
}
.btn-primary:active {
  transform: translateY(0);
}

/*! CV Portfolio - Styles principaux
* Description: Fichier principal regroupant tous les styles du portfolio
* Version: 1.0
*/
/*! Section Card Component - v1.0
* Composant pour les cartes de section principales du portfolio
* Inclut les styles de base et les adaptations responsive
*/
.section-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
[data-theme=light] .section-card {
  background: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .section-card:hover {
  background: white;
  border-color: rgba(0, 112, 243, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.08);
}
.section-card {
  padding: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-card:hover:hover {
  transform: translateY(-5px);
  border-color: #0070f3;
  box-shadow: 0 4px 15px rgba(0, 112, 243, 0.1);
}
.section-card .section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  z-index: 1;
}
.section-card .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, #0070f3, #00d4ff);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.section-card:hover .section-title::after {
  width: 100%;
}
.section-card:last-child {
  margin-bottom: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-card {
  animation: fadeInUp 0.6s ease-out forwards;
}
.section-card:nth-child(1) {
  animation-delay: 0.1s;
}
.section-card:nth-child(2) {
  animation-delay: 0.2s;
}
.section-card:nth-child(3) {
  animation-delay: 0.3s;
}
.section-card:nth-child(4) {
  animation-delay: 0.4s;
}
.section-card:nth-child(5) {
  animation-delay: 0.5s;
}
.section-card:nth-child(6) {
  animation-delay: 0.6s;
}
.section-card:nth-child(7) {
  animation-delay: 0.7s;
}
.section-card:nth-child(8) {
  animation-delay: 0.8s;
}
.section-card:nth-child(9) {
  animation-delay: 0.9s;
}
.section-card:nth-child(10) {
  animation-delay: 1s;
}

[data-theme=light] .section-card {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .section-card:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

@media (min-width: 1024px) {
  .section-card {
    padding: 2.5rem;
  }
  .section-card .section-title {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .section-card {
    padding: 2.25rem;
    border-radius: 1rem;
  }
  .section-card .section-title {
    font-size: 1.85rem;
  }
}
@media (min-width: 425px) {
  .section-card {
    padding: 2rem;
    border-radius: 0.85rem;
  }
  .section-card .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 375px) {
  .section-card {
    padding: 1.75rem;
    border-radius: 0.75rem;
  }
  .section-card .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 320px) {
  .section-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
  }
  .section-card .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
/*! Info Card Component - v1.0
* Composant pour les cartes d'information
* Utilisé pour afficher des informations concises avec icônes
*/
.info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
[data-theme=light] .info-card {
  background: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .info-card:hover {
  background: white;
  border-color: rgba(0, 112, 243, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.08);
}
.info-card {
  padding: 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
[data-theme=light] .info-card {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .info-card:hover {
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.1);
}
.info-card:hover:hover {
  transform: translateY(-5px);
  border-color: #0070f3;
  box-shadow: 0 4px 15px rgba(0, 112, 243, 0.1);
}
.info-card:hover {
  transform: translateY(-5px);
}
.info-card i {
  font-size: 1.5rem;
}
.info-card h6 {
  font-weight: 600;
}
.info-card p {
  margin-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
  .info-card {
    transition: none;
  }
  .info-card:hover {
    transform: none;
  }
}

@media (min-width: 425px) {
  .info-card {
    padding: 1.25rem;
  }
}
@media (min-width: 375px) {
  .info-card {
    padding: 1rem;
  }
}
@media (min-width: 320px) {
  .info-card h6 {
    font-size: 0.875rem;
  }
  .info-card p {
    font-size: 0.875rem;
  }
  .info-card i {
    font-size: 1.25rem;
  }
}
.navbar {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.75rem;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  margin-right: 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  box-shadow: 0 4px 10px rgba(0, 112, 243, 0.25);
  position: relative;
  overflow: hidden;
}
.navbar .navbar-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.navbar .navbar-brand:hover::before {
  transform: translateY(0);
}
[data-theme=light] .navbar .navbar-brand {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.navbar .btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border-width: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.navbar .btn.active {
  border-color: #0070f3;
  background-color: rgba(0, 112, 243, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.navbar .btn img {
  width: 20px;
  height: 15px;
  object-fit: contain;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.navbar .btn:hover img {
  transform: scale(1.05);
}
.navbar .btn:focus {
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.25);
}
@media (max-width: 576px) {
  .navbar {
    padding: 0.75rem 0;
  }
  .navbar .navbar-brand {
    font-size: 1.5rem;
    padding: 0.25rem 0.625rem;
  }
  .navbar .btn {
    min-width: 48px;
    min-height: 48px;
    padding: 0.625rem;
  }
}

[data-theme=light] .navbar {
  background: rgba(248, 250, 252, 0.85);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
[data-theme=light] .navbar.scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
[data-theme=light] .navbar .btn {
  border-color: rgba(26, 26, 26, 0.15);
  color: #1a1a1a;
}
[data-theme=light] .navbar .btn.active {
  border-color: #0070f3;
  background-color: rgba(0, 112, 243, 0.1);
  color: #0070f3;
}
[data-theme=light] .navbar .btn:hover {
  background-color: rgba(0, 112, 243, 0.05);
}

@media (min-width: 425px) {
  .navbar {
    padding: 1.25rem 0;
  }
  .navbar.scrolled {
    padding: 0.875rem 0;
  }
  .navbar .navbar-brand {
    font-size: 1.85rem;
  }
  .navbar .btn {
    padding: 0.625rem;
  }
}
@media (min-width: 375px) {
  .navbar {
    padding: 1rem 0;
  }
  .navbar .navbar-brand {
    font-size: 1.75rem;
  }
}
@media (min-width: 320px) {
  .navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .navbar .btn {
    padding: 0.4rem;
    margin-left: 0.25rem;
  }
  .navbar .btn img {
    width: 18px;
    height: 13.5px;
  }
}
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.navbar {
  animation: slideInDown 0.5s ease-out forwards;
}

/*! Timeline Component - v1.0
* Composant pour l'affichage chronologique des expériences
* Inclut une ligne verticale interactive et des points de repère
*/
.timeline {
  position: relative;
  margin-left: 3rem;
  margin-top: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #0070f3;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.timeline {
  /*! Timeline Node - v1.0
  * Points de repère interactifs sur la timeline
  * Animation et effet de remplissage au survol
  */
}
.timeline-node {
  width: 16px;
  height: 16px;
  background: #1a1a1a;
  border: 2px solid #0070f3;
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.timeline-node::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0070f3;
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
}
.timeline {
  /*! Timeline Content - v1.0
  * Contenu des éléments de la timeline
  * Styles des cartes et adaptations responsive
  */
}
.timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
[data-theme=light] .timeline-content {
  background: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .timeline-content:hover {
  background: white;
  border-color: rgba(0, 112, 243, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.08);
}
.timeline-content h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.timeline-content .text-muted {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.timeline-item:hover .timeline-node {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.2);
}
.timeline-item:hover .timeline-node::after {
  transform: scale(1);
}
@media (min-width: 425px) {
  .timeline {
    margin-left: 2rem;
  }
  .timeline-item {
    padding-left: 1.5rem;
  }
  .timeline-node {
    width: 12px;
    height: 12px;
    left: -6px;
  }
  .timeline-content {
    padding: 1rem;
  }
}
@media (min-width: 375px) {
  .timeline {
    margin-left: 1.25rem;
  }
  .timeline-item {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .timeline-content {
    padding: 1rem;
  }
  .timeline-content h3 {
    font-size: 1rem;
  }
  .timeline-content .text-muted {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
  .timeline-content p {
    font-size: 0.9rem;
  }
}
@media (min-width: 320px) {
  .timeline {
    margin-left: 1rem;
  }
  .timeline-item {
    padding-left: 1rem;
    margin-bottom: 1.25rem;
  }
  .timeline-node {
    width: 10px;
    height: 10px;
    left: -5px;
  }
  .timeline-content {
    padding: 0.75rem;
  }
  .timeline-content h3 {
    font-size: 0.95rem;
  }
  .timeline-content .text-muted {
    gap: 0.25rem;
    font-size: 0.75rem;
  }
  .timeline-content .text-muted i {
    font-size: 0.85rem;
  }
  .timeline-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}
@media (max-width: 400px) {
  .timeline {
    margin-left: 0.75rem;
  }
  .timeline::before {
    width: 1.5px;
  }
  .timeline-item {
    padding-left: 0.875rem;
  }
  .timeline-content {
    padding: 0.625rem;
  }
}

/*! Skills Grid Component - v1.0
* Composant de grille responsive pour l'affichage des compétences
* Adapte automatiquement la disposition selon la taille de l'écran
*/
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.skills-grid:has(.skill-item:has(.badge)) {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (min-width: 1600px) {
  .skills-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .skills-grid:has(.skill-item:has(.badge)) {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 425px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 375px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 320px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
@media (max-width: 400px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/*! Skill Item Component - v1.0
* Carte individuelle pour chaque compétence
* Inclut les styles pour l'icône, le titre et le badge de niveau
*/
.skill-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
[data-theme=light] .skill-item {
  background: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .skill-item:hover {
  background: white;
  border-color: rgba(0, 112, 243, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.08);
}
.skill-item {
  display: flex;
  align-items: center;
  min-height: 90px;
}
.skill-item .skill-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.skill-item .skill-header i {
  color: #0070f3;
  font-size: 2rem;
  transition: transform 0.3s ease;
}
.skill-item .skill-header span {
  font-size: 1.25rem;
  font-weight: 500;
}
.skill-item .skill-header .badge {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 8px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  border: none;
  color: white !important;
  margin-left: auto;
  white-space: nowrap;
}
.skill-item:has(.badge) {
  min-height: 92px;
  padding: 2rem;
}
.skill-item:has(.badge) .skill-header {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 0.75rem;
}
.skill-item:has(.badge) .skill-header span {
  font-size: 1.25rem;
  order: 1;
}
.skill-item:has(.badge) .skill-header .badge {
  order: 2;
  margin: 0;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}
.skill-item:hover .skill-header i {
  transform: scale(1.2);
}
@media (min-width: 425px) {
  .skill-item {
    padding: 1rem;
    min-height: 80px;
  }
  .skill-item .skill-header {
    gap: 0.75rem;
  }
  .skill-item .skill-header i {
    font-size: 1.5rem;
  }
  .skill-item .skill-header span {
    font-size: 1rem;
  }
  .skill-item .skill-header .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
}
@media (min-width: 320px) {
  .skill-item .skill-header {
    justify-content: flex-start;
    gap: 1rem;
  }
  .skill-item .skill-header i {
    font-size: 1.25rem;
  }
  .skill-item .skill-header span {
    font-size: 0.95rem;
  }
}

/*! Learning Tech Component - v1.0
* Styles spéciaux pour les technologies en cours d'apprentissage
* Ajoute un effet de dégradé au survol
*/
.learning-tech {
  position: relative;
  overflow: hidden;
}
.learning-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.learning-tech:hover::before {
  opacity: 0.1;
}

@media (min-width: 1024px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .skill-item {
    padding: 1.75rem;
  }
}
@media (min-width: 425px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  .skill-item {
    padding: 1.5rem;
  }
  .skill-item .skill-header {
    gap: 1.25rem;
  }
  .skill-item .skill-header i {
    font-size: 1.75rem;
  }
  .skill-item .skill-header span {
    font-size: 1.1rem;
  }
}
/*! Project Card Component - v1.0
* Composant pour l'affichage des projets
* Inclut les styles pour les cartes de projet, badges et états de chargement
*/
.project-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
[data-theme=light] .project-card {
  background: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .project-card:hover {
  background: white;
  border-color: rgba(0, 112, 243, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.08);
}
.project-card {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.project-card:hover {
  transform: translateY(-2px);
  border-color: #0070f3;
  box-shadow: 0 4px 15px rgba(0, 112, 243, 0.1);
}
.project-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.project-header i {
  font-size: 1.5rem;
  color: #0070f3;
  opacity: 0.9;
}
.project-header .h5 {
  margin: 0;
  font-weight: 600;
}
.project-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.project-badges .badge {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  font-weight: 500;
}
.project-badges .badge.bg-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.project-badges .badge.bg-primary {
  background: linear-gradient(135deg, #0070f3, #00d4ff) !important;
  border: none;
}
.project-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.project-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.project-stats span i {
  color: #0070f3;
}
.project-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0070f3;
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.project-link:hover {
  gap: 1rem;
  color: #00d4ff;
}
.project.shimmer .project-header .h5,
.project.shimmer .project-description,
.project.shimmer .bg-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin: 0.5rem 0;
  opacity: 0.7;
}
.project.shimmer .project-description {
  height: 60px;
}
@media (min-width: 425px) {
  .project-card {
    padding: 1.25rem;
  }
  .project-header {
    gap: 0.75rem;
  }
  .project-header i {
    font-size: 1.25rem;
  }
  .project-header .h5 {
    font-size: 1.1rem;
  }
  .project-description {
    font-size: 0.875rem;
  }
}
@media (min-width: 375px) {
  .project-card {
    padding: 1rem;
  }
  .project-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .project-link {
    font-size: 0.9rem;
  }
}
@media (min-width: 320px) {
  .project-badges .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  .project-stats {
    font-size: 0.85rem;
  }
}

.interest-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
[data-theme=light] .interest-card {
  background: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .interest-card:hover {
  background: white;
  border-color: rgba(0, 112, 243, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.08);
}
.interest-card:hover {
  transform: translateY(-5px);
  border-color: #0070f3;
  box-shadow: 0 4px 15px rgba(0, 112, 243, 0.1);
}
.interest-card {
  height: 100%;
}
.interest-card i {
  color: #0070f3;
  transition: transform 0.3s ease;
}
.interest-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0;
}
.interest-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

.contact-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-form {
  animation: formFadeIn 0.6s ease-out forwards;
}
.contact-form:hover .form-control {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
[data-theme=light] .form-label {
  color: rgba(26, 26, 26, 0.8);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: none;
}
.form-control:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}
.form-control:focus {
  outline: none;
  border-color: #0070f3;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.2);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
[data-theme=light] .form-control {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 26, 26, 0.1);
  color: #1a1a1a;
}
[data-theme=light] .form-control:hover {
  background-color: white;
  border-color: rgba(26, 26, 26, 0.15);
}
[data-theme=light] .form-control:focus {
  background-color: white;
  border-color: #0070f3;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}
[data-theme=light] .form-control::placeholder {
  color: rgba(26, 26, 26, 0.3);
}

textarea.form-control {
  min-height: 120px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}
.btn-primary:focus:not(:active)::after {
  animation: ripple 0.6s ease-out;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 112, 243, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 112, 243, 0.2);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: linear-gradient(135deg, rgb(36.45, 114.85, 206.55), rgb(38.25, 186.65, 216.75));
}
.btn-primary i {
  margin-right: 0.5rem;
  transition: transform 0.2s ease;
}
.btn-primary:hover i {
  transform: translateX(3px);
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}
#form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}
#form-status.show {
  opacity: 1;
  transform: translateY(0);
}
#form-status.alert-success {
  background-color: rgba(25, 135, 84, 0.1);
  border: 1px solid rgba(25, 135, 84, 0.3);
  color: #198754;
}
#form-status.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}
[data-theme=light] #form-status.alert-success {
  background-color: rgba(25, 135, 84, 0.05);
}
[data-theme=light] #form-status.alert-danger {
  background-color: rgba(220, 53, 69, 0.05);
}

@media (min-width: 425px) {
  .contact-form {
    padding: 0 1rem;
  }
  .form-control {
    padding: 0.875rem 1.25rem;
  }
  .btn-primary {
    padding: 0.875rem 2rem;
  }
}
@media (min-width: 375px) {
  .form-control {
    font-size: 1rem;
  }
}
@media (min-width: 320px) {
  .form-control {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  .btn-primary {
    width: 100%;
    padding: 0.75rem 0;
  }
}
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 1000;
}
@media (min-width: 425px) {
  .floating-buttons {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.75rem;
  }
}
@media (min-width: 375px) {
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }
}
@media (max-width: 576px) {
  .floating-buttons {
    bottom: 1.25rem;
    right: 1rem;
    flex-direction: column-reverse;
  }
}

.theme-toggle, .back-to-top {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
[data-theme=light] .theme-toggle, [data-theme=light] .back-to-top {
  background: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .theme-toggle:hover, [data-theme=light] .back-to-top:hover {
  background: white;
  border-color: rgba(0, 112, 243, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.08);
}
.theme-toggle, .back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  color: #ffffff;
}
[data-theme=light] .theme-toggle, [data-theme=light] .back-to-top {
  color: #1a1a1a;
}
@media (min-width: 425px) {
  .theme-toggle, .back-to-top {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.1rem;
  }
}
@media (min-width: 375px) {
  .theme-toggle, .back-to-top {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .theme-toggle, .back-to-top {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    font-size: 1.2rem;
  }
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tooltip {
  --bs-tooltip-bg: #1a1a1a;
  --bs-tooltip-color: #ffffff;
  --bs-tooltip-opacity: 0.95;
  --bs-tooltip-padding-x: 0.75rem;
  --bs-tooltip-padding-y: 0.5rem;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-border-radius: 6px;
  --bs-tooltip-max-width: 300px;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: var(--bs-tooltip-bg);
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: var(--bs-tooltip-bg);
}
[data-theme=light] .tooltip {
  --bs-tooltip-bg: #1a1a1a;
  --bs-tooltip-color: #ffffff;
  --bs-tooltip-opacity: 0.9;
}
.tooltip .tooltip-inner {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: var(--bs-tooltip-max-width);
}

.notifications-container {
  position: fixed;
  bottom: 100px;
  right: 24px;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  z-index: 10000;
  pointer-events: none;
}
@media (min-width: 425px) {
  .notifications-container {
    bottom: 90px;
    right: 20px;
  }
}
@media (min-width: 375px) {
  .notifications-container {
    bottom: 80px;
    right: 16px;
  }
}

.notification {
  padding: 16px;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform-origin: center;
  animation: notificationIn 0.3s ease forwards;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text-color);
  border: 3px solid var(--border-color);
  transition: all 0.2s ease;
}
.notification--success {
  border-color: rgba(34, 197, 94, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(34, 197, 94, 0.4), 0 0 10px rgba(34, 197, 94, 0.2);
}
.notification--error {
  border-color: rgba(239, 68, 68, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(239, 68, 68, 0.4), 0 0 10px rgba(239, 68, 68, 0.2);
}
.notification--info {
  border-color: rgba(59, 130, 246, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.4), 0 0 10px rgba(59, 130, 246, 0.2);
}
.notification::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left;
  animation: notificationProgress 3s linear forwards;
}
.notification .notification__content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.notification .notification__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification .notification__icon::before {
  font-size: 14px;
  color: #fff;
}
.notification .notification__message {
  font-size: 0.95rem;
  line-height: 1.4;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  color: var(--text-color);
}
.notification--success .notification__icon {
  background-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.4);
}
.notification--success .notification__icon::before {
  content: "✓";
}
.notification--success::before {
  background-color: #22c55e;
  height: 4px;
}
.notification--error .notification__icon {
  background-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.4);
}
.notification--error .notification__icon::before {
  content: "!";
}
.notification--error::before {
  background-color: #ef4444;
  height: 4px;
}
.notification--info .notification__icon {
  background-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}
.notification--info .notification__icon::before {
  content: "i";
}
.notification--info::before {
  background-color: #3b82f6;
  height: 4px;
}
.notification.notification--closing {
  animation: notificationBurst 0.5s ease-out forwards !important;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}
.notification--success .particle {
  background-color: #22c55e;
}
.notification--error .particle {
  background-color: #ef4444;
}
.notification--info .particle {
  background-color: #3b82f6;
}

body.dark-theme .notification {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
body.dark-theme .notification--success {
  border-color: rgb(34, 197, 94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(34, 197, 94, 0.6), 0 0 15px rgba(34, 197, 94, 0.3);
}
body.dark-theme .notification--error {
  border-color: rgb(239, 68, 68);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(239, 68, 68, 0.6), 0 0 15px rgba(239, 68, 68, 0.3);
}
body.dark-theme .notification--info {
  border-color: rgb(59, 130, 246);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.6), 0 0 15px rgba(59, 130, 246, 0.3);
}

@keyframes notificationIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes notificationProgress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes notificationBurst {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  60% {
    transform: scale(0.8);
    opacity: 0.4;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes notificationFade {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.3);
  }
}
/*! Composant Accessibilité - v1.0
* Styles dédiés à l'amélioration de l'accessibilité
* Conforme aux directives WCAG 2.1 niveau AA
*/
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 2px solid #0070f3;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px rgba(0, 112, 243, 0.4);
  z-index: 2;
  position: relative;
}

a:hover,
button:hover,
.clickable:hover {
  text-decoration: underline;
}
a:hover.btn, a:hover.card, a:hover.nav-link,
button:hover.btn,
button:hover.card,
button:hover.nav-link,
.clickable:hover.btn,
.clickable:hover.card,
.clickable:hover.nav-link {
  text-decoration: none;
}

.focus-group {
  position: relative;
}
.focus-group:focus-within::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid #0070f3;
  border-radius: calc(0.5rem + 3px);
  pointer-events: none;
}

.minimum-text-size {
  font-size: max(1rem, 16px);
  line-height: 1.5;
}

[data-theme=dark] .high-contrast-text {
  color: #ffffff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}
[data-theme=light] .high-contrast-text {
  color: #000000;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

body[data-high-contrast=true] .text-muted {
  opacity: 0.85 !important;
}
[data-theme=dark] body[data-high-contrast=true] .text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
}
[data-theme=light] body[data-high-contrast=true] .text-muted {
  color: rgba(0, 0, 0, 0.85) !important;
}
body[data-high-contrast=true] {
  font-size: 1.1rem;
}
body[data-high-contrast=true] h1, body[data-high-contrast=true] .h1 {
  font-size: 2.5rem;
}
body[data-high-contrast=true] h2, body[data-high-contrast=true] .h2 {
  font-size: 2rem;
}
body[data-high-contrast=true] h3, body[data-high-contrast=true] .h3 {
  font-size: 1.75rem;
}
body[data-high-contrast=true] h4, body[data-high-contrast=true] .h4 {
  font-size: 1.5rem;
}
body[data-high-contrast=true] h5, body[data-high-contrast=true] .h5 {
  font-size: 1.25rem;
}
body[data-high-contrast=true] h6, body[data-high-contrast=true] .h6 {
  font-size: 1.1rem;
}
body[data-high-contrast=true] {
  line-height: 1.6;
  letter-spacing: 0.01em;
}
body[data-high-contrast=true] a:not(.btn) {
  text-decoration: underline;
  font-weight: 500;
}
[data-theme=dark] body[data-high-contrast=true] a:not(.btn) {
  color: rgb(90, 166.049382716, 255);
}
[data-theme=light] body[data-high-contrast=true] a:not(.btn) {
  color: rgb(0, 88.4938271605, 192);
}
body[data-high-contrast=true] * {
  transition-duration: 0.1s !important;
}
body[data-high-contrast=true] .section-card,
body[data-high-contrast=true] .info-card,
body[data-high-contrast=true] .project-card,
body[data-high-contrast=true] .skill-item {
  border-width: 2px;
}

::selection {
  background-color: rgba(0, 112, 243, 0.2);
  color: currentColor;
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: #0070f3;
  color: white;
  padding: 0.5rem 1rem;
  z-index: 1050;
  transition: top 0.3s;
  font-weight: 500;
}
.skip-to-content:focus {
  top: 0;
}

@media (max-width: 768px) {
  .resize-text {
    font-size: 100%;
    resize: none;
  }
}
@media (min-width: 769px) {
  .resize-text {
    resize: both;
    overflow: auto;
    min-height: 5rem;
    max-height: 20rem;
    padding: 0.5rem;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.7;
}

[data-focus-info]::before {
  content: attr(data-focus-info);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.5rem;
  background: rgba(26, 26, 26, 0.9);
  color: white;
  border-radius: 4px;
  font-size: 0.75rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 1000;
  white-space: nowrap;
}

[data-focus-info]:focus::before {
  opacity: 1;
}

.profile-img-container {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 425px) {
  .profile-img-container {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 375px) {
  .profile-img-container {
    width: 130px;
    height: 130px;
  }
}
@media (min-width: 320px) {
  .profile-img-container {
    width: 120px;
    height: 120px;
  }
}
.profile-img-container img, .profile-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #0070f3;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.profile-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.02);
  opacity: 1;
  inset: 0;
  border-radius: 50%;
}
.profile-img#profile-img {
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.profile-img#profile-img.loaded {
  opacity: 1;
  transform: scale(1);
}
.profile-img#profile-img.loaded + .profile-img-placeholder {
  opacity: 0;
}

header {
  padding-top: 2rem;
  margin-bottom: 2rem;
}
header h1 {
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
[data-theme=light] header h1 {
  background: linear-gradient(135deg, #1a1a1a, rgba(26, 26, 26, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 425px) {
  .profile-img-container {
    width: 150px;
    height: 150px;
  }
  header h1 {
    font-size: 2rem;
  }
  .info-cards-grid {
    gap: 1rem;
  }
}
@media (min-width: 425px) {
  .display-4 {
    font-size: 2.25rem;
  }
}
@media (min-width: 375px) {
  .display-4 {
    font-size: 2rem;
  }
}
@media (min-width: 320px) {
  .display-4 {
    font-size: 1.75rem;
  }
}

@media (min-width: 425px) {
  .lead {
    font-size: 1.15rem;
  }
}
@media (min-width: 320px) {
  .lead {
    font-size: 1rem;
  }
}

@media (min-width: 425px) {
  .header {
    padding-top: 3rem;
  }
}
@media (min-width: 375px) {
  .header {
    padding-top: 2.5rem;
  }
}
@media (min-width: 320px) {
  .header {
    padding-top: 2rem;
  }
}

.container {
  max-width: 1400px;
  width: 100%;
  padding-right: 3rem;
  padding-left: 3rem;
  margin-right: auto;
  margin-left: auto;
  overflow-x: hidden;
}
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 425px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 375px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (min-width: 320px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.content-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 425px) {
  .content-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 375px) {
  .content-wrapper {
    margin-top: 1.5rem;
  }
}
@media (min-width: 320px) {
  .content-wrapper {
    margin-top: 1rem;
  }
}

.row {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  max-width: 100%;
}
@media (min-width: 320px) {
  .row {
    --bs-gutter-x: 0.75rem;
    margin-right: -0.375rem;
    margin-left: -0.375rem;
  }
}

.col, [class*=col-] {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 768px) {
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .content-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 425px) {
  .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .row {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
  }
  .col, [class*=col-] {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
/*! Particles Effect - v1.0
* Effet de particules interactives en arrière-plan
* Optimisé pour les performances et l'accessibilité
*/
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/*! Individual Particle - v1.0
* Style des particules individuelles
* Animation et transitions fluides
*/
.particle {
  position: absolute;
  background: #0070f3;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/*! CV Portfolio - Styles principaux
* Description: Fichier principal regroupant tous les styles du portfolio
* Version: 1.0
*/
:root {
  --primary: #0070f3;
  --gradient-1: #0070f3;
  --gradient-2: #00d4ff;
  --dark: #1a1a1a;
  --light: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-border: rgba(255, 255, 255, 0.05);
  --text-muted: rgba(255, 255, 255, 0.7);
}
:root .section-card,
:root .info-card,
:root .skill-item,
:root .interest-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
:root .skill-item:hover,
:root .interest-card:hover,
:root .section-card:hover,
:root .info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
:root .timeline::before {
  background: rgba(0, 112, 243, 0.6);
}
:root .timeline-node {
  background: #1a1a1a;
}

/*! CV Portfolio - Styles principaux
* Description: Fichier principal regroupant tous les styles du portfolio
* Version: 1.0
*/
/*! Theme Light - v1.0
* Styles spécifiques au thème clair
* Inclut les surcharges de variables et les adaptations visuelles
*/
[data-theme=light] {
  --primary: #0070f3;
  --gradient-1: #0070f3;
  --gradient-2: #00d4ff;
  --dark: #ffffff;
  --light: #1a1a1a;
  --card-bg: rgb(255, 255, 255);
  --card-border: rgba(0, 0, 0, 0.1);
  --text-muted: rgba(45, 45, 45, 0.65);
}
[data-theme=light] h3 {
  color: #1a1a1a;
}
[data-theme=light] .badge.bg-primary {
  color: white;
  font-weight: 500;
}
[data-theme=light] .badge.bg-secondary {
  background: rgba(26, 26, 26, 0.05) !important;
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.1);
}
[data-theme=light] .form-control {
  background: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
}
[data-theme=light] .form-control:focus {
  background: white;
  border-color: #0070f3;
  box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.1);
}
[data-theme=light] .form-control::placeholder {
  color: rgba(45, 45, 45, 0.65);
}
[data-theme=light] .navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .navbar .btn-outline-light {
  color: #1a1a1a;
  border-color: rgba(26, 26, 26, 0.15);
}
[data-theme=light] .navbar .btn-outline-light:hover {
  color: white;
  background: linear-gradient(135deg, #0070f3, #00d4ff);
  border-color: transparent;
}
[data-theme=light] .back-to-top,
[data-theme=light] .theme-toggle {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .back-to-top:hover,
[data-theme=light] .theme-toggle:hover {
  background: white;
  color: #0070f3;
  border-color: rgba(0, 112, 243, 0.2);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .timeline::before {
  background: linear-gradient(to bottom, rgba(0, 112, 243, 0.1), rgba(0, 112, 243, 0.2), rgba(0, 112, 243, 0.1));
}
[data-theme=light] .timeline-node {
  background: white;
  border-color: rgba(0, 112, 243, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.1);
}
[data-theme=light] .tooltip {
  --bs-tooltip-bg: #1a1a1a;
  --bs-tooltip-color: #ffffff;
}
[data-theme=light] span {
  color: #1a1a1a;
}

/*! Theme Print - v1.0
* Styles spécifiques pour l'impression
* Optimise le CV pour l'impression papier ou PDF
*/
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 12pt;
    line-height: 1.4;
    background-color: white !important;
    color: black !important;
  }
  @page {
    margin: 1.5cm;
    size: A4 portrait;
  }
  a, a:visited {
    text-decoration: underline;
    color: #000 !important;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 90%;
    font-style: italic;
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after,
  .btn-social::after,
  a.project-link::after {
    content: "";
  }
  .navbar,
  .floating-buttons,
  .theme-toggle,
  .back-to-top,
  .gradient-bg::before,
  canvas,
  #particles-canvas,
  button:not([type=submit]),
  .shimmer,
  .profile-img-placeholder {
    display: none !important;
  }
  .container {
    width: 100%;
    max-width: 100%;
  }
  .section-card {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 1cm;
    padding: 0.5cm;
    border: 1px solid #ddd;
    border-radius: 0.2cm;
  }
  .section-title {
    margin-bottom: 0.5cm;
    border-bottom: 1px solid #000;
    padding-bottom: 0.2cm;
  }
  .project-card {
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 0.5cm;
    padding: 0.3cm;
    border: 1px solid #ddd;
  }
  .timeline::before {
    background: #888 !important;
  }
  .timeline-node {
    background: white !important;
    border: 2px solid #888 !important;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  h1 {
    font-size: 24pt;
  }
  h2 {
    font-size: 18pt;
  }
  h3 {
    font-size: 14pt;
  }
  .info-card {
    padding: 0.3cm;
  }
  .content-wrapper {
    padding: 0;
  }
  .text-primary,
  .text-gradient,
  .badge {
    color: #000 !important;
    background: none !important;
    -webkit-text-fill-color: #000 !important;
  }
  .badge {
    border: 1px solid #888;
    padding: 0.1cm 0.2cm;
  }
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3cm;
  }
  .skill-item {
    border: 1px solid #ddd;
    padding: 0.2cm;
  }
  body::after {
    content: "CV imprimé depuis " attr(data-url) " le " attr(data-date);
    display: block;
    text-align: center;
    font-size: 9pt;
    margin-top: 1cm;
    color: #666 !important;
  }
  .profile-img-container {
    width: 3cm;
    height: 3cm;
    margin: 0 auto 0.5cm;
  }
  #profile-img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
  }
  .contact-form {
    display: none;
  }
  .contact-form::after {
    content: "Email: Kyllian.Charbonneau@gmail.com | Téléphone: 07 XX XX XX XX";
    display: block;
    text-align: center;
    margin-top: 0.5cm;
    font-size: 11pt;
  }
}

/*# sourceMappingURL=style.css.map */
