@charset "UTF-8";
header {
  position: fixed;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 99;
}
header nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .logo {
  width: 150px;
}
header nav .logo #logo {
  width: 150px;
  height: auto;
}
header nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}
header nav ul a {
  text-decoration: none;
  color: #fff;
  padding: 0 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
}
header nav ul li a:hover {
  color: #0ff;
  /* un effet néon au hover pour rester dans le style cyberpunk */
}

@media screen and (max-width: 768px) {
  header nav {
    position: relative;
  }
  header nav .burger-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 110;
  }
  header nav .burger-toggle span {
    height: 3px;
    background: #0ff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
  }
  header nav ul {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: calc(100vh - 60px);
    background: rgba(20, 20, 40, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 20px rgba(0, 255, 255, 0.3);
  }
  header nav ul.open {
    right: 0;
  }
  header nav ul li a {
    color: #0ff;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
  }
  header nav .burger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  header nav .burger-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  header nav .burger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
main {
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
}
main .section {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
}
main #accueil {
  position: relative;
}
main #accueil .background {
  position: absolute;
  top: -2.5vh;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
main #accueil .neonbd {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
main #accueil .neonbg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
main #accueil spline-viewer {
  z-index: 1;
}

/**********************************************************************/
/************************ À Propos ************************************/
#a-propos .about-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #111;
  color: #eee;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: none;
  -o-object-fit: contain;
     object-fit: contain;
}
#a-propos .about-section .about-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
#a-propos .about-section .cadre_flower {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
}
#a-propos .about-section .scroller {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid #00ffff;
  border-bottom: 2px solid #00ffff;
  box-shadow: inset 0 0 10px #00ffff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 15px 0;
  position: absolute;
  top: 10vh;
  left: 0;
  z-index: 2;
}
#a-propos .about-section .scroll-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 30s linear infinite;
  z-index: 2;
}
#a-propos .about-section .scroll-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 80px;
  color: #e2cb41;
  text-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-size: 2rem;
}
#a-propos .about-section .scroll-item i {
  filter: drop-shadow(0 0 5px #00ffff);
  font-size: 3rem;
}
#a-propos .about-section .scroll-item::before, #a-propos .about-section .scroll-item::after {
  content: "";
  position: absolute;
  height: 2px;
  background: #00ffff;
  width: 50%;
  top: 100%;
  transform: translateY(10px);
  opacity: 0.4;
}
#a-propos .about-section .scroll-item::before {
  left: 0;
}
#a-propos .about-section .scroll-item::after {
  right: 0;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
#a-propos .about-section .container-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1440px;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
#a-propos .about-section .container-card .about-card {
  flex: 1 1 30%;
  min-width: 250px;
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #fffffe;
  border-radius: 15px;
  padding: 30px 20px;
  margin: 30px 0;
  box-shadow: 0 0 10px #e2cb41, 0 0 30px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.2);
  color: #00ffff;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#a-propos .about-section .container-card .about-card i {
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px #00ffff);
  color: #56094f;
  animation: pulse-glow 2s infinite;
  font-size: 3rem;
}
#a-propos .about-section .container-card .about-card h3 {
  margin-bottom: 10px;
  text-shadow: 0 0 10px #fffffe;
  color: #e2cb41;
}
#a-propos .about-section .container-card .about-card p {
  color: #ccc;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.2);
}
#a-propos .about-section .container-card .about-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.5333333333), inset 0 0 15px rgba(0, 255, 255, 0.3333333333);
}
@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 10px #fffffe;
    filter: drop-shadow(0 0 8px #e2cb41);
  }
  50% {
    text-shadow: 0 0 20px #fffffe;
    filter: drop-shadow(0 0 12px #e2cb41);
  }
}
#a-propos .about-section .reveal-overlay {
  pointer-events: none;
  display: block;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 300px at var(--x, 50%) var(--y, 50%), transparent 0%, #111 80%);
  transition: background-position 0.1s ease;
  z-index: 3;
}
#a-propos .about-section .reveal-overlay.hidden {
  display: none;
}

