/* === BODY === */
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: white; /* Couleur fond page */
  color: black;
}

html {
  scroll-behavior: smooth;
}


/*BLOCS PARCOURS SCOLAIRE ET PRO*/
.deuxblocs {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; /* Espace entre les deux blocs */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 50px auto;
}


/*BOUTON RETOUR EN HAUT*/
#scrollTop{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #EED9B7;
  color: black;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

#scrollTop:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/*CONTENU EN DEFILANT*/
.contenu {
  min-height: 100vh;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}



/*IMAGE D'ACCUEIL*/
.header-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    object-fit: cover;
}

.hero {
  position:relative;
  height: 100vh;
  background: url('couverture.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
}


.text-center {
  font-size: 70px;
  color: black;
  margin-bottom: 0.5rem;
  font-family: Nunito;
  margin-bottom: 0.5rem; /* Espace entre titre et sous-titre */
  text-align: center;
}

.soustitre {
  font-size: 1.2em;
  font-weight: normal;
  margin-top: 0;
  color: black;
}

.container {
    height: 100vh; 
    width: 100%;
    position: absolute; 
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    padding-top: 250px; 
    padding-left: 290px !important;
    text-align: center;
    font-family: Nunito;
}


.soustitre {
  font-family: Nunito;
  text-align: center;
  margin-top: 0;
  font-size: 1.2em;
  font-weight: normal;
}

/* BOUTONS SUR LE COTE */

.button {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.button a {
  background-color: #EED9B7;
  color: black;
  text-decoration: none;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.button a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  color: black;
}


/* SECTION PORTRAIT */

#portrait-section {
  padding-top: 10px;
  padding-left: 120px;
}

#portrait-section h2 {
  position: relative;
  font-size: 2em;
  color: #EED9B7;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 50px;
  left:0px;
  margin-left: 0px;
}

#portrait-section h2::after {   /* La ligne à droite du titre */
  content: "";
  position: absolute;
  top: 50%;
  left: 100%; /* Commence à la fin du texte */
  transform: translateY(-50%);
  width: 100vw; /* Jusqu’au bord droit de la page */
  height: 1px; /* Epaisseur de la ligne */
  background-color: #EED9B7;
  margin-left: 15px; /* Espace entre le texte et la ligne */
}

.encadre {  /* Photo de profil*/
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    margin-top: 40px;
}

.photo-box {    /* Encadré autour de la photo */
  border: 3px solid #EED9B7;
  padding: 5px;
  border-radius: 10px;

}

.encadre-img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.cartes-container { /*Alignement des 4 cartes */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin:80px auto;
    padding-left: 120px;
    margin-top: 80px;
}

.cadre-img {    /* Taille image */
    width: 300px;
    height: 200px;
    object-fit: cover;    
    border-radius: 10px;
    display: block;
}



/* PASSIONS */
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  perspective: 1000px; /* Effet 3D */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.flip-card-back {   /* Style de la face arrière */
  background-color: #EED9B7;
  color: black;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  border: 3px solid #EED9B7;
}

.flip-card-front .photo-box {
    margin: 0;
    padding: 0;
}




/* PARCOURS SCOLAIRE */
#cv-section {
  padding-top: 10px;
  padding-left: 120px;
}

#cv-section h2 {
  position: relative;
  font-size: 2em;
  color: #EED9B7;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 50px;
  left:0px;
  margin-left: 0px;
}

#cv-section h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 100vw;
  height: 1px;
  background-color: #EED9B7;
  margin-left: 15px;
}


/*LIENS HYPERTEXTES ENS-CELSA*/
.lien-personnalise {
  color: #EED9B7 !important;
  text-decoration: none !important;
  font-weight: bold;
  transition: color 0.3s ease;
}

.lien-personnalise:hover {
  color: #000000 !important;
  text-decoration: none !important;
}

