/*couleur css nouveau
fond d'ecran css nouveau background-color: #0F172A; noir
texte css nouveau color: #F1F5F9; blanc
liens css nouveau background: linear-gradient(90deg, #3B82F6, #2563EB); bleu
font family pour les titres  'Poppins', sans-serif 
font family pour le corps  'Inter', sans-serif
*/ 
 
/*========
  Style CSS Education et Experience 
  ========*/
#Parcour {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

/* --- Titres principaux --- */
#Parcour h2.tit {
    font-size: 2.5em;
    color: #F1F5F9; 
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #3B82F6;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* --- Sous-sections --- */
#Parcour h3 {
    font-size: 1.8em;
    color: #3B82F6;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

#Parcour h4 {
    font-size: 1.3em;
    color: #00bfff;
    margin-top: 25px;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

/* --- Texte et paragraphes --- */
#Parcour p, #Parcour span {
    line-height: 1.6;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
}

#Parcour span a {
    color: #3B82F6;
    text-decoration: none;
     font-family: 'Inter', sans-serif;
}

#Parcour span a:hover {
    text-decoration: underline;
     font-family: 'Inter', sans-serif;
}

/* --- Listes --- */
#Parcour ul {
    margin-left: 20px;
    margin-top: 10px;
    list-style-type: square;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
}

#Parcour li {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

/* --- Sections technologies --- */
#Parcour section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

#Parcour section p {
    background-color: #3B82F6;
    color:#F1F5F9;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: bold;
     font-family: 'Inter', sans-serif;
}
#Parcour section p:hover
{ background: linear-gradient(90deg, #3B82F6, #2563EB);
  border-radius: 20px;
  transition: all 0.5s ease;
  font-size: large;
  color: #F1F5F9;
}

/* --- Divisions principales --- */
.ps, .pp {
    background-color: #141b27; 
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}


/* Github Experience*/
#github a{
                text-decoration: none;
                color: #F1F5F9;
              }




 
/* =========================
   STYLES CSS FOND ECRAN 
========================= */
 body{
            background-color: #0F172A;
            background-repeat:no-repeat ;
            background-size: cover;
            overflow: scroll;
            color:#F1F5F9;
        }


/* ==============
    STYLES CSS HEADER ET NAVIGATION
================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0F172A; /* noir bleu profond */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}



.header h1 {
  
    font-size: 20px;
    color: #F1F5F9;
    align-items: center; 
    padding: 10px 20px; 
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.nav ul{
  display:flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
 
}
.nav a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  color: #F1F5F9;
  padding:5px 10px;
  font-size: 16px;
}
.nav a:hover {
  color:#2563EB ;
  transition: all 0.5s ease;
  font-size: 18px;
  border-bottom: 1px solid #2563EB;
}
#a-link:hover{
  background: linear-gradient(90deg, #3B82F6, #2563EB);
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.5s ease;
  font-size: large;
  color: #F1F5F9;
}
.header h1:hover{
    color:#2563EB ;
    transition: all 2s;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);

}








/*<====

CSS HERO SECTION Page d'accueil


=====>*/


.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 350px 250px;
  font-family: 'Poppins', sans-serif;
  color: #F1F5F9;
  gap: 40px;
}


.hero img {
  width: 500px;
  height: 500px;
  border-radius: 5px;
  object-fit: cover;
  margin-top: 20px;
  margin-right: 100px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero h2 {
  font-size: 45px;
  font-weight: 500;
  color: #F1F5F9;
  margin-bottom: 20px;

  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #3B82F6; 
  animation: typing 2.5s steps(30, end) forwards, blink 0.75s step-end infinite;
}

/* Animation écriture */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; } 
}

/* Curseur qui clignote */
@keyframes blink {
  50% { border-color: transparent; }
}

/* Animation différée pour chaque ligne */
.hero h2:nth-child(1) { animation-delay: 0s; }
.hero h2:nth-child(2) { animation-delay: 2.5s; }
.hero h2:nth-child(3) { animation-delay: 5s; }


