/* ----- Reset ----- */

:root {
  --color-dark: #1d1d1b;
  --color-light: #F5EBDC;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-brown: #4a321c;
  --color-blue: #5b53bc;
}

/* PP Agrandir */
@font-face {
  font-family: 'PP Agrandir';
  src: url('assets/fonts/pp-agrandir-variable.woff2') format('woff2');
  font-weight: 100 900;
  /* La plage de poids supportée */
  font-style: normal;
}

/* Gilmer Regular */
@font-face {
  font-family: 'Gilmer';
  src: url('../assets/fonts/Gilmer\ Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Gilmer Bold */
@font-face {
  font-family: 'Gilmer';
  src: url('../assets/fonts/Gilmer\ Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Gilmer Heavy */
@font-face {
  font-family: 'Gilmer';
  src: url('../assets/fonts/Gilmer\ Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* Gilmer  Light*/
@font-face {
  font-family: 'Gilmer';
  src: url('../assets/fonts/Gilmer\ Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

/* Gilmer Medium */
@font-face {
  font-family: 'Gilmer';
  src: url('../assets/fonts/Gilmer\ Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* Gilmer  Outline*/
@font-face {
  font-family: 'Gilmer Outline';
  src: url('../assets/fonts/Gilmer\ Outline.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


* {
  border: none;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

blockquote::before,
blockquote::after {
  content: "";
}

body {
  box-sizing: border-box;
  font-size: 16px;
  background-color: var(--color-black);
  color: #2F2F2F;
  font-family: "Gilmer", sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

.projet-template-default {
  background-color: var(--color-black);
  padding-top: 200px;
}

.post-title {
  text-align: center;
  padding-bottom: 30px;
}

#site-content {
  overflow: hidden;
}

.saint-malo {
  border-radius: 50%;
  border: 4px solid #DA6730;
}

.mont-saint-michel {
  border-radius: 50%;
  border: 4px solid #94B0D5;
}

.tempete{
  border-radius: 50%;
  border: 4px solid #75AB91;
}
		
.europe{
	border-radius: 50%;
	border: 4px solid #28647F;
}


/** Fil d'ariane **/

.breadcrumb a,
.breadcrumb .breadcrumb_last{
  text-decoration: none;
  color: white;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Pour changer la couleur des séparateurs */
.breadcrumb span {
  color: var(--color-blue); /* couleur du séparateur */
  padding: 0 5px;
}




.filtre-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 25px 0;
}

.filtre {
  cursor: pointer;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50px;
  padding: 15px;
  color: white
}

.filtre:hover {
  background-color: white;
  color: black;
}

.filtre.active {
  background-color: white;
  color: black;
}

.liste-projets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 100px;
}

.projet-item {
  flex-direction: column;
  gap: 15px;
  height: 450px;
  max-width: 360px;
  width: 100%;
  background-color: white;
  border-radius: 20px;
  padding: 25px;
  place-self: center;
}

.projet-item img {
  width: 100%;
}

@media(min-width: 769px) {
  .liste-projets {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media(min-width: 1025px) {
  .liste-projets {
    grid-template-columns: repeat(3, 1fr);
  }
}

.main_body {
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 120px 25px 50px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cookie-notice {
  transform: translateY(100%);
  height: 100%;
}

.cookie-notice-container {
  position: absolute;
  width: calc(100% - 20px);
  max-width: 400px;
  background-color: #24282F;
  border-radius: 15px;
  transform: translateY(calc(-100% - 10px));
  left: 10px;
  animation-duration: 30s;
  animation-name: slideRightCookie;
}

@keyframes slideRightCookie {
  0% {
    margin-left: -100%;
  }

  12.5% {
    margin-left: -100%;
  }

  12.5% {
    margin-left: 0%;
  }

  100% {
    margin-left: 0%;
  }
}

.cn-buttons-container {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
}

.cn-buttons-container a:nth-child(3) {
  grid-area: 2 / 1 / 3 / 3;
  width: 100%;
}

.cn-buttons-container a:hover:nth-child(3) {
  text-decoration: underline;
}

.cn-more-info {
  background-color: transparent !important;
  font-size: 12px !important;
}


.cursor {
  position: fixed;
  border-radius: 200px;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: white;
  width: 0;
  height: 0;
  transform: translate(-50%, -100%);
  transition: width 0.3s ease, height 0.3s ease;
}

.cursor p {
  opacity: 0;
  transition: opacity 300ms;
  color: var(--color-dark)
}

.cursor.over {
  width: 150px;
  height: 35px;
  border: 2px solid black;
}

/* ----- Typographie ----- */

h1 {
  font-size: 30px;
  color: var(--color-white);
  font-family: 'Gilmer', sans-serif;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p {
  line-height: 1.6;
  font-size: 14px;
  color: white;
}

button {
  font-family: 'Gilmer', sans-serif;
}

section {
  overflow: hidden;
}

.section_title,
.section_title_outline {
  font-size: 28px;
}


@media (min-width: 769px) {

  p {
    font-size: 16px;
  }

  .section_title,
  .section_title_outline {
    font-size: 30px;
  }
}

@media (min-width: 1025px) {
  h1 {
    font-size: 35px;
  }

  p {
    line-height: 1.6;
    font-size: 18px;
  }

  .section_title,
  .section_title_outline {
    font-size: 40px;
  }

}


@media (min-width: 1400px) {
  h1 {
    font-size: 40px;
  }
}

a {
  text-decoration: none;
}

/* ----- Components ----- */

.button {
  color: var(--color-white);
  background-color: #000000;
  border: none;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-block;
}


.radial-in {
  padding: 10px 20px;
  border-radius: 6px;
  border-width: 2px;
  border-style: solid;
  font-size: 20px;
  cursor: pointer;
  transition: all 400ms ease;
  color: white;
  border-color: white;
  background: transparent;
  position: relative;
  width: max-content;
  overflow: hidden;
}

.radial-in>span {
  position: relative;
  z-index: 1;
}

.radial-in::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translate(-50%, 100%);
  background: white;
  width: 150%;
  padding-top: 150%;
  transition: 0.25s ease;
  border-radius: 999px;
  z-index: 0;
}

.radial-in:hover {
  color: black;
}

.radial-in:hover::after {
  bottom: 160%;
}

/* ----- Global ----- */

.section-inner {
  margin: 0 auto;
  padding: 200px 25px 50px 25px;
  max-width: 1400px;
}




/****************************************************************/
/****************************************************************/
/****************************************************************/
/****************************************************************/
/************************ DEBUT FRONT PAGE **********************/
/****************************************************************/
/****************************************************************/
/****************************************************************/
/****************************************************************/

/* ----- Hero Section ----- */
.section_accueil {
  background-color: var(--color-black);
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../../../wp-content/uploads/2025/01/background-accueil.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  */
  /* background-image: linear-gradient(to right, #f3d4ff, #f4d0ff, #f5ccff, #f6c8ff, #f8c4ff, #f2c5ff, #edc7ff, #e8c8ff, #ddcdff, #d3d2ff, #cbd6ff, #c6daff);  justify-content: center; */
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--color-white);
  position: relative;
  padding: 0 15px;
}

.img_background_accueil {
  height: 90vh;
  min-height: 500px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  filter: opacity(0.7);
}

.social_media_accueil {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 800;
  align-items: center;
  /* Centrer les icônes */
  height: 100%;
  transform: translateX(2px);
}

.social_media_accueil>div {
  position: relative;
  /* Nécessaire pour le ::before */
  height: 100%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social_media_accueil>div>div {
  background-color: black;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.social_media_accueil>div::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--color-white);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}


.social_media_accueil a {
  color: var(--color-white);
}

.social_media_accueil .fab {
  font-size: 20px;
  transition: all 200ms ease-in-out;
}

.social_media_accueil .fab:hover {
  scale: 1.1;
}


/* 
.fleche_line {
  position: absolute;
  z-index: 900;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  padding: 0px !important;
  background-color: var(--color-white) !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
}

.fleche_line svg {
  width: 15px;
  height: 15px;
} */


.content_accueil {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 1500px;
  max-width: 1400px;
  margin: 0 auto;
}

.content_accueil .content,
.content_accueil h1,
.content_accueil p{
  z-index: 2;
}

.content_accueil h1 {
  padding-top: 100px;
  display: flex;
  flex-direction: column;

}

.content_accueil p{
	padding-bottom: 15px;
}


.content_accueil p a{
	color: white;
}									
									
.content_accueil p a:hover{
	text-decoration: underline;
}


hr {
  border: none;
  border-top: 1px solid #ccc;
  width: 100%;
  max-width: 255px;
  margin: 15px 0;
  z-index: 2;
}
									
									

/* Animation */
.content_accueil .content {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.content__container {
  overflow: hidden;
  height: 33px;
  display: flex;
  align-items: start;
  gap: 8px
}

.content__container__text {
  margin: 0;
}

.content_list {
  overflow: hidden;
}

.content__container__list {
  text-align: left;
  list-style: none;
  margin: 0;

  -webkit-animation-name: slide-mots-accueil;
  -webkit-animation-duration: 15s;
  /* Temps total de l'animation */
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-name: slide-mots-accueil;
  animation-duration: 15s;
  /* Temps total de l'animation */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.content__container__list__item {
  margin: 0;
  padding-bottom: 10px;
}


/* Animation rapide entre les éléments */
@keyframes slide-mots-accueil {

  0%,
  17% {
    transform: translate3d(0, 0, 0);
    /* Premier mot visible */
  }

  20%,
  22% {
    transform: translate3d(0, -37%, 0);
    /* Premier mot sort */
  }

  22%,
  37% {
    transform: translate3d(0, -37%, 0);
    /* Deuxième mot visible */
  }

  39%,
  41% {
    transform: translate3d(0, -76%, 0);
    /* Deuxième mot sort */
  }

  41%,
  56% {
    transform: translate3d(0, -76%, 0);
    /* Troisième mot visible */
  }

  58%,
  60% {
    transform: translate3d(0, -76%, 0);
    /* Troisième mot sort */
  }

  60%,
  75% {
    transform: translate3d(0, -37%, 0);
    /* Deuxième mot visible */
  }

  77%,
  79% {
    transform: translate3d(0, -37%, 0);
    /* Deuxième mot sort */
  }

  79%,
  94% {
    transform: translate3d(0, 0, 0);
    /* Premier mot visible à nouveau */
  }
}

@media (min-width: 768px) {
  .content {
    font-size: 25px;
  }
}

/******************** Section ABOUT ME ********************/
/**********************************************************/
.about_me_section {
  background-color: var(--color-black);
  position: relative;
}

.about_me_section_line_vertical {
  position: relative;
}


.about_me_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0 50px 0;
}

/* Fixer le titre quand on entre dans la section */
.section_title {
  position: sticky;
  top: 0;
  left: 50%;
  width: 100%;
  color: var(--color-white);
  z-index: 1;
  margin: 0;
  background-color: var(--color-black);
  text-align: center;
  box-shadow: 0 30px 30px 0px black;
  padding-top: 30px;
}

.section_title_outline {
  color: var(--color-white);
  text-align: center;
}

.section_title span,
.section_title_outline span {
  font-family: "Gilmer Outline";
}


.about_me_text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  color: white;
  padding: 70px 25px 25px 50px;
  position: relative;

}

.about_me_text::before {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 70px - 25px);
  background-color: white;
  left: 25px;
  margin-top: 50px;
  top: 0;
}

.container_text_about_me {
  position: relative;
}


.container_text_about_me a {
  color: white;
  text-decoration: underline;
}

.container_text_about_me>div {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 15px;
  padding-bottom: 10px;
}

.container_text_about_me>div>p {
  display: flex;
  align-items: end;
  align-self: flex-end;
  transform: translateY(-4px);
}

.about_me_text .container_text_about_me:nth-child(odd)::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 30px;
  left: -24px;
  transform: translateX(-50%);
  background-color: var(--color-white);
  border-radius: 50%;
}

.about_me_text .container_text_about_me:nth-child(odd)::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  top: 36px;
  left: -24px;
  background-color: var(--color-white);
  border-radius: 50px;
}

.about_me_text .container_text_about_me:nth-child(even)::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 40px;
  left: -33px;
  transform: translateY(-50%);
  background-color: var(--color-white);
  border-radius: 50%;
}

.about_me_text .container_text_about_me:nth-child(even)::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  top: 36px;
  left: -24px;
  background-color: var(--color-white);
  border-radius: 50px;
}


.about_me_date {
  font-size: 50px;
  font-weight: normal;
  transform: translateY(15px);
}

.about_me_date_outline {
  font-family: "Gilmer Outline";
}

@media (min-width: 1025px) {

  .about_me_text {
    grid-template-columns: repeat(2, 1fr);
    padding: 70px 25px 25px 25px;
  }

  .about_me_text::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .mask_about_me {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, #000, transparent);
  }


  .about_me_text .container_text_about_me:nth-child(odd) {
    grid-column: 1 / span 2;
    width: 50%;
    padding-right: 50px;
    text-align: end;
  }

  .about_me_text .container_text_about_me:nth-child(even) {
    grid-column: 2 / span 1;
    padding-left: 25px;

  }

  .about_me_text .container_text_about_me p {
    position: relative;
  }

  .about_me_text .container_text_about_me:nth-child(odd)>div {
    flex-direction: row;
    justify-content: end;
  }

  .about_me_text .container_text_about_me:nth-child(odd)::before {
    width: 26px;
    height: 26px;
    top: 30px;
    right: 0;
    left: auto;
    transform: translateX(50%);
  }

  .about_me_text .container_text_about_me:nth-child(odd)::after {
    width: 50px;
    height: 7px;
    top: 40px;
    right: -10px;
    left: auto;
  }

  .about_me_text .container_text_about_me:nth-child(even)::before {
    width: 26px;
    height: 26px;
    top: 40px;
    left: -33px;
    transform: translateY(-50%);
  }

  .about_me_text .container_text_about_me:nth-child(even)::after {
    width: 50px;
    height: 7px;
    top: 38px;
    left: -33px;
  }

  .about_me_date {
    transform: translateY(13px);
  }
}


/*************************************************************/
/******************** Section compétences ********************/
/*************************************************************/



.container_competences {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 25px 70px 25px;
  gap: 25px;
  color: white;
}

.text_competences {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.text_competences h3 {
  font-size: 24px;
}

.container_card_competences {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.card_competences {
  min-height: 200px;
  background-color: var(--color-dark);
  border-radius: 25px;
  transition: all 300ms ease-in-out;
  gap: 25px;
  padding: 25px;

}

.card_competences:first-child {
  background-color: #5b53bc;
  transform: rotate(-5deg) translateY(-10px);
}

.card_competences:hover {
  background-color: #5b53bc;
  transform: rotate(-5deg) translateY(-10px);
}

.card_competences svg {
  width: 40px;
  height: max-content;
}

.card_competences h3 {
  display: flex;
  flex-wrap: wrap;
}

.card_competences p {
  font-size: 12px;
}


@media(min-width: 768px) {

  .container_competences {
    grid-template-columns: 1fr 1fr;
  }

  .container_card_competences {
    grid-template-columns: repeat(2, 1fr);
  }

  .card_competences p {
    font-size: 14px;
  }
}


/**********************************************************/
/******************** Section carousel ********************/
/**********************************************************/
/* carousel */
.carousel {
  height: 100vh;
  max-height: 1080px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: black;
}

/* .carousel::before {
  content: "";
  position: absolute;
  right: 26px;
  width: 2px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 800;
} */


.container_carrousel {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.carousel .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}

.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .list .item .content {
  position: absolute;
  top: 20%;
  width: 100%;
  max-width: 600px;
  left: 50px;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .title {
  font-size: 70px;
  font-weight: bold;
  line-height: 1.3em;
}

.carousel .list .item .title {
  font-size: 70px;
  font-weight: bold;
  line-height: 1.3em;
}


/* thumbail */
.thumbnail {
  position: absolute;
  bottom: 50%;
  left: 60%;
  transform: translateY(50%);
  width: max-content;
  height: 380px;
  z-index: 100;
  display: flex;
  gap: 20px;
}

.thumbnail .item {
  width: 220px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.thumbnail .item .image_container {
  width: 100%;
  height: 75%;
  overflow: hidden;
}

.thumbnail .item .image_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.thumbnail .item .content {
  padding-top: 20px;
  padding-left: 25px;
  background-color: white;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 190px;
  border-top-left-radius: 25px;
  margin-top: -25px;
  position: relative;
}

.thumbnail .item .content::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 45px 45px 0 25px white;
  top: -50px;
  right: 0;
  z-index: 0;
}

/*   border-bottom: 0px;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: white;
*/



.thumbnail .item .content .title {
  font-weight: 700;
  font-size: 20px;
  position: relative;
  z-index: 1;
  padding-bottom: 5px;
}

.thumbnail .item .content .des {
  font-size: 10px;
  position: relative;
  z-index: 1;
  padding-right: 25px;
}

/* Arrows */
.arrows {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 50%;
  z-index: 100;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
  padding-right: 25px;
}

/* Ligne entre les flèches et le compteur */
.arrows .line_arrow {
  width: 100%;
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.arrows .line_arrow::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
}

.container_arrow {
  display: flex;
  gap: 15px;
}

.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid white;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: .5s;
}

.arrows button:hover {
  border-color: var(--color-black);
  background-color: var(--color-black);
}

.arrows .compteur {
  font-weight: 900;
  font-size: 35px;
  color: white;
}

/* animation */
.carousel .list .item:nth-child(1) {
  z-index: 1;
}

/* animation text in first item */
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .button_explore {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s 1s ease-in-out 1 forwards;
}

@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.carousel .list .item:nth-child(1) .content .title {
  animation-delay: 750ms !important;
}

.carousel .list .item:nth-child(1) .content .des {
  animation-delay: 1s !important;
}

.carousel .list .item:nth-child(1) .content .button_explore {
  animation-delay: 1.25s !important;
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50%;
  left: 70%;
  border-radius: 30px;
  animation: showImage .5s ease-in-out 1 forwards;
}

@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.carousel.prev .list .item img {
  z-index: 100;
}

@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }
}

.carousel.next .thumbnail {
  animation: effectNext .5s ease-in-out 1;
}

@keyframes effectNext {
  from {
    transform: translate(220px, 50%);
  }
}

/* running time */

.carousel .time {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background-color: #f1683a;
  left: 0;
  top: 0;
}


/* prev click */

.carousel.prev .list .item:nth-child(2) {
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame 0s ease-in-out 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}


@keyframes outFrame {
  to {
    width: 0px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail .5s ease-in-out 1 forwards;
}

.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .button_explore {
  animation: contentOut 1.5s ease-in-out 1 forwards !important;
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}



@media (max-width: 1024px) {
  .carousel .list .item .content {
    padding-right: 0;
    width: calc(50% - 50px);
  }

  .carousel .list .item .content .title {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .carousel .list .item .content {
    padding-right: 0;
    left: 15px;
    width: 100%;
    padding-right: 30px;
  }

  .carousel .list .item .content .title {
    font-size: 40px;
  }

  .thumbnail {
    left: 100%;
  }

}


/* Animation améliorée pour éviter le délai */
@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 220px;
    opacity: 1;
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail 0.5s ease-in-out 1 forwards;
  animation-fill-mode: forwards;
  /* Évite le retour à l'état initial */
}

/* Correction des animations pour le mode prev */
.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s ease-in-out 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}

@keyframes outFrame {
  to {
    width: 0px;
    height: 0px;
    bottom: 50%;
    left: calc(60% + 220px);
    border-radius: 20px;
    opacity: 0;
  }
}



/* Ajout d'une transition fluide */
.thumbnail .item {
  transition: opacity 0.5s ease, transform 0.5s ease;
}


.button_explore {
  text-decoration: none;
  display: inline-flex;
  border: none;
  align-items: center;
  transition: background-color 0.3s;
  padding: 10px;
  padding-right: 12px;
  border-radius: 50px;
  border: 2px solid white;
  gap: 10px;
  color: white;
  font-size: 15px;
  margin-top: 15px;
}

.button_explore.black {
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button_explore.black .button__icon-wrapper {
  background-color: var(--color-dark);
}


.button_explore.black svg path {
  fill: var(--color-white);
}

.button_explore:hover {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
}

.button_explore.black:hover .button__icon-wrapper {
  background-color: var(--color-white);
}

.button_explore.black:hover {
  color: var(--color-white)
}

.button_explore.black:hover svg path {
  fill: var(--color-dark);
}

.button_explore.white:hover {
  background-color: var(--color-white);
  color: var(--color-black)
}

.button_explore.white:hover .button__icon-wrapper {
  background-color: var(--color-black);
}

.button_explore.white:hover svg path {
  fill: var(--color-white);
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button_explore:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button_explore:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}


.arrows .line_arrow .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #FBB900;
  /* Barre de progression */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform linear;
}

/**********************************************************/
/******************** Section contact ********************/
/**********************************************************/
.bandeau_contact {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: white;
  background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
    var(--background-contact);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  padding: 25px;
}

/**********************************************************/
/******************** Section projets ********************/
/**********************************************************/
.projets {
  padding: 50px 25px;
}

.container_btn_projet {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mySwiper_projets {
  max-width: 350px;
  margin: 0 auto;
  padding: 0 25px !important;
  box-sizing: border-box;
}

.card_projets {
  position: relative;
  background: #fff;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}


.card-content_projets {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  position: relative;
  z-index: 100;
  height: 450px;
}

.image_projets {
  width: 100%;
}

.image_projets img {
  width: 100%;
}

.name-profession_projets p {
  color: var(--color-black);
}

.description_projets p {
  color: var(--color-black);
  font-size: 14px;
}

.button_projets {
  width: 100%;
  display: flex;
  justify-content: center;
}

.button_projets button {
  background: #5B53BC;
  outline: none;
  border: none;
  color: #fff;
  padding: 8px 22px;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button_projets button:hover {
  background: #6616d0;
}

.swiper-pagination_projets {
  position: absolute;
  bottom: 0 !important;
}

.swiper-pagination_projets .swiper-pagination-bullet {
  height: 7px;
  width: 26px;
  border-radius: 25px;
  background: white;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #5B53BC !important;
}

.swiper-button-next_projets,
.swiper-button-prev_projets {
  opacity: 0.7;
  color: #5B53BC;
  transition: all 0.3s ease;
}

.swiper-button-next_projets:hover,
.swiper-button-prev_projets:hover {
  opacity: 1;
  color: #5B53BC;
}

@media(min-width: 769px) {
  .mySwiper_projets {
    max-width: 700px;
  }
}

@media(min-width: 1025px) {
  .mySwiper_projets {
    max-width: 950px;
  }
}

/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/************************ FIN FRONT PAGE **********************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/



/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/******************** DEBUT ALBUMS TAXONOMIE *******************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
.taxonomy-albums-section {
  max-width: 950px;
  margin: 0 auto;
  padding: 20px;
  padding-top: 250px;
}

/* Header de la taxonomie */
.taxonomy-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.taxonomy-image {
  width: 130px;
  height: 130px;
  overflow: hidden;
}

.taxonomy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.taxonomy-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.taxonomy-title {
  font-size: 2rem;
  font-weight: bold;
}

.taxonomy-description {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Contenu des articles */
.taxonomy-content {
  margin-top: 20px;
}

.albums-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.album-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 300px;
}

.album-link {
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: all 350ms ease;
}

.album-link:hover .album-image {
  scale: 1.1;
  transition: all 350ms ease;
}

.album-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/******************** FIN ALBUMS TAXONOMIE *******************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/

/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/******************** DEBUT PROJET TAXONOMIE *******************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/

.filtre-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 25px 0;
}

.filtre {
  cursor: pointer;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50px;
  padding: 15px;
  color: white
}

.filtre:hover {
  background-color: white;
  color: black;
}

.filtre.active {
  background-color: white;
  color: black;
}

.liste-projets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.projet-item {
  flex-direction: column;
  gap: 15px;
  height: 450px;
  background-color: white;
  border-radius: 20px;
  padding: 25px;
}

.projet-item img {
  width: 100%;
}

@media(min-width: 769px) {
  .liste-projets {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media(min-width: 1025px) {
  .liste-projets {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/******************** FIN PROJET TAXONOMIE *******************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/

/**************************************************************************/


.section-galerie-photos {
  padding: 200px 25px 150px 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-galerie-photos h1 {
  color: white;
  text-align: center;
  padding-bottom: 30px;
}

.section-galerie-photos h2 {
  color: white;
}

.list-photo {
  column-count: 2;
  /* Nombre de colonnes */
  column-gap: 16px;
  /* Espacement entre les colonnes */
  list-style: none;
  padding: 0;
  margin: 0;
}

.item-photo {
  margin-bottom: 16px;
  /* Espacement entre les items dans une colonne */
  break-inside: avoid;
  /* Empêche les éléments de se couper entre les colonnes */
  display: inline-block;
  /* Force chaque élément à rester dans une colonne */
  width: 100%;
  /* S'adapte à la largeur de la colonne */
  background: white;
  text-align: center;
  border: 2px solid white;
  overflow: hidden;
}

.item-photo img {
  width: 100%;
  /* Image à la largeur du conteneur */
  height: auto;
  /* Conserve les proportions */
  display: block;
  /* Supprime l'espacement en bas des images */
  transition: all 0.3s ease;
}

.item-photo:hover img {
  scale: 1.1;
  transition: all 0.3s ease;
}


.list_albums_photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 25px 0;
  gap: 25px
}

.item_albums_photo {
  position: relative;
  height: 190px;
  width: 110px;
  background-color: black;
  border-radius: 15px;
  overflow: hidden;
}

.container_image_photo {
  width: 100%;
  height: 70%;
  list-style: none;
  overflow: hidden;
}

.container_image_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 200ms ease-in-out;
}

.container_text_photo {
  padding: 5px;
  padding-top: 7px;
  background-color: white;
  height: 100%;
  text-align: center;
  font-weight: 500;
  color: black;
  border-top-left-radius: 10px;
  transform: translateY(-10px);
  position: relative;
}

.container_text_photo::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  box-shadow: 10px 10px 0 0px white;
  border-radius: 50%;
}



.item_albums_photo:hover img {
  transform: scale(1.2);
}

.section_single_photo {
  max-width: 1400px;
  margin: 0 auto;
  padding: 200px 25px 50px 25px
}

.container_single_photo {
  display: flex;
  flex-direction: column;
}

.container_single_photo img {
  width: 100%;
  height: auto;
}




.div_photo_single {
  cursor: pointer;
}




#fullscreenOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#fullscreenOverlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: zoom-out;
}

@media(min-width: 769px) {
  .list-photo {
    column-count: 3;
  }

  .list_albums_photo {
    justify-content: start;
  }

  .singlePhotoRow {
    flex-direction: row;
  }
}

@media(min-width: 1025px) {

  .div_photo_single {
    height: calc(100vh - 300px);
    min-height: 400px;
  }

  .div_photo_single img {
    height: 100%;
    width: auto;
  }
}













/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/********************* DEBUT SINGLE PROjET ********************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
.section_projet {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 25px 70px 25px;
  color: white;
  gap: 25px;
  display: flex;
  flex-direction: column;
}

.image_projet_presentation{
  width: 100%;
  border-radius: 25px;
}




.container_single_projet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.title_projet {
  font-size: 70px;
  font-weight: 800;
}

.flux_single_projet {
  width: 100%;
}


.flux_single_projet img {
  width: 100%;
  /* border: dashed 10px white; */
  border-radius: 25px;
}

.container_section ul{
  padding-left: 25px;
  font-size: 18px;
}

.container_section > div{
padding: 10px;																																		
}	
																																	  
.container_section .video,
.container_section .projet-image{
	display: flex;
	justify-content: center;
	align-items: center;																														
}															


.container_section img{
  border-radius: 25px;																													
}				
																																	  
.projet-image img{
width: 100% ;																																		
}			

.lien_site_projet{
  display: flex;
  position: relative;
  margin-top: 15px;
  width: max-content;
}

.lien_site_projet a{
  color: white;
  transition: all 300ms ease-in-out;
}

.lien_site_projet svg{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  transition: all 300ms ease-in-out;
  opacity: 0;
}

.lien_site_projet:hover a{
  transform: translateX(25px);
}

.lien_site_projet:hover svg{
  opacity: 1;
}



@media(min-width: 1025px){
  .container_section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}


/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/********************* FIN SINGLE PROjET **********************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/


/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************** DEBUT PAGE CONTACT  *****************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/

.contact_page {
  background-color: var(--color-black);
}

.grille_contact {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  max-width: 900px;
  background-color: var(--color-white);
}

.grille_contact>div {
  padding: 25px;
  border-radius: 25px;
  overflow: hidden;
}

.grille_contact .form-group br {
  display: none;
}

.grille_contact h2 {
  color: var(--color-white)
}

.colonne_gauche {
  border-radius: 25px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  background-image: url('http://adrien-lv.fr/wp-content/uploads/2025/05/DSC_0565_DxO_DxO.jpg');
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.colonne_gauche>div {
  padding: 25px;
  backdrop-filter: blur(10px);
  background-color: transparent;
  border-radius: 25px;
  overflow: hidden;
}

.colonne_gauche a {
  color: white;
}

.colonne_gauche_texte_container {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.colonne_gauche_texte_container div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

#a232f0e {
  width: 100%;
}

.contact-form-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form-container * {
  font-family: "Gilmer";
}

.contact-form-container .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 45px;
  position: relative;
}

.form-group p {
  width: 100%;
  height: 100%;
}

.form-group label {
  color: black;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.2s ease;
}

.form-group input,
.form-group textarea {
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 5px 5px 5px 15px;
  border: 2px solid var(--color-black);
  border-radius: 100px;
  position: relative;
}

.form_group_textarea {
  height: 150px;
}

.form_group_textarea textarea {
  border-radius: 25px;
}

.form_group_textarea label {
  top: 25px;
  transition: all 0.2s ease;
}

.form-group .wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
  top: -10px;
  background: white;
  padding: 0 5px;
  font-size: 0.75rem;
  color: var(--color-black);
  transition: all 0.2s ease;
}


.form-group label.active {
  top: 0;
  background: white;
  padding: 0 5px;
  font-size: 0.75rem;
  color: var(--color-black);
}

.form-group input.active {
  border: 2px solid var(--color-blue) !important;
}

.wpcf7-spinner {
  display: none;
}

.form-actions p {
  display: flex;
  justify-content: center;
}

.form-actions input {
  padding: 10px;
  border: 2px solid var(--color-black);
  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 18px;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}

.form-actions input:hover {
  color: var(--color-white);
  background-color: var(--color-black);
}

@media(max-width: 768px) {
  .grille_contact .colonne_gauche {
    order: 2;
  }
}

@media(min-width: 769px) {
  .grille_contact {
    grid-template-columns: 40% 1fr !important;
  }

}

/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/********************* FIN PAGE CONTACT **********************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/

/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/********************* DEBUT PAGE RESULTAT **********************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/

.result_page {
  background-color: black;
  padding-top: 200px;
}

.result_page_section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 25px 100px 25px;
}

.container_result {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  padding-top: 25px;
}




.result_page h2,
.result_page p {
  color: var(--color-white);
  text-align: start;
  font-size: 22px;
}

.post-type {
  background-color: white;
  color: var(--color-black) !important;
  width: max-content;
  padding: 3px 7px;
}

.searchLinkPlus {
  display: flex;
  align-items: center;
  gap: 10px;
  /* espacement entre le svg et le texte */
  transition: transform 0.3s ease;
  width: max-content;
  position: relative;
}

.searchLinkPlus a {
  display: inline-block;
  transition: transform 0.3s ease;
  color: white;
  text-decoration: none;
}

.searchLinkPlus svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.searchLinkPlus:hover a {
  transform: translateX(20px);
  /* déplacement horizontal au hover */
}

.searchLinkPlus:hover svg {
  opacity: 1;
}

@media(min-width: 767px) {
  .container_result {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1024px) {
  .container_result {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/********************* FIN PAGE RESULTAT **********************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/


/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************** DEBUT TRANSITION APPARITION *****************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/

/* Initial states */
.translate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease-out;
}

.translate-down {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 0.6s ease-out;
}

.translate-left {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.6s ease-out;
}

.translate-right {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.6s ease-out;
}

/* Visible states */
.visibleTranslate-up,
.visibleTranslate-down,
.visibleTranslate-left,
.visibleTranslate-right {
  opacity: 1;
  transform: translate(0, 0);
}


/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/***************** FIN TRANSITION APPARITION ******************/
/**************************************************************/
/**************************************************************/
/**************************************************************/
/**************************************************************/