.bandeau-cpge { /*Logos et titres*/
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.logo-cpge {
  width: 60px;
  height: auto;
}

.titre-cpge {
  font-weight: bold;
  font-size: 1.1em;
  margin: 0;
}

.bandeau-bac {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.logo-bac {
  height: auto;
  width: 60px;
}

.logo-reduit {
  width: 45px;
}

.titre-bac {
  font-weight: bold;
  font-size: 1.1em;
  margin: 0;
}

/*PARCOURS PRO*/

html {
  font-size: 14px;
}

body {
  background: #f6f9fc;
  font-family: "Open Sans", sans-serif;
  color: #525f7f;
}

h2 {
  margin: 5%;
  text-align: center;
  font-size: 2rem;
  font-weight: 100;
}

.timeline {
  display: flex;
  flex-direction: column;
  width: 50vw;
  margin: 5% auto;
  margin-left: 150px;
}

.timeline__event {
  background: #fff;
  margin: 20px 0;
  position: relative;
  display: flex;
  border-radius: 8px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
              0 18px 36px -18px rgba(0, 0, 0, 0.3),
              0 -12px 36px -8px rgba(0, 0, 0, 0.025);
}

.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #8C5E58 ;
  letter-spacing: 1.5px;
}


.timeline__event__content {
  padding: 20px;
}

.timeline__event__date {
  color: #EED9B7;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}

.timeline__event__icon {
  flex: 0 0 150px;
  border-radius: 8px 0 0 8px;
  background: #8C5E58 ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #9251ac;
  padding: 20px;
  position: relative;
}

.timeline__event__icon i {
  position: absolute;
  top: 50%;
  left: -65px;
  font-size: 2.5rem;
  transform: translateY(-50%);
}

.timeline__event__description {
  flex-basis: 60%;
}

.timeline__event:after {
  content: "";
  width: 2px;
  height: calc(100% + 40px);
  background: #EED9B7;
  position: absolute;
  top: 52%;
  left: -3.5rem;
  z-index: -1;
}

.timeline__event:before {
  content: "";
  width: 5rem;
  height: 5rem;
  position: absolute;
  background: #EED9B7;
  border-radius: 100%;
  left: -6rem;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #8C5E58 ;
}

.timeline__event--type2:before {
  background: #EED9B7;
  border-color: #A67C52 ;
}

.timeline__event--type2:after {
  background: #EED9B7;
}

.timeline__event--type2 .timeline__event__date {
  color: #EED9B7;
}

.timeline__event--type2 .timeline__event__icon {
  flex: 0 0 150px;
  background: #A67C52;
  color: #A67C52;
}

.timeline__event--type2 .timeline__event__title {
  color: #A67C52;
}

.timeline__event--type3:before {
  background: #EED9B7;
  border-color: #C2A878   ;
}

.timeline__event--type3:after {
  background: #EED9B7;
}

.timeline__event--type3 .timeline__event__date {
  color: #EED9B7;
}

.timeline__event--type3 .timeline__event__icon {
  flex: 0 0 150px;
  background: #C2A878  ;
  color: #F5F1E3;
}

.timeline__event--type3 .timeline__event__title {
  color: #C2A878  ;
}

.timeline__event--type4:before {
  background: #EED9B7;
  border-color: #8E735B    ;
}

.timeline__event--type4:after {
  background: #EED9B7;
}

.timeline__event--type4 .timeline__event__date {
  color: #EED9B7;
}

.timeline__event--type4 .timeline__event__icon {
  flex: 0 0 150px;
  background: #8E735B   ;
  color: #F5F1E3;
}

.timeline__event--type4 .timeline__event__title {
  color: #8E735B   ;
}

.timeline__event--type5:before {
  background: #EED9B7;
  border-color: #5C4B3B   ;
}

.timeline__event--type5:after {
  background: #EED9B7;
}

.timeline__event--type5 .timeline__event__date {
  color: #EED9B7;
}

.timeline__event--type5 .timeline__event__icon {
  flex: 0 0 150px;
  background: #5C4B3B   ;
  color: #F5F1E3;
}

.timeline__event--type5 .timeline__event__title {
  color: #5C4B3B   ;
}

.timeline__event:last-child:after {
  content: none;
}

.emotions-slider__item {
  background: #1e1e1e;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.emotions-slider-item__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.emotions-slider-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emotions-slider-item__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.emotions-slider-item__title {
  font-size: 1.5rem;
  font-weight: 600;
}

.emotions-slider-item__text {
  font-size: 1rem;
  opacity: 0.8;
}

/* NAVIGATION */
.slider-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-nav__item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
}


/* COMPETENCES */
#competences-section {
  padding-top: 10px; 
  padding-bottom: 50px;
  padding-left: 120px;
}

