@font-face {
  font-family: "poppins regular";
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "poppins italic";
  src: url(../fonts/Poppins/Poppins-Italic.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "poppins semi-bold";
  src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "poppins bold";
  src: url(../fonts/Poppins/Poppins-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "poppins extra-light";
  src: url(../fonts/Poppins/Poppins-ExtraLight.ttf);
  font-weight: 200;
}
@font-face {
  font-family: "gentium regular";
  src: url(../fonts/GentiumBookPlus-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "gentium bold";
  src: url(../fonts/GentiumBookPlus-Bold.ttf);
  font-weight: 700;
}
* {
  box-sizing: border-box;
}

body {
  font-family: "poppins regular";
  background-color: #020202;
  color: #9DA2AB;
  display: flex;
  flex-direction: column;
}

section {
  margin-bottom: 3rem;
}

h1 {
  font-family: "gentium bold";
  font-size: 2rem;
  color: #A188A6;
}

h2 {
  font-family: "gentium regular";
  color: #A188A6;
  font-size: 1.5rem;
}

h3 {
  font-family: "gentium bold";
  font-size: 1.3rem;
  color: #A188A6;
  text-align: center;
}

p {
  font-size: 0.9rem;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: circle 2px;
}

ul li::marker {
  color: #0D324D;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: 80%;
  margin: auto;
  padding-top: 4rem;
}

html {
  scroll-behavior: smooth;
}

footer {
  margin-left: 50%;
}

.footer__wrapper {
  padding: 0;
}
.footer__wrapper p {
  font-family: "poppins italic";
}
.footer__wrapper .footer__name {
  display: flex;
  gap: 4rem;
}
.footer__wrapper .footer__name > div {
  flex: 1 1;
}
.footer__wrapper .line {
  width: 70%;
  height: 1px;
  display: block;
  margin: 4rem auto;
  border-radius: 2px;
  background: linear-gradient(90deg, #7F5A83, #A188A6, #9DA2AB, #7F5A83);
  background-size: 300% 100%;
  animation: gradientGlow 4s ease infinite;
  box-shadow: 0 0 10px #7F5A83, 0 0 20px #A188A6;
}
@keyframes gradientGlow {
  0% {
    background-position: 0% 50%;
    box-shadow: 0 0 10px #7F5A83, 0 0 20px #A188A6;
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 0 20px #A188A6, 0 0 40px #9DA2AB;
  }
  100% {
    background-position: 0% 50%;
    box-shadow: 0 0 10px #7F5A83, 0 0 20px #A188A6;
  }
}

.input {
  margin-bottom: 1rem;
}

input:focus, textarea:focus {
  background-color: #7F5A83;
}

input, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  border: none;
  background-color: #0D324D;
  font-size: 1rem;
  color: #9DA2AB;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
}

label {
  display: block;
  margin-bottom: -1rem;
  color: #9DA2AB;
}

.input input[type=checkbox] {
  width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.input label[for=consentement] {
  display: inline;
  font-family: "poppins extra-light";
  font-size: 0.9rem;
}

.footer__credit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  font-family: "poppins extra-light";
  color: #9DA2AB;
}
.footer__credit .tardis-scroll {
  width: 10%;
  margin-left: 6rem;
  animation: spinTardis 2s linear infinite;
}
.footer__credit .tardis-scroll img:hover {
  transform: scale(1.2);
}

@keyframes spinTardis {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.separator {
  width: 1px;
  height: 2rem;
  background-color: #9DA2AB;
  display: inline-block;
}

@media screen and (max-width: 1000px) {
  footer {
    margin: 0;
  }
  footer .footer__wrapper .footer__name {
    flex-direction: column;
    gap: 0;
  }
  footer .tardis-scroll {
    width: 100%;
  }
}
header {
  position: fixed;
  width: 35%;
}
header .header__presentation .header__titles {
  display: flex;
  align-items: center;
  width: 100%;
}
header .header__presentation .header__titles p {
  margin-right: 4rem;
  width: 50%;
  font-family: "poppins italic";
}
header .header__presentation .header__titles h1 {
  margin-bottom: 0;
}
header .header__presentation .header__titles h2 {
  margin-top: 0;
}
header .header__presentation .header__titles img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-right: 2rem;
  object-fit: cover;
}
header .header__presentation .header__navbar {
  margin-top: 5rem;
  margin-left: 3rem;
}
header .header__presentation .header__navbar a {
  color: #9DA2AB;
}
header .header__presentation .header__navbar li {
  list-style: none;
  margin-bottom: 0.5rem;
}
header .header__presentation .header__navbar li a::before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 3px;
  background: #9DA2AB;
  margin-right: 4rem;
  transition: width 0.3s ease, background 0.3s ease;
}
header .header__presentation .header__navbar li a:hover::before {
  width: 150px;
  background: linear-gradient(to right, #9DA2AB, #0D324D);
}
header .header__presentation .header__navbar li a.active::before {
  width: 150px;
  background: linear-gradient(to right, #9DA2AB, #0D324D);
}
header .header__reseaux {
  margin-left: -1rem;
  text-align: center;
  margin-top: 4rem;
}
header .header__reseaux .reseaux {
  font-size: 2rem;
  color: #9DA2AB;
  margin-right: 2rem;
}
header .header__reseaux .reseaux:hover {
  background: linear-gradient(to right, #9DA2AB, #0D324D);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.2);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 30px;
  height: 3px;
  background-color: #9DA2AB;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
  header {
    position: relative;
    width: 100%;
  }
  header .header__titles {
    display: flex;
    flex-direction: column;
  }
  header .header__titles .img-burger {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  header .header__titles .img-burger .burger {
    display: flex;
  }
  header .header__titles .header__text {
    text-align: center;
  }
  header .header__titles .header__text p {
    width: 100%;
  }
  .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    width: 100%;
  }
  .dropdown ul {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .dropdown.open {
    max-height: 500px;
  }
}
.submit-btn {
  text-align: center;
  margin-top: 2rem;
}

.submit-btn button {
  background-color: #0D324D;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  color: #7F5A83;
  font-family: "poppins bold";
  cursor: pointer;
}
.submit-btn button:hover {
  color: #9DA2AB;
  box-shadow: 0 0 10px #7F5A83, 0 0 20px #7F5A83, 0 0 40px #7F5A83;
  transform: translateY(-2px) scale(1.02);
}

.carousel__btn {
  margin: 1rem;
  text-align: center;
}
.carousel__btn button {
  background-color: #0D324D;
  border: none;
  color: #7F5A83;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
}
.carousel__btn button:hover {
  transform: scale(1.1);
}
.carousel__btn button:active {
  transform: scale(0.95);
}

main {
  margin-left: 50%;
}

.description__content a {
  font-family: "poppins bold";
  color: #A188A6;
}
.description__content a:hover {
  color: #7F5A83;
}
.description__content .tft {
  font-family: "poppins bold";
  color: #A188A6;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: url("../../assets/img/tft.png") 20 20, auto;
}
.description__content .tft:hover {
  background: linear-gradient(to right, #005A82, #C89B3C);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.1);
}

.projets__carousel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid #7F5A83;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #7F5A83;
  transition: all 0.3s ease;
}
.carousel-btn:hover {
  background: #7F5A83;
  color: #020202;
  transform: scale(1.1);
}
.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-track {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(13, 50, 77, 0.3);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border: 2px solid #0D324D;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(127, 90, 131, 0.05), rgba(13, 50, 77, 0.1));
  transition: all 0.3s ease;
  height: 100%;
}
.card:hover {
  border-color: #7F5A83;
  box-shadow: inset 0 0 0 1px #7F5A83, 0 8px 16px rgba(127, 90, 131, 0.15);
}
.card img {
  width: 45%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.card .card-content h4 {
  font-family: "poppins bold";
  font-size: 1.4rem;
  color: #A188A6;
  margin: 0 0 0.5rem 0;
}
.card .card-content p {
  color: #9DA2AB;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
.card .card-content .card-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.card .card-content .tag {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  background: #0D324D;
  color: #7F5A83;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
  .projets__carousel {
    flex-direction: column;
  }
  .carousel-btn {
    order: 2;
    align-self: center;
    margin-top: 1rem;
  }
  .carousel-track {
    order: 1;
    width: 100%;
  }
  .card {
    flex-direction: column;
  }
  .card img {
    width: 100%;
    height: 250px;
  }
}
@media screen and (max-width: 768px) {
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .card {
    padding: 1.5rem;
    gap: 1rem;
  }
  .card h4 {
    font-size: 1.2rem;
  }
  .card img {
    height: 200px;
  }
}
.experience__wrapper h3 {
  margin-bottom: 6rem;
}
.experience__wrapper .experience__p {
  font-family: "poppins semi-bold";
}
.experience__wrapper .circle__img {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.experience__wrapper .experience__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 200px);
  row-gap: 100px;
  justify-items: center;
}
.experience__wrapper .experience__grid .backend, .experience__wrapper .experience__grid .frontend {
  display: contents;
}
.experience__wrapper .experience__grid .backend .backend__text {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}
.experience__wrapper .experience__grid .backend .circle__img {
  grid-column: 2;
  grid-row: 1;
}
.experience__wrapper .experience__grid .backend .circle__img img {
  border-radius: 50%;
}
.experience__wrapper .experience__grid .backend .line-verticale {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 3px;
  height: 300px;
  background-color: #0D324D;
}
.experience__wrapper .experience__grid .backend .line-verticale2 {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  width: 3px;
  height: 300px;
  background-color: #0D324D;
}
.experience__wrapper .experience__grid .frontend .frontend__text {
  grid-column: 3;
  grid-row: 2;
}
.experience__wrapper .experience__grid .frontend .circle__img {
  grid-column: 2;
  grid-row: 2;
  border: 15px solid black;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.experience__wrapper .experience__grid .formation {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: #0D324D 2px solid;
  border-radius: 50%;
  padding: 2rem;
  justify-content: center;
  aspect-ratio: 1;
  min-width: 250px;
  min-height: 250px;
}
.experience__wrapper .experience__grid .formation p {
  margin: 0;
}
.experience__wrapper .experience__grid .formation img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, rgba(0, 51, 102, 0.1) 40%, rgba(0, 0, 0, 0.05) 70%, transparent 90%);
  filter: blur(45px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.jinx-mode {
  background: url("../../assets/img/jinx-arcane.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ff00ff;
  transition: all 0.5s ease-in-out;
}
.jinx-mode h1, .jinx-mode h2, .jinx-mode h3 {
  color: cyan;
}
.jinx-mode a {
  background: linear-gradient(270deg, #ff00ff, cyan);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1000px) {
  main {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .carousel__wrapper {
    width: 100%;
  }
  .card {
    flex-direction: column;
  }
  .carousel__wrapper .card img {
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .experience__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    row-gap: 100px;
  }
  .experience__wrapper .experience__grid .frontend .frontend__text {
    grid-column: 1;
  }
}

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