/*-----------------------------------*\
  #style.css — Kimy LAOU Portfolio
  Cybersécurité · Design système sombre
\*-----------------------------------*/


/*-----------------------------------*\
  #CUSTOM PROPERTIES
\*-----------------------------------*/

:root {
  /* Palette principale */
  --bg-body:        #0a0a0f;
  --bg-card:        #12121a;
  --bg-card-alt:    #1a1a26;
  --bg-elevated:    #1e1e2e;

  --border:         rgba(255, 255, 255, 0.07);
  --border-strong:  rgba(255, 255, 255, 0.12);
  --border-accent:  rgba(0, 212, 255, 0.2);

  /* Accents */
  --cyan:           #00d4ff;
  --cyan-dim:       rgba(0, 212, 255, 0.1);
  --cyan-border:    rgba(0, 212, 255, 0.25);
  --cyan-glow:      rgba(0, 212, 255, 0.3);
  --violet:         #a78bfa;
  --violet-dim:     rgba(167, 139, 250, 0.1);
  --copper:         #f59e0b;

  /* Texte */
  --text-1:         #f1f5f9;
  --text-2:         #94a3b8;
  --text-3:         #475569;
  --text-accent:    #00d4ff;

  /* Typographie */
  --font-sans:      'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Tailles */
  --fs-1: 28px;
  --fs-2: 20px;
  --fs-3: 18px;
  --fs-4: 16px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fs-7: 13px;
  --fs-8: 12px;
  --fs-9: 11px;

  /* Graisses */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* Border-radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.45s ease;

  /* Ombres */
  --shadow-card: 0 1px 0 var(--border), 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 24px var(--cyan-glow);
  --shadow-1:    0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-2:    0 8px 30px rgba(0, 0, 0, 0.5);
}


/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { font-family: var(--font-sans); }
body { background: var(--bg-body); color: var(--text-1); }

a { text-decoration: none; color: inherit; }
li { list-style: none; }
img, i, a, button, time, span { display: block; }
button { font: inherit; background: none; border: none; text-align: left; cursor: pointer; color: inherit; }
input, textarea { display: block; width: 100%; background: none; font: inherit; color: inherit; }
sup { font-size: 0.65em; vertical-align: super; }
address { font-style: normal; }

::selection { background: var(--cyan); color: var(--bg-body); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* Scrollbar globale */
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-card); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-strong); }


/*-----------------------------------*\
  #CANVAS BACKGROUND
\*-----------------------------------*/

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


/*-----------------------------------*\
  #AVAILABILITY BANNER
\*-----------------------------------*/

.avail-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 212, 255, 0.08);
  border-bottom: 1px solid var(--cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: var(--fs-9);
  color: var(--cyan);
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.avail-sep { opacity: 0.4; }

.avail-rhythm { opacity: 0.7; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(0, 212, 255, 0); }
}


/*-----------------------------------*\
  #REUSED STYLES
\*-----------------------------------*/

.sidebar,
article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 15px;
  box-shadow: var(--shadow-card);
  z-index: 1;
}

.separator {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.section-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-accent), transparent);
  margin: 28px 0;
}

.icon-box {
  position: relative;
  background: var(--bg-elevated);
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: var(--cyan);
  border: 1px solid var(--border-accent);
  flex-shrink: 0;
}

article { display: none; }