#competences-section h2 {
  position: relative;
  font-size: 2em;
  color: #EED9B7;
  font-weight: bold;
  display: inline-block; 
  margin-bottom: 50px;
  left:0px;
  margin-left: 0px; 
}

#competences-section h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%; 
  transform: translateY(-50%);
  width: 100vw; 
  height: 1px;
  background-color: #EED9B7;
  margin-left: 15px;
}

#competences-section h4 {
  position: relative;
  font-family: 'Nunito', sans-serif;
  font-size: 1em;
  color: #000000;
}


/* BARRES DE PROGRESSION */
.progress {
    height: 20px;
    background-color: #f0f0f0; 
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden; /* Pour que la barre suive l'arrondi du fond */
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    max-width: 600px;  /* Limite la longueur totale */
    width: 100%;       /* responsive */
}

.progress-bar {
    height: 100%;
    transition: width 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    font-size: 12px;
}

.progress-bar-success {
    background-color: #EED9B7 !important; 
}

.progress-bar-info {
    background-color: #A9D1D1 !important;
}

.progress-bar-warning {
    background-color: #D4AF37 !important;
}

.progress-bar-danger {
    background-color: #E9967A !important;
}


/* CONTAINER DU CARROUSEL ET DES BARRES */
.competences-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Le Carrousel */
.custom-carousel {
    flex: 1;             
    min-width: 300px;   
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
}

/* Les Barres de progression */
.competences-col {
    flex: 1; 
    min-width: 250px;
}

.carousel-inner, .item {
    height: 100%;
    width: 100%;
}

.item {
	display: none;
    width: 100%;
    height: 100%;
    align-items: center;     
    justify-content: center;
    text-align: center;    
}

.item.active {
    display: flex;
}

.item h4 {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
}

.carousel-control { /* Flèches) */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #EED9B7 !important;
    text-decoration: none;
    z-index: 5;
    padding: 0 15px;
}

.left { left: 0; }
.right { right: 0; }

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 12px;
    padding-left: 0 !important; 
    margin-left: 0 !important;
    margin-right: 0 !important;
    list-style: none; 
    z-index: 10;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border: 2px solid #EED9B7 !important;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: block;
}

.carousel-indicators li.active {
    background-color: #EED9B7 !important;
}

.carousel-content {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    padding: 20px 60px;
}

.slide-logo {
    width: 70px; 
    height: auto;
    margin-bottom: 15px;
}

.item h4 {
    font-size: 2rem !important;
    color: #EED9B7;       
    margin-bottom: 15px;
}

.item p {
    font-size: 1.1rem;
    color: #ffffff;         
    line-height: 1.6;
    max-width: 400px; 
}

.carousel-content h5 {
    font-size: 2.5rem;
    color: #EED9B7;
    margin: 0;
}

/* CARROUSSEL PORTFOLIO*/
#carousel {
    width: 100%;
    max-width: 100vw;
    height: 550px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: transparent;
}

.carousel-image {
    height: 400px;
    position: absolute;
    left: 50%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease-out, filter 0.4s, opacity 0.4s;
}

#carousel {
    display: flex;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: inline-block;
}

/* Bouton de téléchargement */
.tooltip-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-item:hover .tooltip-btn {
    opacity: 1;
}