/**********************************************************************/
/************************ Portfolio ***********************************/
#portfolio {
  background-color: #121020;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100vh;
  transition: 0.25s;
  position: relative;
}
#portfolio h2 {
  color: #00ffff;
  margin: 0 0 2rem 0;
  text-align: center;
}
#portfolio .cadre_flower {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  height: 100vh;
}
#portfolio .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}
#portfolio .mobile-slider {
  display: none;
}
#portfolio .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 600px;
  max-width: 900px;
  width: calc(100% - 100px);
  height: 400px;
}
@media screen and (max-width: 718px) {
  #portfolio .options {
    min-width: 520px;
  }
  #portfolio .options .option:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 638px) {
  #portfolio .options {
    min-width: 440px;
  }
  #portfolio .options .option:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 558px) {
  #portfolio .options {
    min-width: 360px;
  }
  #portfolio .options .option:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 478px) {
  #portfolio .options {
    min-width: 280px;
  }
  #portfolio .options .option:nth-child(2) {
    display: none;
  }
}
#portfolio .options .option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 10px;
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: auto 120%;
  background-position: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
#portfolio .options .option:nth-child(1) {
  --defaultBackground: #ED5565;
}
#portfolio .options .option:nth-child(2) {
  --defaultBackground: #FC6E51;
}
#portfolio .options .option:nth-child(3) {
  --defaultBackground: #FFCE54;
}
#portfolio .options .option:nth-child(4) {
  --defaultBackground: #2ECC71;
}
#portfolio .options .option:nth-child(5) {
  --defaultBackground: #5D9CEC;
}
#portfolio .options .option:nth-child(6) {
  --defaultBackground: #AC92EC;
}
#portfolio .options .option.active {
  flex-grow: 10000;
  transform: scale(1);
  max-width: 600px;
  margin: 0px;
  border-radius: 40px;
  background-size: auto 100%;
}
#portfolio .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}
#portfolio .options .option.active .label {
  bottom: 20px;
  left: 20px;
}
#portfolio .options .option.active .label .info {
  opacity: 1;
}
#portfolio .options .option.active .label .info h3 {
  font-size: 1.25rem;
}
#portfolio .options .option.active .label .info > div {
  left: 0px;
  opacity: 1;
}
#portfolio .options .option:not(.active) {
  flex-grow: 1;
  border-radius: 30px;
}
#portfolio .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}
#portfolio .options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
}
#portfolio .options .option:not(.active) .label .info {
  opacity: 0;
}
#portfolio .options .option:not(.active) .label .info > div {
  left: 20px;
  opacity: 0;
}
#portfolio .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
#portfolio .options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
#portfolio .options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}
#portfolio .options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: normal;
  word-break: break-word;
  max-width: 90%;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease;
}
#portfolio .options .option .label .info > div {
  position: relative;
  transition: opacity 0.3s ease, left 0.3s ease;
  opacity: 0;
  left: 20px;
}
#portfolio .options .option .label .info .main {
  font-weight: bold;
  line-height: 1.2;
}
#portfolio .options .option .label .info .sub {
  transition-delay: 0.1s;
  line-height: 1.2;
}

/**********************************************************************/
/************************** Contact ***********************************/
.futur-contact {
  background: radial-gradient(ellipse at center, #0f0f2d 0%, #000000 100%);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  position: relative;
}

.flowerbg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
}

