html {
  scroll-behavior: smooth;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, #2d0a49 5%, #000 30%) no-repeat fixed;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

nav {
  font-family: "Inter", sans-serif;
}

.nav-link {
  font-family: "Inter", sans-serif;
  transition: background-color 0.2s ease, color 0.2s ease;
  outline: none;
}
.nav-link.active {
  background-color: #533cff;
  color: white !important;
}
.nav-link:focus {
  outline: none;
  box-shadow: none;
}
.nav-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
}

.project h3 {
  font-family: "Inter", sans-serif !important;
  font-weight: 200 !important;
}

#next {
  scroll-margin-top: 80px;
}
@media (max-width: 640px), (min-width: 768px) {
  #next {
    scroll-margin-top: 15px;
  }
}

#Competences {
  scroll-margin-top: 80px;
}
@media (max-width: 640px) {
  #Competences {
    scroll-margin-top: 100px;
  }
}

#Projets {
  scroll-margin-top: 30px;
}
@media (max-width: 640px) {
  #Projets {
    scroll-margin-top: 18px;
  }
}

#contact {
  scroll-margin-top: 0px;
}
@media (max-width: 640px) {
  #contact {
    scroll-margin-top: 40px;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.typing-wrapper {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.typing-wrapper .static {
  white-space: nowrap;
}

#typed {
  display: inline-block;
  width: 9ch;
  min-width: 9ch;
  min-height: 1.05em;
  white-space: nowrap;
  overflow: visible;
  position: relative;
  text-align: left;
  vertical-align: baseline;
}

.caret {
  display: none !important;
}

.force-next-line {
  display: none !important;
}

@media (max-width: 320px) {
  #next h1 {
    font-size: 2.2rem !important;
  }
}
.tag-pill {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.16) 0%, rgba(79, 70, 229, 0.14) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tag-pill:hover {
  opacity: 1;
  transform: translateY(-3px);
}
@media (max-width: 640px) {
  .tag-pill {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

.filter-active {
  background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.skill-icons img {
  display: block;
  background: transparent !important;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.skill-icons .flex-col.items-center {
  gap: 0.35rem;
}
.skill-icons .grid {
  row-gap: 1rem;
}
@media (min-width: 640px) {
  .skill-icons .grid {
    row-gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .skill-icons .grid {
    row-gap: 1.5rem;
  }
}

.skills-left h3,
.skills-right h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  text-align: left;
}
@media (max-width: 767px) {
  .skills-left h3,
  .skills-right h3 {
    text-align: center;
  }
}

.project[data-id] {
  transition: background 0.18s;
}
.project.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: box-shadow 0.18s;
}
.project.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  transition: background 0.18s, filter 0.18s;
}
.project .project-title-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.project .project-category-bottom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  pointer-events: none;
}

#projects-container .project.has-bg:hover::before {
  background: rgba(20, 20, 30, 0.32);
  filter: brightness(0.9) saturate(0.9);
}

#projects-en-cours .project.has-bg:hover::before {
  background: rgba(25, 25, 25, 0.32);
  filter: brightness(0.9) saturate(0.9);
}

.skill-item {
  position: relative;
  background: #18181b;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skill-item img {
  width: 4rem;
  height: 4rem;
}
.skill-item::after {
  content: attr(data-text);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 79, 184, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.95);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(0, 12, 32, 0.2);
  transition: opacity 0.25s ease;
  z-index: 2;
}
.skill-item:hover::after, .skill-item:focus::after {
  opacity: 1;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .skill-item {
    height: 4.2rem;
  }
  .skill-item img {
    width: 2.7rem;
    height: 2.7rem;
  }
}
@media (max-width: 767px) {
  .skill-item {
    height: 3.5rem;
  }
  .skill-item img {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.skills-left .skill-item,
.skills-right .skill-item {
  width: 100%;
  max-width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .skills-left .skill-item,
  .skills-right .skill-item {
    max-width: 70px;
    height: 70px;
  }
}
@media (min-width: 1024px) {
  .skills-left .skill-item,
  .skills-right .skill-item {
    max-width: 110px;
    height: 90px;
  }
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .skills-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 0.7rem !important;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cursor {
  position: fixed;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  left: -100px;
  top: 50%;
  mix-blend-mode: difference;
  background-color: white;
  z-index: 10000;
  border: 2px solid white;
  height: 25px;
  width: 25px;
  transition: all 300ms ease-out;
}

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