/* Styles for entire site, including the timeline */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

body {
  font-family: 'Merriweather', serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
}

h1, h2, h3 {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 700 !important;
}

a {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 700 !important;
}

ul, button {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 400 !important;
}

p {
  font-family: 'Merriweather', serif !important;
  font-weight: 400 !important;
}

.timeline li {
  position: relative;
  list-style-type: none;
  margin: 20px 0;
}

.timeline .content {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Barre de recherche */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #3182ce;
  padding: 20px 0;
}

.search-bar {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.search-input {
  width: 70%;
  padding: 10px;
  border-radius: 5px 0 0 5px;
  border: none;
  outline: none;
}

.search-button {
  width: 30%;
  padding: 10px;
  background-color: #91c1f9;
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.search-bar:hover .search-input {
  background-color: #ffffff;
}

.search-bar:hover .search-button {
  background-color: #6ca8db;
}

/* Background du site */
body {
  background-color: #f3f4f6; /* Couleur de fond générale */
}

/* CSS pour la page d'accueil */
#home_section {
  padding-top: 10.5rem;
  padding-bottom: 6rem;
  text-align: center;
  color: #00153b;
  background-image: url("../../assets/images/background.jpg");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#home_section h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

#home_section p {
  font-size: 18px;
  margin-bottom: 20px; /* Réduisez la marge entre le texte et le bouton */
}

#home_section img {
  width: 200px; /* Ajustez la taille de l'image selon vos besoins */
  height: 200px;
  border-radius: 50%; /* Pour créer une forme ronde */
}

#home_section a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3182ce;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#home_section a:hover {
  background-color: #2c5282;
}

/* CSS pour les mini-tableaux transparent */
.spacer-table {
  width: 172px; /* Largeur du tableau transparent */
  height: 100%; /* Hauteur du tableau transparent (par défaut prend la hauteur des mini-tableaux) */
  background-color: transparent; /* Couleur de fond transparente */
}

/* CSS pour les mini-tableaux */
.mini-table-container {
  display: inline-block;
  margin-right: 20px; /* Ajoute un espace de 20 pixels entre les mini-tableaux */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-table-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.mini-table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin-top: 10px;
}

.mini-table td {
  padding: 8px 12px;
  border: 1px solid #ccc;
}

/* CSS pour les logos */
.logo {
  width: 100px; /* Ajustez la taille selon vos besoins */
  display: block;
  margin: 0 auto 10px; /* Centrez le logo et ajoutez un espace en bas */
}

/* Style pour la section blog */
#blog_section {
  padding: 50px 0;
}

.blog-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-image {
  margin: 20px;
  text-align: center;
  cursor: pointer;
}

.blog-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-image h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

/* Effet de zoom au survol */
.blog-image:hover img {
  transform: scale(1.05);
}

/* Ajout de styles pour limiter la taille de l'image */
.scaled-image {
  max-width: 100%;
  height: auto;
  max-height: 200px; /* Ajustez la taille maximale de l'image selon vos besoins */
}

/* CSS pour la page de contact */
#contact_section {
  padding: 6rem 0;
  text-align: center;
}

#contact_section h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

#contact_section p {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}


<style>
    .linkedin-button {
        display: inline-block;
        background-color: #0077B5;
        color: rgb(230, 0, 0);
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .linkedin-button:hover {
        background-color: #005682;
    }
</style>