.futur-glass {
  background: rgba(15, 15, 45, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 1440px;
  text-align: center;
}

.futur-glass h2 {
  margin-bottom: 40px;
  text-shadow: 0 0 10px cyan;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-neon {
  padding: 15px 30px;
  background: transparent;
  border: 2px solid cyan;
  color: cyan;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 0 10px cyan, inset 0 0 10px cyan;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  background: cyan;
  color: #0f0f2d;
  box-shadow: 0 0 20px cyan, 0 0 40px cyan;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: left;
}

.contact-item i {
  color: cyan;
  min-width: 25px;
}

.contact-item a {
  color: #00ffff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/*********************************************************/
/******************** RESPONSIVE *************************/
@media screen and (max-width: 1440px) {
  #a-propos .about-content h2 {
    margin-top: 5rem;
  }
  #portfolio .cadre_flower {
    width: 125%;
    height: 125%;
    left: -10%;
    top: -10%;
  }
}
@media screen and (max-width: 1024px) {
  #portfolio {
    padding: 2rem 1rem;
  }
  #portfolio .options {
    max-width: 600px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  #a-propos .about-section .about-content {
    padding: 2rem 1rem;
  }
  #a-propos .about-section .about-content .container-card {
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 15px;
  }
  #a-propos .about-section .about-content .container-card .about-card {
    padding: 15px 10px;
    min-width: 200px;
    max-width: 250px;
  }
  #a-propos .about-section .reveal-overlay {
      display: none;
  }
  #a-propos .about-section .cadre_flower {
      height: 100vh;
  }
  #a-propos .about-section .toogle {
      display: none;
  }
  #portfolio .options .option .label .info h3 {
    font-size: 0.9rem !important;
  }
  #contact .flowerbg {
      height: 100vh;
  }
  
}
@media screen and (max-width: 425px) {
  #a-propos .about-section .about-content {
    padding: 2rem 1rem;
  }
  #a-propos .about-section .about-content h2 {
    margin-bottom: 2.5vh;
    margin-top: 5vh;
  }
  #a-propos .about-section .about-content .container-card {
    flex-wrap: wrap;
    gap: 10px;
  }
  #a-propos .about-section .about-content .container-card .about-card {
    padding: 15px 10px;
    min-width: 200px;
    max-width: 90%;
    margin: 0;
  }
  #a-propos .about-section .about-content .container-card .about-card i {
    font-size: 1.5rem;
  }
  #a-propos .about-section .scroller {
    display: none;
  }
  #a-propos .about-section .reveal-overlay {
    display: none;
  }
  #portfolio .cadre_flower {
    left: -50%;
    width: 200%;
  }
  #portfolio .options {
    display: none;
  }
  #portfolio .mobile-slider {
    display: block;
    width: 100%;
    height: auto;
  }
  #portfolio .mobile-slider .slider-neon {
    position: relative;
    max-width: 100%;
    margin: 0px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 30px #0ff, 0 0 60px #0ff;
    background: #000;
    font-family: "Orbitron", sans-serif;
    color: #0ff;
  }
  #portfolio .mobile-slider .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
  }
  #portfolio .mobile-slider .slide {
    min-width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  #portfolio .mobile-slider .overlay-neon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-left: none;
    text-shadow: 0 0 10px #0ff;
  }
  #portfolio .mobile-slider .overlay-neon h3 {
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  #portfolio .mobile-slider .overlay-neon p {
    margin-bottom: 15px;
    max-width: 90%;
  }
  #portfolio .mobile-slider .btn-view {
    display: inline-block;
    color: #FFCE54;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #FFCE54;
    padding: 8px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-shadow: none;
  }
  #portfolio .mobile-slider .btn-view i {
    margin-right: 6px;
  }
  #portfolio .mobile-slider .btn-view:hover {
    background-color: #0ff;
    color: #000;
    box-shadow: 0 0 20px #0ff;
  }
  #portfolio .mobile-slider .prev,
  #portfolio .mobile-slider .next {
    position: absolute;
    top: 70%;
    color: #FFCE54;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 50%;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: box-shadow 0.3s ease;
  }
  #portfolio .mobile-slider .prev:hover,
  #portfolio .mobile-slider .next:hover {
    box-shadow: 0 0 15px #FFCE54;
  }
  #portfolio .mobile-slider .prev {
    left: 10px;
  }
  #portfolio .mobile-slider .next {
    right: 10px;
  }
  #contact .futur-glass .contact-grid {
    grid-template-columns: 1fr;
  }
}
.toogle {
  position: absolute;
  bottom: 12.5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.toggle-cont {
  --primary: #54a8fc;
  --light: #d9d9d9;
  --dark: #121212;
  --gray: #414344;
  position: relative;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  border-radius: 9999px;
}

.toggle-cont .toggle-input {
  display: none;
}

.toggle-cont .toggle-label {
  --gap: 5px;
  --width: 50px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 0.5rem;
  width: calc((var(--width) + var(--gap)) * 2);
  height: 100%;
  background-color: var(--dark);
  border: 1px solid #777777;
  border-bottom: 0;
  border-radius: 9999px;
  box-sizing: content-box;
  transition: all 0.3s ease-in-out;
}

.toggle-label::before {
  content: "";
  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 1.5rem);
  height: calc(100% + 1.5rem);
  background-color: var(--gray);
  border: 1px solid #777777;
  border-bottom: 0;
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
}