article.active {
  display: block;
  animation: fadeIn 0.4s ease backwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Headings */
.h2, .h3, .h4, .h5 { color: var(--text-1); }
.h2 { font-size: var(--fs-1); font-weight: var(--fw-600); }
.h3 { font-size: var(--fs-2); font-weight: var(--fw-600); }
.h4 { font-size: var(--fs-4); font-weight: var(--fw-500); }
.h5 { font-size: var(--fs-7); font-weight: var(--fw-500); }

.article-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 24px;
  font-size: var(--fs-1);
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(to right, var(--cyan), var(--violet));
  border-radius: 3px;
  box-shadow: 0 0 10px var(--cyan-glow);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scrollbar pour les listes horizontales */
.has-scrollbar::-webkit-scrollbar { height: 4px; }
.has-scrollbar::-webkit-scrollbar-track { background: var(--bg-elevated); border-radius: 4px; }
.has-scrollbar::-webkit-scrollbar-thumb { background: var(--border-accent); border-radius: 4px; }


/*-----------------------------------*\
  #MAIN LAYOUT
\*-----------------------------------*/

main {
  position: relative;
  z-index: 1;
  margin: 12px;
  margin-bottom: 75px;
  min-width: 260px;
}


/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  margin-bottom: 14px;
  max-height: 116px;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.sidebar.active { max-height: 600px; }

.sidebar-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Avatar */
.avatar-box {
  position: relative;
  background: var(--bg-elevated);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  flex-shrink: 0;
}

.avatar-box::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -2px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  animation: scan 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan {
  0%   { top: -2px; opacity: 1; }
  80%  { opacity: 0.5; }
  100% { top: 102%; opacity: 0; }
}

/* Nom + titre dans sidebar */
.info-content .name {
  color: var(--text-1);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.info-content .title {
  display: inline-block;
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  font-family: var(--font-mono);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Bouton "voir contacts" sur mobile */
.info_more-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0 var(--r-lg);
  color: var(--cyan);
  font-size: var(--fs-9);
  padding: 10px;
  transition: var(--t-base);
}

.info_more-btn:hover { background: var(--cyan-dim); border-color: var(--cyan-border); }
.info_more-btn span  { display: none; }

/* Partie inférieure sidebar */
.sidebar-info_more {
  opacity: 0;
  visibility: hidden;
  transition: var(--t-slow);
}

.sidebar.active .sidebar-info_more {
  opacity: 1;
  visibility: visible;
}

/* Badge alternance dans sidebar */
.sidebar-alt-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  margin-bottom: 4px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.badge-title {
  display: block;
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  color: var(--cyan);
  font-family: var(--font-mono);
}

.badge-detail {
  display: block;
  font-size: var(--fs-9);
  color: var(--text-2);
  font-family: var(--font-mono);
}

/* Contacts */
.contacts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 100%;
}

.contact-info { max-width: calc(100% - 44px); }

.contact-title {
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.contact-info :is(.contact-link, time, address) {
  font-size: var(--fs-7);
  color: var(--text-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--t-fast);
}

.contact-link:hover { color: var(--cyan); }

/* CV download button */
.cv-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  border-radius: var(--r-md);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--t-base);
}

.cv-download-btn:hover {
  background: rgba(0, 212, 255, 0.18);
  box-shadow: 0 0 16px var(--cyan-glow);
}

/* Social links */
.social-list {
  display: flex;
  gap: 10px;
  padding-left: 4px;
}

.social-link {
  width: 34px;
  height: 34px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 15px;
  transition: var(--t-base);
}

.social-link:hover {
  color: var(--cyan);
  border-color: var(--cyan-border);
  background: var(--cyan-dim);
}


/*-----------------------------------*\
  #NAVBAR
\*-----------------------------------*/

.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 26, 0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  border-radius: 14px 14px 0 0;
  z-index: 10;
}

.navbar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}

.navbar-link {
  color: var(--text-2);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  padding: 16px 8px;
  transition: color var(--t-base);
  white-space: nowrap;
}

.navbar-link:hover  { color: var(--text-1); }
.navbar-link.active {
  color: var(--cyan);
  text-shadow: 0 0 14px var(--cyan-glow);
}


/*-----------------------------------*\
  #HERO TERMINAL
\*-----------------------------------*/

.hero-terminal {
  margin-bottom: 8px;
}

.hero-term-window {
  background: #0d0d14;
  border: 1px solid var(--border-accent);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.06);
}