.social-media {
  display: inline-block;
  margin: 5px 10px;
  padding: 8px 15px;
  background: linear-gradient(to right, #57daf1, #2563EB);
  border-radius: 20px;
  text-decoration: none;
  color: #F1F5F9;
  font-weight: 600;
  transition: 0.3s;
}

.social-media:hover {
  transition: all 0.5s ease;
  font-size: large;
  background: linear-gradient(to right, #57daf1, #2563EB);
  color: #F1F5F9;
  transform: scale(1.05);
}




/*============
 CSS "about” page à propos de moi
 ============= */
#About {
margin: auto;
padding: 100px 50px;
background: linear-gradient(135deg, #1f2937, #111827);
color: #F1F5F9;
font-size: 18px;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
border-radius: 25px;
width: 1300px;
font-family: 'poppins', sans-serif;
}


#About .Skill {
  border-bottom: 2px solid #3B82F6;
  padding-bottom: 10px;
  padding-top: 1px;
}

/* Liens */
.gras{
  text-decoration: none;
  color:#F1F5F9;
  font-weight: 600;
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.3s ease;
}

.gras:hover{
    color: #F1F5F9;
    width: 100px;
    font-size: 20px;
    font-family: 'inter', sans-serif;
    transition: all 2s;
}
.gras:active{
    color: #F1F5F9;
    width: 100px;
    font-family: 'inter', sans-serif;
    transition: all 2s;

}
.gras:visited{
    color: #3B82F6;
    border-bottom:1px solid #3B82F6;
    width: 100px;

}
/* 
   BOUTONS CV
   */
.cv-buttons {
  text-align: center;
  margin-top: 30px;
}

.cve {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  padding: 12px 28px;
  margin: 0 10px;
  border-radius: 25px;
  
  
}
.cve:hover {
   background: linear-gradient(135deg, #6a9cee, #2563EB);;
  font-size: 15px;
  padding: 14px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: all 0.6s ease;
}


/*===========
    Style css Skill Page Competence
  ===========*/

#Skill-code, #Skill-tools {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

/* --- Titres principaux --- */
h2.Skill {
    font-size: 2.8rem;
    color: #F1F5F9;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* --- Grille de compétences --- */
.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* --- Cartes individuelles --- */
.skill {
    background-color: #141b27;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    width: 120px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 144, 255, 0.6);
}

/* --- Icônes --- */
.skill img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* --- Nom --- */
.skill .span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* --- Catégorie --- */
.skill h2 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #F1F5F9;
    font-family: 'Poppins', sans-serif;
    
}

.span {
  font-size: 18px;       
  font-weight: 600;        
  color: #F1F5F9;           
  margin-top: 8px;          
  text-align: center;       
  display: block;    
  font-family: 'Inter', sans-serif;       
}












/*============
    Page project
    ============*/
#Projects {
  padding: 100px 20px;
  max-width: 1300px;
  margin: auto;
}

/* Titre */
#Projects .Skill {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 70px;
  color: #F1F5F9;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

#Projects .Skill::after {
  content: "";
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3B82F6, #2563EB);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}
/*Texte en bas image*/
  #desc{
    font-family: 'Inter', sans-serif;
    font-weight: bold;
  }

/* =========================
   GRILLE DES PROJETS
========================= */
#Projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 50px 20px;
}

/* =========================
   CARTE PROJET
========================= */
.bloc {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bloc:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 55px rgba(0, 153, 255, 0.6);
}

/* =========================
   LIEN TITRE
========================= */
.project-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F1F5F9;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.project-link:hover {
  color: #3B82F6;
  font-size: 1.5rem;
}