.toggle-label::after {
  content: "";
  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% -100%, rgb(58, 155, 252) 0%, rgb(12, 12, 12) 80%);
  border-radius: 9999px;
}

.toggle-cont .toggle-label .cont-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: var(--width);
  height: 50px;
  background-image: radial-gradient(circle at 50% 0%, #666666 0%, var(--gray) 100%);
  border: 1px solid #aaaaaa;
  border-bottom: 0;
  border-radius: 9999px;
  box-shadow: inset 0 -0.15rem 0.15rem var(--primary), inset 0 0 0.5rem 0.75rem var(--second);
  transition: transform 0.3s ease-in-out;
}

.cont-icon {
  overflow: clip;
  position: relative;
}

.cont-icon .sparkle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(var(--width) * 1px);
  aspect-ratio: 1;
  background-color: var(--light);
  border-radius: 50%;
  transform-origin: 50% 50%;
  rotate: calc(1deg * var(--deg));
  transform: translate(-50%, -50%);
  animation: sparkle calc(100s / var(--duration)) linear calc(0s / var(--duration)) infinite;
}

@keyframes sparkle {
  to {
    width: calc(var(--width) * 0.5px);
    transform: translate(2000%, -50%);
  }
}
.cont-icon .icon {
  width: 1.1rem;
  fill: var(--light);
}

.toggle-cont:has(.toggle-input:checked) {
  --checked: true;
}

@container style(--checked: true) {
  .toggle-cont .toggle-label {
    background-color: rgba(65, 67, 68, 0);
    border: 1px solid #3d6970;
    border-bottom: 0;
  }
  .toggle-cont .toggle-label::before {
    box-shadow: 0 1rem 2.5rem -2rem #0080ff;
  }
  .toggle-cont .toggle-label .cont-icon {
    overflow: visible;
    background-image: radial-gradient(circle at 50% 0%, #045ab1 0%, var(--primary) 100%);
    border: 1px solid var(--primary);
    border-bottom: 0;
    transform: translateX(calc(var(--gap) * 2 + 100%)) rotate(-225deg);
  }
  .toggle-cont .toggle-label .cont-icon .sparkle {
    z-index: -10;
    width: calc(var(--width) * 1.5px);
    background-color: #acacac;
    animation: sparkle calc(100s / var(--duration)) linear calc(10s / var(--duration)) infinite;
  }
  @keyframes sparkle {
    to {
      width: calc(var(--width) * 1px);
      transform: translate(5000%, -50%);
    }
  }
}
@media screen and (max-width: 425px) {
  .toogle {
    display: none;
  }
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 99;
  font-family: "Orbitron", sans-serif;
}

footer nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #fff;
  font-weight: 300;
  font-size: 0.8rem;
}

footer nav .logo span {
  /* style du texte logo/copyright */
  color: #fff;
}

footer nav .social-icons a {
  margin-left: 1rem;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

footer nav .social-icons a:hover {
  opacity: 0.7;
}

.page-terminal {
  margin: 0;
  height: 100%;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
  font-size: 3vw;
  font-weight: 100;
  text-shadow: 0 0 5px #f0f;
  background-color: #000;
  color: #0ff;
  overflow: hidden;
  text-align: center;
}

.terminal {
  position: fixed;
  inset: 0;
  display: grid;
  grid-gap: 3vw;
  padding: 3vw;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  background-color: #000;
  z-index: 9;
  transition: opacity 1s ease;
}

.terminal--fadeout {
  opacity: 0;
  pointer-events: none;
}

.glitch {
  animation: glitch 1.5s linear infinite;
}

.glitch--clone {
  opacity: 0.2;
}

.glitch--clone .hydra {
  filter: blur(2px);
  opacity: 0.8;
}

.glitch--top {
  animation: glitch--top 1s linear infinite;
}

.glitch--top .hydra {
  transform: translate(4vw, 4vw);
}

.glitch--bottom {
  animation: glitch--bottom 0.75s linear infinite;
}

.glitch--bottom .hydra {
  transform: translate(-1vw, -1vw);
}

.hydra {
  box-shadow: 0 0 2px #f0f, inset 0 0 2px #f0f;
  padding: 2vw;
  border: 0.2vw solid #0ff;
  grid-row: 2/2;
  grid-column: 2/2;
}

.scanline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.03);
  animation: scanline 6s linear infinite;
  z-index: 10;
}