.term-win-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.twb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.twb-dot.twb-red    { background: #ff5f57; }
.twb-dot.twb-yellow { background: #febc2e; }
.twb-dot.twb-green  { background: #28c840; }

.twb-title {
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: var(--fs-9);
  color: var(--text-3);
  letter-spacing: 0.3px;
}

.hero-term-body {
  padding: 16px 18px;
  min-height: 90px;
}

.term-line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: var(--fs-7);
  line-height: 1.8;
}

.term-prompt { color: var(--cyan); font-weight: var(--fw-500); }
.term-cmd    { color: var(--text-1); }

.term-output { margin-left: 0; padding-left: 4px; }
.term-result { color: var(--violet); font-weight: var(--fw-500); }

.term-cursor-blink {
  color: var(--cyan);
  animation: cursor-blink 0.8s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.highlight-alt { color: var(--cyan); font-weight: var(--fw-600); }

/* Sous-titre hero */
.hero-subtitle {
  font-size: var(--fs-6);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Boutons hero */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Boutons globaux */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--cyan);
  color: var(--bg-body);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  border-radius: var(--r-md);
  transition: var(--t-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

.btn-primary:hover {
  background: #33ddff;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  color: var(--cyan);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  border: 1px solid var(--cyan-border);
  border-radius: var(--r-md);
  transition: var(--t-base);
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-ghost:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
}


/*-----------------------------------*\
  #À PROPOS — texte
\*-----------------------------------*/

.about .article-title { margin-bottom: 16px; }

.about-text {
  color: var(--text-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-text p { margin-bottom: 14px; }
.about-text strong { color: var(--text-1); font-weight: var(--fw-600); }


/*-----------------------------------*\
  #SERVICE / DOMAINES
\*-----------------------------------*/

.service { margin-bottom: 36px; }
.service-title { margin-bottom: 18px; }

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.service-item:hover {
  border-color: var(--cyan-border);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.07);
}

.service-icon-box {
  width: 40px;
  height: 40px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-fa-icon {
  font-size: 16px;
  color: var(--cyan);
}

.service-content-box { flex: 1; }

.service-item-title {
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  color: var(--text-1);
  margin-bottom: 6px;
}

.service-item-text {
  font-size: var(--fs-7);
  color: var(--text-2);
  line-height: 1.6;
}


/*-----------------------------------*\
  #SOFT SKILLS
\*-----------------------------------*/

.softskills-section { margin-bottom: 10px; }

.softskills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ss-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  transition: border-color var(--t-base);
}

.ss-card:hover { border-color: var(--violet-dim); }

.ss-icon-wrap {
  width: 34px;
  height: 34px;
  background: var(--violet-dim);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  font-size: 14px;
  margin-bottom: 10px;
}

.ss-title {
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  color: var(--text-1);
  margin-bottom: 5px;
}

.ss-text {
  font-size: var(--fs-7);
  color: var(--text-2);
  line-height: 1.5;
}


/*-----------------------------------*\
  #TIMELINE (Expériences)
\*-----------------------------------*/

.timeline { margin-bottom: 36px; }

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.timeline-list {
  margin-left: 0;
  position: relative;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--cyan-border), transparent);
  margin-left: -1px;
}

.timeline-item {
  position: relative;
  padding-left: 20px;
  padding-bottom: 0;
}

.timeline-item:not(:last-child) { margin-bottom: 12px; }

/* Puce sur la timeline */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
}

/* Header expandable */
.timeline-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  transition: border-color var(--t-base);
}

.expandable .timeline-header {
  cursor: pointer;
  user-select: none;
}

.expandable .timeline-header:hover {
  border-color: var(--cyan-border);
}

.expandable.open .timeline-header {
  border-color: var(--cyan-border);
  background: rgba(0, 212, 255, 0.04);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.tl-main { flex: 1; min-width: 0; }

.timeline-item-title {
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  color: var(--text-1);
  line-height: 1.3;
  margin-bottom: 3px;
}

.timeline-company {
  display: block;
  font-size: var(--fs-8);
  color: var(--text-2);
  font-family: var(--font-mono);
}

.tl-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.timeline-date {
  font-size: var(--fs-9);
  font-family: var(--font-mono);
  color: var(--cyan);
  font-weight: var(--fw-500);
  white-space: nowrap;
}

.expand-chevron {
  font-size: 11px;
  color: var(--text-3);
  transition: transform var(--t-base);
}

.expandable.open .expand-chevron { transform: rotate(180deg); color: var(--cyan); }

/* Corps expandable */
.timeline-body {
  background: rgba(0, 212, 255, 0.02);
  border: 1px solid var(--cyan-border);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 16px;
  display: none;
}

.expandable.open .timeline-body { display: block; }

.xp-list {
  list-style: none;
  margin-bottom: 14px;
}

.xp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-7);
  color: var(--text-2);
  line-height: 1.5;
  padding: 4px 0;
}