/* Les flèches */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.arrow {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.carousel-image {
    animation-fill-mode: forwards;
}


/*CARTE AVANT*/

@keyframes mv0to4 {
from { transform: translateX(-50%) translateX(-260px) scale(0.6); z-index:1;}
to   { transform: translateX(-50%) translateX(260px) scale(0.6); z-index:1;}
}

@keyframes mv1to0 {
from { transform: translateX(-50%) translateX(-130px) scale(0.8); z-index:5;}
to   { transform: translateX(-50%) translateX(-260px) scale(0.6); z-index:1;}
}

@keyframes mv2to1 {
from { transform: translateX(-50%) scale(1.1); z-index:10;}
to   { transform: translateX(-50%) translateX(-130px) scale(0.8); z-index:5;}
}

@keyframes mv3to2 {
from { transform: translateX(-50%) translateX(130px) scale(0.8); z-index:5;}
20%  { z-index:10;}
to   { transform: translateX(-50%) scale(1.1); z-index:10;}
}

@keyframes mv4to3 {
from { transform: translateX(-50%) translateX(260px) scale(0.6); z-index:1;}
to   { transform: translateX(-50%) translateX(130px) scale(0.8); z-index:5;}
}

/* CARTE ARRIERE*/

@keyframes mv0to1 {
from { transform: translateX(-50%) translateX(-260px) scale(0.6); z-index:1;}
to   { transform: translateX(-50%) translateX(-130px) scale(0.8); z-index:5;}
}

@keyframes mv1to2 {
from { transform: translateX(-50%) translateX(-130px) scale(0.8); z-index:5;}
20%  { z-index:10;}
to   { transform: translateX(-50%) scale(1.1); z-index:10;}
}

@keyframes mv2to3 {
from { transform: translateX(-50%) scale(1.1); z-index:10;}
to   { transform: translateX(-50%) translateX(130px) scale(0.8); z-index:5;}
}

@keyframes mv3to4 {
from { transform: translateX(-50%) translateX(130px) scale(0.8); z-index:5;}
to   { transform: translateX(-50%) translateX(260px) scale(0.6); z-index:1;}
}

@keyframes mv4to0 {
from { transform: translateX(-50%) translateX(260px) scale(0.6); z-index:1;}
to   { transform: translateX(-50%) translateX(-260px) scale(0.6); z-index:1;}
}


/* Mouvement*/
.mv0to4, .mv1to0, .mv2to1, .mv3to2, .mv4to3, .mv0to1, .mv1to2, .mv2to3, .mv3to4, .mv4to0 { 
    animation-duration: 0.4s; 
    animation-timing-function: ease-out; 
    animation-fill-mode: forwards; 
}
.mv0to4 { animation-name: mv0to4; } .mv1to0 { animation-name: mv1to0; } .mv2to1 { animation-name: mv2to1; } 
.mv3to2 { animation-name: mv3to2; } .mv4to3 { animation-name: mv4to3; } .mv0to1 { animation-name: mv0to1; } 
.mv1to2 { animation-name: mv1to2; } .mv2to3 { animation-name: mv2to3; } .mv3to4 { animation-name: mv3to4; } 
.mv4to0 { animation-name: mv4to0; }

.carousel-controls { text-align: center; margin-top: 20px; }
.arrow { 
    background: #EED9B7; border: 1px solid #EED9B7; color: #2a2a2a; 
    font-size: 1.5rem; padding: 10px 20px; cursor: pointer; border-radius: 5px; margin: 0 10px;
}



/*CARTES*/
#carousel-image-0 {
  transform: translateX(-50%) translateX(-260px) scale(0.6);
  z-index: 1;
}

#carousel-image-1 {
  transform: translateX(-50%) translateX(-130px) scale(0.8);
  z-index: 5;
}

#carousel-image-2 {
  transform: translateX(-50%) scale(1.1);
  z-index: 10;
}

#carousel-image-3 {
  transform: translateX(-50%) translateX(130px) scale(0.8);
  z-index: 5;
}

#carousel-image-4 {
  transform: translateX(-50%) translateX(260px) scale(0.6);
  z-index: 1;
}


/*SECTION CONTACT*/

#contact {
    background-color: #4D2A22;
    margin-left: 0;           
    padding-left: 120px;      
    padding-right: 50px;
    padding-top: 15px;       
    padding-bottom: 100px;
    width: 100vw;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    transition: background-color 0.5s ease;
    margin-top: 60px;
    padding: 60px 50px 100px 120px; 
    min-height: 100vh;    
}

.contact-info-column {
    display: flex;
    flex-direction: column; 
    gap: 30px;              
    margin-left: 25px; 
}

