/* Galerie d'images */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Section des technologies */
.tech-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.tech-item {
  text-align: center;
  width: 80px;
}

.tech-logo {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}
.project-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Bouton */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #007bff;
  color: white;
  font-size: 18px;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
  transform: translateY(-5px);
}
/* Header */
.header {
  width: 100%;
  background-color: #343a40;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: inline;
}

.nav-link {
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff;
}

/* Espacement pour le contenu sous le header */
body {
  padding-top: 70px; /* Ajuste cette valeur selon la hauteur du header */
}
