@charset "UTF-8";
@import url("../font/fonts.css");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  background-image: linear-gradient(90deg, #0A0A0A 1px, transparent 1px), linear-gradient(180deg, #0A0A0A 1px, #0F0F0F 1px); /* Lignes horizontales */
  background-size: 20% 20%;
  background-position: 0 0, 0 0;
  background-attachment: fixed;
  width: 100%;
}
body br {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body p, body h1, body h2, body a {
  font-family: "Helvetica";
  color: #FBFBFB;
}
body p::-moz-selection, body h1::-moz-selection, body h2::-moz-selection, body a::-moz-selection {
  background-color: yellow;
  color: #0F0F0F;
}
body p::selection, body h1::selection, body h2::selection, body a::selection {
  background-color: yellow;
  color: #0F0F0F;
}
body hr {
  width: 100%;
  border: none;
  border-top: 1px solid #FBFBFB;
}
body #title {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 60vh;
  justify-content: flex-end;
  align-items: flex-start;
  background-color: #0F0F0F;
  padding: 1.2rem;
}
body #title #full {
  position: relative;
}
body #title #full h1 {
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 150px);
  text-transform: uppercase;
  line-height: 0.9;
}
body #projects {
  display: flex;
  padding: 2rem;
  width: 100%;
}
body #projects .view-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 20%;
  gap: 2rem;
}
body #projects .view-toggle button {
  background: none;
  border: none;
  text-transform: uppercase;
  font-size: clamp(0.6rem, 1.8vw, 0.8rem);
  font-family: "Helvetica";
  font-weight: 200;
  color: #FBFBFB;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
body #projects .view-toggle button:hover {
  color: #A6A6A6;
  transition: color 0.3s ease-in-out;
}
body #projects .view-toggle button:focus {
  outline: #2C2C2C;
  transition: color 0.3s ease-in-out;
}
body #projects .lineh {
  width: 1px; /* Épaisseur de la ligne */
  height: 100%; /* Hauteur de la ligne (ajuste selon tes besoins) */
  background-color: #FBFBFB; /* Couleur de la ligne */
}
body #projects .grid-view {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  justify-content: space-around;
  align-items: flex-start;
}
body #projects .grid-view .projet {
  display: flex;
  flex-direction: column;
  width: 48%;
  text-decoration: none;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
body #projects .grid-view .projet.visible {
  opacity: 1;
  transform: translateY(0);
}
body #projects .grid-view .projet:hover .img {
  background-size: 105%;
  transition: 0.5s;
  border-radius: 1rem;
}
body #projects .grid-view .projet .img {
  width: 100%;
  aspect-ratio: 16/9;
  transition: 0.5s;
  overflow: hidden;
}
body #projects .grid-view .projet .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.5s;
}
body #projects .grid-view .projet .img img:hover {
  transform: scale(1.02);
  transition: 0.5s;
}
body #projects .grid-view .projet:hover .txt h1, body #projects .grid-view .projet:hover .txt p {
  color: #A6A6A6;
  transition: 0.5s;
}
body #projects .grid-view .projet .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.8rem 0;
}
body #projects .grid-view .projet .txt h1, body #projects .grid-view .projet .txt p {
  font-size: clamp(14px, 1.5vw, 16px);
  text-transform: uppercase;
  transition: 0.5s;
}
body #projects .grid-view .projet .txt .title {
  width: 25%;
}
body #projects .grid-view .projet .txt .hide {
  opacity: 0;
}
body #projects .grid-view .projet .txt h1 {
  font-weight: 400;
  width: 40%;
  white-space: nowrap;
}
body #projects .grid-view .projet .txt .blabla {
  display: flex;
  width: 100%;
}
body #projects .grid-view .projet .txt p {
  font-weight: 200;
  font-size: clamp(0.6rem, 1.8vw, 0.8rem);
  white-space: nowrap;
  text-align: right;
  width: 100%;
}
body #projects .list-view {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  justify-content: space-around;
  align-items: flex-start;
}
body #projects .list-view .projet {
  display: flex;
  width: 100%;
  text-decoration: none;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  justify-content: space-between;
}
body #projects .list-view .projet.visible {
  opacity: 1;
  transform: translateY(0);
}
body #projects .list-view .projet:hover .img {
  background-size: 105%;
  transition: 0.5s;
  border-radius: 0.6rem;
}
body #projects .list-view .projet .img {
  width: 10%;
  aspect-ratio: 16/9;
  transition: 0.5s;
  overflow: hidden;
}
body #projects .list-view .projet .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.5s;
}
body #projects .list-view .projet .img img:hover {
  transform: scale(1.02);
  transition: 0.5s;
}
body #projects .list-view .projet:hover .txt h1, body #projects .list-view .projet:hover .txt p {
  color: #A6A6A6;
  transition: 0.5s;
}
body #projects .list-view .projet .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  padding: 0.6rem 0;
}
body #projects .list-view .projet .txt h1, body #projects .list-view .projet .txt p {
  font-size: clamp(14px, 1.5vw, 16px);
  text-transform: uppercase;
  transition: 0.5s;
}
body #projects .list-view .projet .txt .title {
  width: 50%;
}
body #projects .list-view .projet .txt h1 {
  font-weight: 400;
  white-space: nowrap;
}
body #projects .list-view .projet .txt .hide {
  opacity: 1;
}
body #projects .list-view .projet .txt p {
  font-weight: 200;
  font-size: clamp(0.6rem, 1.8vw, 0.8rem);
  width: 100%;
  text-align: right;
}/*# sourceMappingURL=galerie.css.map */