/* Colonne du PDF */
.contact-pdf-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 320px;
}

#contact h2 {
    margin-top: 0;
    color: #EED9B7;
}

.contact-section label {
    color: #EED9B7;
}

.contact-section, 
.contact-info-column, 
.contact-pdf-column {
    display: flex;
    flex-direction: column; 
    flex: 1;                /* Largeur égale aux 3 colonnes */
    gap: 20px;
}

.contact-container {
    display: flex;         /* Met les éléments côte à côte */
    justify-content: flex-start; /* Espacement entre les 3 colonnes */
    align-items: flex-start;
    margin-top: 0px;
    gap: 60px;
    max-width: 100%;
}

.contact-section {
    flex: 1;
    max-width: 400px;
    margin-left: 0px; 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-frame {
    background-color: #4D2A22;
    padding: 25px;
    border-radius: 8px;
    width: 350px;         
    flex-shrink: 0; 
}

.form-control {
    width: 100%;
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    box-sizing: border-box;
}

#contact h2 {
  position: relative;
  font-size: 2em;
  color: #EED9B7;
  font-weight: bold;
  display: inline-block; 
  margin-bottom: 50px;
  left:0px;
  margin-left: 0px;
}

#contact h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 100vw; 
  height: 1px;
  background-color: #EED9B7;
  margin-left: 15px;
}

/* LE FORMULAIRE */
.contact-wrapper {
    max-width: 500px;   
}

.form-control {
    width: 100%;
    padding: 12px;
    background-color: #333; 
    border: 1px solid #EED9B7;
    border-radius: 4px;
    color: white;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* LE BOUTON ENVOYER */
.btn-submit {
    background-color: #EED9B7;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-submit:hover {
    background-color: #dfc8a5;
    transform: translateY(-2px);
}

.info-puce {
    width: 50px;
    height: 50px;
    background-color: #EED9B7;
    border-radius: 50%;        
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    flex-shrink: 0;         
}

.email-icon {
    color: #2a2a2a;          
    font-style: normal;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-details span {
    display: block;
    color: #EED9B7;
    text-transform: uppercase;
    letter-spacing: 1px;
	font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 5px; 
    line-height: 1;
}


.info-details p {		
    margin: 0;
    color: white;
	font-size: 1rem;
    line-height: 1.4;
}

.info-puce {
    width: 50px;
    height: 50px;
    background-color: #EED9B7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-shrink: 0;
}

.puce-logo {
    width: 55%;    
    height: auto;
    display: block;
}

.tel-logo{
	width: 40%;     
    height: auto;    
    display: block;
}

.info-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.download-container {
    margin-top: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}


/* LE BOUTON TELECHARGEMENT */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #EED9B7;
    color: #2a2a2a;   
    padding: 14px 25px;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    text-decoration: none;  
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    text-align: center;
    justify-content: center;
}

.icon-dl {
    font-size: 1.2rem;
}

.btn-download:hover {
    background-color: #dfc8a5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-download:active {
    transform: translateY(-1px);
}

.pdf-preview-container {
    width: 47%;
    height: 293px; 
    background-color: #2a2a2a;
    overflow: hidden;
    border: 1px solid #EED9B7;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top:5px;
}

.pdf-embed {
    height: 100%;
    display: block;
    border: none;
    width: 100%;
}

#scrollTop {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }


/* SECTION LANGUE */

.langue-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.langue-main {
  background: none;
  border: none;
  color: white;
  font-size: 20px; 
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.langue-options {
  position: absolute;
  left: 80px; 
  display: flex;
  gap: 15px;
  pointer-events: none;
  z-index: 1000; 
}

.bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #EED9B7;
  color: white !important;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-size: 1px;
  opacity: 0;
  transform: scale(0); 
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.langue-container.show-languages .langue-options .bubble {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.bubble.en {
  transition-delay: 0.1s;
}


/* === FOOTER === */
#fin {
  background-color: white;
  text-align: center;
  padding: 10px 0;
}

#fin .ligne {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9em;
  color: #333;
}

#fin p {
  margin: 2px 0;
  line-height: 1.2;
}


#fin .droits {
  margin-top: 5px;
}



