/* START UTILS RULE */

html, body {
    height: 100%;
    margin: 0;
}

body {
  font-family: "Montserrat", sans-serif;
}

.row {
  margin-left: 0;
  margin-right: 0;
  height: 100%;
}

.container-fluid {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* END UTILS RULE */

/* START LEFT SECTION RULE */

.left {
  background: #161616;
  padding: 30px 30px;
}
.left-box {
  padding: 15px 0;
}
.left h2 {
  font-size: 24px;
  color: gray;
  text-transform: uppercase;
}
.left h3 {
  color: lightgray;
  font-size: 17px;
}
.left ul {
  padding: 0 0 0 10px;
}
.left ul li {
  list-style: none;
}
.left .social {
  color: lightgray;
  padding: 0 5px;
}
.left .atout {
  padding: 0 5px;
  font-size: 12px;
  color: #f79816;
}
.left a {
  color: #F8A32F;
}
.left a:hover {
  color: #fab960;
  text-decoration: none;
}

.left-box ul li a {
    display: inline-block;
    margin-bottom: -20px; /* Reduce margin below the email link */
}

.left-box ul li a[href="mailto:contact@evanroyer.fr"] {
    display: inline-block;
    position: relative; /* Allow negative margins to take effect */
    margin-bottom: -200px !important; /* Apply negative margin */
}

.privacy-title {
  color: #F8A32F;
  font-size: 22px; 
  margin-top: 20px; 
}
.privacy-title:first-of-type {
    font-size: 24px; /* Etudiant a CESI */
    margin-top: 10px; /* Diminue légèrement la marge au-dessus de 'Etudiant à CESI Dijon' */
}
.privacy-avatar {
  border-radius: 25px;
  width: 92px;
  height: 92px;
  margin: 10px 0;
}
.privacy-description {
  color: #F8A32F;
  font-size: 16px;
  padding-top: 10px;
  text-align: justify;
  margin-top: 10px; /* Augmente légèrement la marge en haut */
  margin-bottom: 10px; /* Augmente légèrement la marge en bas */
}
h1 {
  color: #F8A32F;
  font-size: 35px;
  font-weight: bold;
}
.privacy-description em {
  color: #F8A32F;
  font-size: 15px;
}

.skills img,
.language img {
  height: 64px;
  width: 64px;
  margin: 10px 0;
}

.left-box ul li {
    color: rgb(248, 163, 47); 
    font-size: 18px; 
}
.left-box ul li i {
    color: rgb(248, 163, 47); 
}
.privacy-description ul li {
    font-size: 18px; 
}

/* Espacement plus grand entre les lignes d'Atouts */
.left-box ul.atouts li {
    margin-bottom: 5px; /* Ajuste la valeur selon ton goût */
}

/* Réduit l'espacement sous "Me contacter" */
.left-box:nth-of-type(2) {
    padding-bottom: 5px !important;
}

/* Réduit l'espacement au-dessus de "Langues" */
.left-box.language {
    padding-top: 4px !important;
}

/* END LEFT SECTION RULE */

/* START RIGHT SECTION RULE */
.right {
  background: #202020;
  color: #E5E5E5;
  padding: 30px 30px;
}
.right-box {
  padding: 20px 0;
}
.right h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #F8A32F;
  text-transform: uppercase;
}

.experience {
  padding: 8px 0;
  font-size: 17px; /
}
.experience a {
  color: #F8A32F;
  font-style: italic;
}
.experience a:hover {
  color: #f79816;
  text-decoration: none;
}
.experience a .fas {
    margin-left: 5px; /* Ajoute une marge uniquement aux flèches */
}

.projet li {
  list-style: none;
}
.projet-img {
  margin: 15px 0;
  width: 64px;
  height: 64px;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.projet-img:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.badge {
  margin-right: 5px;
}

.formation {
  padding: 2px 0;
  font-size: 17px; 
}
.software {
  width: 75px;
  height: 75px;
  padding: 10px;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.software:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