.xp-bullet {
  color: var(--cyan);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.xp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.xp-tag {
  font-family: var(--font-mono);
  font-size: var(--fs-9);
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.xp-tag--violet {
  color: var(--violet);
  background: var(--violet-dim);
  border-color: rgba(167, 139, 250, 0.25);
}

.timeline-text {
  font-size: var(--fs-7);
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.timeline-text strong { color: var(--text-1); }


/*-----------------------------------*\
  #COMPÉTENCES — Grille de catégories
\*-----------------------------------*/

.skills-intro {
  font-size: var(--fs-6);
  color: var(--text-2);
  margin-bottom: 24px;
  font-style: italic;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.skill-category {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

/* Couleurs par catégorie */
.cat--offensive { border-left: 3px solid var(--cyan); }
.cat--offensive:hover { border-color: var(--cyan); box-shadow: 0 0 16px rgba(0, 212, 255, 0.08); }
.cat--offensive .skill-cat-header { color: var(--cyan); }
.cat--offensive .stag { color: var(--cyan); background: var(--cyan-dim); border-color: var(--cyan-border); }

.cat--infra { border-left: 3px solid var(--violet); }
.cat--infra:hover { border-color: rgba(167, 139, 250, 0.4); box-shadow: 0 0 16px var(--violet-dim); }
.cat--infra .skill-cat-header { color: var(--violet); }
.cat--infra .stag { color: var(--violet); background: var(--violet-dim); border-color: rgba(167, 139, 250, 0.25); }

.cat--network { border-left: 3px solid #60a5fa; }
.cat--network:hover { border-color: rgba(96, 165, 250, 0.4); box-shadow: 0 0 16px rgba(96, 165, 250, 0.08); }
.cat--network .skill-cat-header { color: #60a5fa; }
.cat--network .stag { color: #60a5fa; background: rgba(96, 165, 250, 0.1); border-color: rgba(96, 165, 250, 0.25); }

.cat--dev { border-left: 3px solid var(--copper); }
.cat--dev:hover { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 0 16px rgba(245, 158, 11, 0.08); }
.cat--dev .skill-cat-header { color: var(--copper); }
.cat--dev .stag { color: var(--copper); background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.25); }

.cat--gov { border-left: 3px solid #64748b; }
.cat--gov:hover { border-color: rgba(100, 116, 139, 0.4); }
.cat--gov .skill-cat-header { color: #94a3b8; }
.cat--gov .stag { color: #94a3b8; background: rgba(100, 116, 139, 0.1); border-color: rgba(100, 116, 139, 0.25); }

.cat--soft { border-left: 3px solid #fb923c; }
.cat--soft:hover { border-color: rgba(251, 146, 60, 0.4); box-shadow: 0 0 16px rgba(251, 146, 60, 0.06); }
.cat--soft .skill-cat-header { color: #fb923c; }
.cat--soft .stag { color: #fb923c; background: rgba(251, 146, 60, 0.1); border-color: rgba(251, 146, 60, 0.25); }

.skill-cat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.skill-cat-ctx {
  font-size: var(--fs-8);
  color: var(--text-3);
  font-style: italic;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stag {
  font-family: var(--font-mono);
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  padding: 3px 10px;
  border: 1px solid;
  border-radius: 20px;
  letter-spacing: 0.3px;
  transition: var(--t-fast);
}

/* Stag "technique" (variante plus subtile) */
.stag--tech {
  opacity: 0.75;
  font-style: italic;
}


/*-----------------------------------*\
  #PROJETS
\*-----------------------------------*/

.filter-list { display: none; }

.filter-select-box {
  position: relative;
  margin-bottom: 22px;
}

.filter-select {
  background: var(--bg-card-alt);
  color: var(--text-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-6);
  font-family: var(--font-mono);
  transition: border-color var(--t-base);
}

.filter-select:hover, .filter-select:focus { border-color: var(--cyan-border); }
.filter-select.active .select-icon { transform: rotate(0.5turn); }

.select-list {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  position: absolute;
  top: calc(100% + 5px);
  width: 100%;
  padding: 6px;
  border-radius: var(--r-md);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease;
}

.filter-select.active + .select-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.select-item button {
  width: 100%;
  padding: 8px 12px;
  font-size: var(--fs-6);
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}

.select-item button:hover { background: var(--bg-card-alt); color: var(--text-1); }

/* Project grid */
.project-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.project-item { display: none; }
.project-item.active {
  display: block;
  animation: scaleUp 0.2s ease forwards;
}

@keyframes scaleUp {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* Card bouton projet */
.project-card-btn {
  width: 100%;
  text-align: left;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  cursor: pointer;
}

.project-card-btn:hover {
  border-color: var(--cyan-border);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

/* Visual CSS des projets */
.project-img {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.project-item-icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
  font-size: 18px;
  padding: 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--cyan-border);
  opacity: 0;
  z-index: 2;
  transition: var(--t-base);
}

.project-card-btn:hover .project-item-icon-box {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* CSS project visuals */
.proj-visual {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Scanline effet sur les visuels */
.pv-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.pv-icon {
  position: relative;
  z-index: 2;
  font-size: 32px;
  opacity: 0.6;
  transition: opacity var(--t-base);
}

.project-card-btn:hover .pv-icon { opacity: 1; }

.pv-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: var(--fs-9);
  font-weight: var(--fw-600);
  letter-spacing: 1.5px;
  opacity: 0.5;
}

/* Couleurs spécifiques des visuels */
.pv--infra {
  background: linear-gradient(135deg, #0d1117 0%, #0f1a2a 100%);
  color: #60a5fa;
}

.pv--infra .pv-label { color: #60a5fa; }

.pv--network {
  background: linear-gradient(135deg, #0d1117 0%, #0d2020 100%);
  color: var(--cyan);
}

.pv--network .pv-label { color: var(--cyan); }

.pv--arch {
  background: linear-gradient(135deg, #0d1117 0%, #1a0d26 100%);
  color: var(--violet);
}

.pv--arch .pv-label { color: var(--violet); }

.pv--dev {
  background:
    linear-gradient(135deg, rgba(0, 12, 6, 0.72) 0%, rgba(0, 20, 10, 0.68) 100%),
    url('../images/interface.png') center / cover no-repeat;
  color: #00ff88;
}

.pv--dev .pv-label { color: #00ff88; }

.pmodal-gh-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: var(--fs-7);
  color: var(--text-2);
  text-decoration: none;
  transition: border-color var(--t-base), color var(--t-base), box-shadow var(--t-base);
}

.pmodal-gh-link:hover {
  border-color: var(--cyan-border);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

/* Texte sous les cards */
.project-title,
.project-category,
.project-desc {
  padding-left: 14px;
  padding-right: 14px;
}

.project-title {
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  color: var(--text-1);
  padding-top: 12px;
  margin-bottom: 3px;
}

.project-category {
  font-size: var(--fs-8);
  color: var(--cyan);
  font-family: var(--font-mono);
  margin-bottom: 5px;
}

.project-desc {
  font-size: var(--fs-8);
  color: var(--text-2);
  font-family: var(--font-mono);
  padding-bottom: 14px;
  line-height: 1.4;
}


/*-----------------------------------*\
  #PROJECT MODAL
\*-----------------------------------*/

.pmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease;
}

.pmodal-overlay[hidden] { display: none; }

.pmodal-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: var(--r-xl);
  padding: 28px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.pmodal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 15px;
  transition: var(--t-fast);
}

.pmodal-close:hover { color: var(--text-1); background: var(--cyan-dim); border-color: var(--cyan-border); }

.pmodal-title {
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  color: var(--text-1);
  margin-bottom: 4px;
  padding-right: 40px;
}

.pmodal-cat {
  font-family: var(--font-mono);
  font-size: var(--fs-9);
  color: var(--cyan);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.pmodal-summary {
  font-size: var(--fs-6);
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pmodal-section-title {
  font-family: var(--font-mono);
  font-size: var(--fs-8);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.pmodal-tech-list {
  list-style: none;
  margin-bottom: 18px;
}

.pmodal-tech-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-7);
  color: var(--text-2);
  line-height: 1.5;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.pmodal-tech-list li:last-child { border-bottom: none; }

.pmodal-tech-list i {
  color: var(--cyan);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pmodal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}


/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact-cta { margin-bottom: 32px; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-9);
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}

.cta-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.cta-headline {
  font-size: var(--fs-2);
  font-weight: var(--fw-600);
  color: var(--text-1);
  line-height: 1.3;
  margin-bottom: 12px;
}

.cta-headline strong { color: var(--cyan); }

.cta-sub {
  font-size: var(--fs-6);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 22px;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Formulaire */
.contact-form { margin-bottom: 10px; }
.form-title { margin-bottom: 18px; font-size: var(--fs-3); }

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-input {
  color: var(--text-1);
  font-size: var(--fs-6);
  padding: 12px 16px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.form-input::placeholder { color: var(--text-3); font-weight: var(--fw-300); }
.form-input:focus { border-color: var(--cyan-border); box-shadow: 0 0 0 3px var(--cyan-dim); }
.form-input:focus:invalid { border-color: rgba(239, 68, 68, 0.5); }

textarea.form-input {
  min-height: 110px;
  max-height: 240px;
  resize: vertical;
  margin-bottom: 16px;
}

.form-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--cyan);
  color: var(--bg-body);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  border-radius: var(--r-md);
  transition: var(--t-base);
  cursor: pointer;
  border: none;
}

.form-btn:hover:not(:disabled) { background: #33ddff; box-shadow: 0 0 20px var(--cyan-glow); }

.form-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.form-btn.loading {
  pointer-events: none;
  opacity: 0.75;
}

/* Groupes de champs avec message d'erreur */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-error {
  font-size: var(--fs-9);
  color: #f87171;
  font-family: var(--font-mono);
  min-height: 14px;
  display: block;
  padding-left: 2px;
}

.form-input.invalid {
  border-color: rgba(248, 113, 113, 0.6);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}

/* Message de succès */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
  animation: fadeIn 0.4s ease;
}

.form-success[hidden] { display: none; }

.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--cyan-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--cyan);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes successPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.success-title {
  font-size: var(--fs-2);
  font-weight: var(--fw-600);
  color: var(--cyan);
}

.success-text {
  font-size: var(--fs-6);
  color: var(--text-2);
}


/*-----------------------------------*\
  #TERMINAL EASTER EGG
\*-----------------------------------*/

.terminal-widget {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 30;
}

.terminal-fab {
  width: 46px;
  height: 46px;
  background: var(--bg-elevated);
  border: 1px solid var(--cyan-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  cursor: pointer;
  transition: var(--t-base);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.2);
  letter-spacing: -1px;
}

.terminal-fab:hover {
  background: var(--cyan-dim);
  box-shadow: 0 0 24px var(--cyan-glow);
  transform: scale(1.08);
}

.terminal-win {
  position: absolute;
  bottom: 56px;
  right: 0;
  width: 340px;
  background: #0d0d14;
  border: 1px solid var(--cyan-border);
  border-radius: var(--r-md);
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.15);
  overflow: hidden;
  animation: slideUp 0.2s ease;
}

.terminal-win[hidden] { display: none; }

.terminal-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tdot--r { background: #ff5f57; }
.tdot--y { background: #febc2e; }
.tdot--g { background: #28c840; }

.t-title {
  flex: 1;
  font-family: var(--font-mono);
  font-size: var(--fs-9);
  color: var(--text-3);
  text-align: center;
  margin-left: -12px;
}

.t-close-btn {
  font-size: 12px;
  color: var(--text-3);
  transition: var(--t-fast);
}
.t-close-btn:hover { color: var(--text-1); }

.terminal-output {
  padding: 12px 14px;
  min-height: 120px;
  max-height: 220px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: var(--fs-8);
  line-height: 1.7;
}

.t-line-in  { color: var(--text-2); }
.t-line-out { color: var(--cyan); }
.t-line-err { color: #f87171; }
.t-line-sys { color: var(--text-3); font-style: italic; }

.terminal-input-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-top: 1px solid var(--border);
}

.t-prompt {
  font-family: var(--font-mono);
  font-size: var(--fs-8);
  color: var(--cyan);
  flex-shrink: 0;
}

.t-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: var(--fs-8);
  color: var(--text-1);
  caret-color: var(--cyan);
}

.t-input::placeholder { color: var(--text-3); }


/*-----------------------------------*\
  #RESPONSIVE — 450px+
\*-----------------------------------*/

@media (min-width: 450px) {

  .avail-banner { font-size: var(--fs-8); }

}


/*-----------------------------------*\
  #RESPONSIVE — 580px+
\*-----------------------------------*/

@media (min-width: 580px) {

  :root {
    --fs-1: 34px;
    --fs-2: 24px;
    --fs-3: 20px;
    --fs-4: 18px;
    --fs-5: 16px;
    --fs-6: 15px;
    --fs-7: 14px;
    --fs-8: 13px;
  }

  .sidebar, article {
    width: 520px;
    margin-inline: auto;
    padding: 28px;
  }

  .article-title { padding-bottom: 12px; }
  .article-title::after { width: 44px; height: 4px; }

  .icon-box { width: 44px; height: 44px; font-size: 18px; border-radius: var(--r-md); }

  main { margin-top: 0; margin-bottom: 80px; }

  .sidebar { max-height: 182px; margin-bottom: 24px; }
  .sidebar.active { max-height: 620px; }
  .sidebar-info { gap: 22px; }
  .avatar-box img { width: 110px; }
  .info-content .name { font-size: var(--fs-3); }

  .info_more-btn {
    top: -28px;
    right: -28px;
    padding: 10px 14px;
  }
  .info_more-btn span { display: inline; font-size: var(--fs-8); }
  .info_more-btn i    { display: none; }

  .separator { margin: 24px 0; }
  .contacts-list { gap: 18px; }

  .navbar { border-radius: 14px 14px 0 0; }
  .navbar-list { gap: 8px; }

  /* Hero */
  .hero-term-body { padding: 20px 22px; }
  .hero-subtitle  { font-size: var(--fs-6); }
  .hero-actions   { gap: 12px; }

  /* Service */
  .service-list { grid-template-columns: 1fr; }

  /* Softskills */
  .softskills-grid { grid-template-columns: 1fr 1fr; }

  /* Skills */
  .skills-grid { grid-template-columns: 1fr; }

  /* Projects */
  .project-list { grid-template-columns: 1fr 1fr; }
  .project-img  { height: 140px; }

  /* Contact */
  .input-wrapper { grid-template-columns: 1fr 1fr; }
  .form-btn { width: max-content; margin-left: auto; }

}


/*-----------------------------------*\
  #RESPONSIVE — 768px+
\*-----------------------------------*/

@media (min-width: 768px) {

  .sidebar, article { width: 700px; }

  .contacts-list { grid-template-columns: 1fr 1fr; gap: 20px 14px; }

  .navbar-link { font-size: var(--fs-7); }

  /* Filter list visible */
  .filter-select-box { display: none; }
  .filter-list {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 4px;
    margin-bottom: 24px;
  }

  .filter-item button {
    color: var(--text-2);
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    transition: color var(--t-fast);
  }
  .filter-item button:hover  { color: var(--text-1); }
  .filter-item button.active { color: var(--cyan); }

  /* Projects 3 col */
  .project-list { grid-template-columns: 1fr 1fr; }

  /* Skills 2 col */
  .skills-grid { grid-template-columns: 1fr 1fr; }

  /* Service 2 col */
  .service-list { grid-template-columns: 1fr 1fr; }

}


/*-----------------------------------*\
  #RESPONSIVE — 1024px+
\*-----------------------------------*/

@media (min-width: 1024px) {

  .sidebar, article { width: 950px; }

  main { margin-bottom: 40px; }

  .main-content {
    position: relative;
    width: max-content;
    margin: auto;
  }

  .navbar {
    position: absolute;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: max-content;
    border-radius: 0 var(--r-xl);
    border: 1px solid var(--border);
    border-top: none;
    border-right: none;
    padding: 0 8px;
    background: rgba(18, 18, 26, 0.9);
    backdrop-filter: blur(12px);
  }

  .navbar-list { gap: 24px; padding: 0 16px; }
  .navbar-link { font-weight: var(--fw-500); padding: 18px 4px; }

  .service-list { grid-template-columns: 1fr 1fr; }

  .project-list { grid-template-columns: repeat(3, 1fr); }

  .skills-grid { grid-template-columns: 1fr 1fr; }

}


/*-----------------------------------*\
  #RESPONSIVE — 1250px+
\*-----------------------------------*/

@media (min-width: 1250px) {

  body::-webkit-scrollbar       { width: 12px; }
  body::-webkit-scrollbar-track { background: var(--bg-body); }
  body::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border: 3px solid var(--bg-body);
    border-radius: 12px;
  }

  .sidebar, article { width: auto; }
  article { min-height: 100%; }

  main {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 22px;
    padding-top: 0;
  }

  .main-content {
    min-width: 0;
    flex: 1;
    margin: 0;
  }

  .sidebar {
    position: sticky;
    top: 60px;
    max-height: max-content;
    height: 100%;
    margin-bottom: 0;
    padding-top: 50px;
    z-index: 1;
    flex-shrink: 0;
    width: 260px;
  }

  .sidebar-info { flex-direction: column; text-align: center; }
  .avatar-box img { width: 130px; }
  .info-content .name { white-space: nowrap; }
  .info-content .title { margin: 0 auto; }
  .info_more-btn { display: none; }

  .sidebar-info_more { opacity: 1; visibility: visible; }

  .contacts-list { grid-template-columns: 1fr; gap: 14px; }

  .contact-link { font-size: var(--fs-8) !important; }
  .info_more-btn { display: none; }

  .social-list { justify-content: center; }

  .navbar {
    position: absolute;
    top: 0;
    right: 0;
  }

  /* Terminal widget un peu plus haut sur grand écran */
  .terminal-widget { bottom: 32px; }

}


/*-----------------------------------*\
  #MICRO-ANIMATIONS ENTRÉE
\*-----------------------------------*/

/* Apparitions décalées des cartes service */
.service-item:nth-child(1) { animation-delay: 0.05s; }
.service-item:nth-child(2) { animation-delay: 0.10s; }
.service-item:nth-child(3) { animation-delay: 0.15s; }
.service-item:nth-child(4) { animation-delay: 0.20s; }

.ss-card:nth-child(1) { animation-delay: 0.05s; }
.ss-card:nth-child(2) { animation-delay: 0.10s; }
.ss-card:nth-child(3) { animation-delay: 0.15s; }
.ss-card:nth-child(4) { animation-delay: 0.20s; }

.skill-category:nth-child(odd)  { animation-delay: 0.05s; }
.skill-category:nth-child(even) { animation-delay: 0.10s; }