/* =========================
   IMAGE PROJET
========================= */
.imgs {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bloc:hover .imgs {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* =========================
   DESCRIPTION
========================= */
.bloc p {
  color: #F1F5F9;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  #Projects {
    gap: 25px;
  }
  .imgs {
    height: 170px;
  }
  .project-link {
    font-size: 1.25rem;
  }
  .bloc p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  #Projects {
    padding: 40px 10px;
    gap: 20px;
  }
  .bloc {
    padding: 20px;
  }
  .project-link {
    font-size: 1.2rem;
  }
}
/*=========
SUITE DU BLOC LES FILTRE
=====================*/
.filters {
  text-align: center;
  margin-bottom: 40px;
}

.filters a {
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  color: #F1F5F9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.filters a:hover {
  background: #3B82F6;
  .filters button {
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  color: #F1F5F9;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filters button:hover {
  background: #3B82F6;
}
}













/*====================
 CSS Contact et Avis
 ==================*/


  /* Titre */
#Contact {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #F1F5F9;
}


.contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 20px;
}
/* CONTAINER */

.contact-container{
    display:flex;
    justify-content:center;
}


/* FORMULAIRE */

.contact,
.review-form{
    max-width:600px;
    width:100%;
}


/* LABEL */

label{
    display:block;
    margin-top:15px;
    margin-bottom:5px;
    font-size:14px;
}


/* INPUTS */

input,
textarea,
select{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #1E293B;
    background-color:#1E293B;
    color:#F1F5F9;
    font-family:'Inter', sans-serif;
}


/* FOCUS INPUT */

input:focus,
textarea:focus,
select:focus{
    outline:none;
    border:1px solid #3B82F6;
    box-shadow:0 0 5px #3B82F6;
}


/* TEXTAREA */

textarea{
    resize:none;
}


/* BUTTON */

button{
    margin-top:20px;
    padding:12px 20px;
    border:none;
    border-radius:30px;
    font-size:15px;
    font-weight:500;
    color:white;
    cursor:pointer;
    background:linear-gradient(90deg, #3B82F6, #2563EB);

    
}


/* BUTTON HOVER */

button:hover{
    transform:scale(1.05);
    opacity:0.9;
}


/* FIELDSET */

.review-box{
    border:2px solid #3B82F6;
    border-radius:12px;
    padding:30px;
    max-width:600px;
    margin:50px auto;
}


/* LEGEND */

legend{
    font-family:'Poppins', sans-serif;
    padding:5px 15px;
    font-size:18px;
}


/* RADIO */

input[type="radio"]{
    width:auto;
    margin-right:6px;
}


/* SECTION CONTACT */

#Contact{
    margin-top:80px;
}


/* SECTION AVIS */

#avis{
    margin-top:100px;
}

/* SECTION MUSIQUE */
#musique{
  text-align: center;
}
.mis{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:40px;
}
.mis div{
  background-color: #4262f0;
  border-radius: 20px;
  padding:20px;
  margin-top:20px;
  margin-bottom: 20px;
  width: 200px;
}
.mis div:hover{
  transform:translateY(-8px);
    box-shadow:0 10px 20px rgba(0,0,0,0.4);
}

.img-music{
  width: 100%;
  margin-bottom: 15px;
  height: 100;
  object-fit: cover;
}

.title-music{
  font-family:'Poppins', sans-serif;
    font-size:18px;
    margin-bottom:5px;
 
}
.sp{
    display:block;
    font-family:'Inter', sans-serif;
    font-size:14px;
    margin-bottom:15px;
    color:#94A3B8;
}
.mis a{
  display: inline-block;
  background-color: #3B82F6;
    color:#F1F5F9;
    padding: 7px 15px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}
.mis a:hover{
    transform:scale(1.05);
    opacity:0.9;
}

/*Rapport de stage */
  .rdt p a {
  position: relative;
  color: #F1F5F9;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold;
}

.rdt p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #38BDF8;
  transition: width 0.3s ease;
}

.rdt p a:hover {
  color: #38BDF8;
}

.rdt p a:hover::after {
  width: 100%;
}