.loading-bar--unloaded {
  color: #7fff00;
  text-shadow: 0 0 5px #7fff00;
}

.hidden {
  display: none;
}

p {
  font-size: inherit;
  line-height: 1.5;
  margin: 0;
}

.text--sm {
  font-size: 1.75vw;
}

* + .text--sm {
  padding-top: 0.5vw;
}

* + .loading-bar {
  padding-top: 1vw;
}

@keyframes scanline {
  0.01% {
    transform: translateY(-100%);
  }
  99.99% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes glitch {
  2%, 64% {
    transform: translate(2px, 0) skew(0deg);
  }
  4%, 60% {
    transform: translate(-2px, 0) skew(0deg);
  }
  62% {
    transform: translate(0, 0) skew(5deg);
  }
}
@keyframes glitch--top {
  2%, 64% {
    transform: translate(2px, -2px);
  }
  4%, 60% {
    transform: translate(-2px, 2px);
  }
  62% {
    transform: translate(13px, -1px) skew(-13deg);
  }
}
@keyframes glitch--bottom {
  2%, 64% {
    transform: translate(-2px, 0);
  }
  4%, 60% {
    transform: translate(-2px, 0);
  }
  62% {
    transform: translate(-22px, 5px) skew(21deg);
  }
}
.scanline--hidden {
  opacity: 0;
  animation: none !important;
  transition: opacity 1s ease;
  z-index: 10;
}

/* spline viewer visible below terminal */
spline-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: block;
  z-index: 1;
}

body.single {
  overflow-y: auto !important;
  overflow-x: auto !important;
  height: auto;
}

.project-fullscreen {
  position: relative;
  height: 100%;
  overflow: hidden;
  color: white;
  font-family: "Orbitron", sans-serif;
}
.project-fullscreen .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(12px) brightness(0.5);
  z-index: 1;
  transform: scale(1.1);
}
.project-fullscreen .project-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
}
.project-fullscreen .project-overlay .project-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  max-width: 1400px;
  width: 100%;
  text-align: center;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}
.project-fullscreen .project-overlay .project-content h1 {
  color: #00fff7;
  margin-bottom: 1rem;
}
.project-fullscreen .project-overlay .project-content h3 {
  margin-bottom: 1rem;
}
.project-fullscreen .project-overlay .project-content .mission,
.project-fullscreen .project-overlay .project-content .github,
.project-fullscreen .project-overlay .project-content .description {
  margin-bottom: 1rem;
}
.project-fullscreen .project-overlay .project-content .mission a,
.project-fullscreen .project-overlay .project-content .github a,
.project-fullscreen .project-overlay .project-content .description a {
  color: #00fff7;
  text-decoration: none;
}
.project-fullscreen .project-overlay .project-content .mission a:hover,
.project-fullscreen .project-overlay .project-content .github a:hover,
.project-fullscreen .project-overlay .project-content .description a:hover {
  text-decoration: underline;
}
.project-fullscreen a {
  white-space: normal;
  word-break: break-word;
}

@media screen and (max-width: 425px) {
  .project-fullscreen .project-overlay {
    padding: 5rem 0.5rem;
  }
}
@font-face {
  font-family: "naza";
  src: url("../assets/fonts/Nasalization.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ethno";
  src: url("../assets/fonts/Ethnocentric.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Largeur de la scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

/* Fond de la scrollbar (track) */
::-webkit-scrollbar-track {
  background: #222;
  border-radius: 10px;
}

/* Curseur (thumb) */
::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 10px;
  border: 3px solid #222; /* pour créer un effet de marge */
}

/* Curseur au survol */
::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  margin: 0 !important;
  height: 100%;
  overflow-y: auto;
}

body {
  height: 100%;
  background-color: #333;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: "ethno", sans-serif;
  text-transform: uppercase;
}

p,
a {
  font-family: "naza", sans-serif;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.2rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.2rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 0.85rem;
  }
}

p {
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 0.9rem;
  }
}

a,
i {
  font-size: 1.1rem;
  text-decoration: none;
}
@media (max-width: 1024px) {
  a,
  i {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  a,
  i {
    font-size: 0.85rem;
  }
}
a:hover,
i:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */