html {
    /*background-color: #18181b;*/
    background-color: #121314;
    padding: 0px;
    margin: 0px;
}

* {
    margin: 0;
    /*border: solid 1px red;*/
}

:root{
    --bg: #f4f5f7;
    --badge-bg: #16181d;
    --badge-text: #f4f5f7;
    --icon-bg: #ffffff;
    --icon-color: #16181d;
    --title-color: #16181d;
    --gap: 14px;
  }

p {
    color: #FFFFFF;
    font-family: inter;
}

h1 {
    color:#FFFFFF;
    font-family: inter;
    font-size: 50px;
    letter-spacing: 0.5px;

}

h2 {
    color:#FFFFFF;
    font-family: inter;
    letter-spacing: 0.5px;
}

h3 {
    color:#FFFFFF;
    font-family: inter;
    letter-spacing: 0.5px;
}

body {
    display: block;
    /*padding: 0px 60px;*/
    width: auto;
    height: auto;
    
}

/*-------------------------------------*/




/* NAV */

nav{ 
    display: flex;
    justify-content: space-between;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 30px 60px;
    letter-spacing: 0.5px;

}

.navbar div a{
    text-decoration: none;
}

.nav-logo {
    font-size: 56px;
    color:#FFFFFF;
    font-family: inter;
    border-bottom: 5px orangered solid;
}

.nav-link a{

    font-size: 16px;
    color: orangered;
    font-family: inter;
    margin: 10px;
}

.nav-link a:hover{
    border-bottom: 1px #FFFFFF solid;
}

.lig01{
    border-bottom:1px #FFFFFF solid;
}


/*-------------------------------------*/



/*Acceuil*/

.acceuil{
    display: flex;
    justify-content: space-between;
    padding: 0px 60px;
    padding-top: 30px;
    height: 400px;
}

.language{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 140px;
    height: 90%;

    padding: 10px;
    margin-left: 40px;

    border-left: 2px solid white;
    border-right: 2px solid white;
    border-radius: 10px;
}
.acceuil h2 {
    margin: 15px 15px;
}

.tools{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    left: 6%;
    width: 140px;
    height: 90%;

    padding: 10px;
    margin-right: 40px;

    border-left: 2px solid white;
    border-right: 2px solid white;
    border-radius: 10px;

}

.timelines {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 60px 30px;
}

.skill{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 265px;

}


/*-------------------------------------*/



/*footer*/

footer {
    width: 100%;
    height: 40px;
    margin: 0px;
    padding: 0px 0px;
    border-top: #FFFFFF 2px solid;
    align-content: center;
}

.foot{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 50px;
}

/*-------------------------------------*/




/*projet*/

.projet{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-bottom: 20px;
}

.projet div {
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 380px;
    align-items: center;
    margin-top: 50px;

    border: 1px orangered solid;
    border-radius: 10px;
}


/*-------------------------------------*/


/*------------Badge-----------------*/

  .container{
    max-width: 920px;
    margin: 0 auto;
  }

  .section-title{
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--title-color);
    margin: 0 0 18px 0;
  }

  .badge-grid{
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--badge-bg);
    color: var(--badge-text);
    padding: 12px 20px 12px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    width: 100px;
    transition: transform .15s ease, box-shadow .15s ease;

    font-family: inter;
    letter-spacing: 0.5px;
  }

  .badge:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.18);
  }

  .badge-icon{
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--icon-bg);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* variante : icône simple en SVG plutôt qu'en texte */
  .badge-icon svg{
    width: 16px;
    height: 16px;
  }

/*-------------------------------------*/



/*Timeline*/

.timeline {
    position: relative;
    width: 100%;
    height: 4px;          /* même hauteur que la ligne */
    margin-top: 60px;      /* pour laisser de la place aux labels au-dessus */
    margin: 0 auto;

    font-family: inter;
    letter-spacing: 0.5px;
}

.timeline-line {
  width: 100%;
  height: 4px;
  background-color: orangered;
  border-radius: 2px;
}

.tick {
  position: absolute;
  top: 0;
  transform: translateX(-50%); /* centre le trait sur son point */
}

.tick-mark {
  width: 2px;
  height: 110px;           /* dépasse au-dessus et/ou en dessous de la ligne */
  background-color: orangered;
  margin: 0 auto;
  position: relative;
  top: -50px;              /* remonte le trait pour qu'il traverse la ligne */


}


.tick-label {
  position: absolute;
  bottom: 16px;           /* place le texte au-dessus du trait */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 14px;
  color:#FFFFFF;
  font-family: inter;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.tick:nth-of-type(odd) .tick-label {
  top: 50%;
  margin-top: 8px;
}

.tick:nth-of-type(even) .tick-label {
  bottom: 150%;
  top: auto;
  margin-bottom: 8px;
}


/*-------------------------------------*/


/* Projet CSS */

.place{
    display: flex;
    justify-content: center;
    color:#FFFFFF;
    height: 725px;
    /*min-height: 79svh;*/
}

.grid {
    display: grid;
    grid-template-columns: auto auto;
    width: 100%;
    gap: 50px;
    padding: 30px;
}
.grid-cell{
    text-align: center;
    align-content: center;
    border: 1px solid rosybrown;
    padding: 15px;

}
/*-------------------------------------*/



/* Contact CSS */



/*-------------------------------------*/

