/* Style général */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f5;
  color: #333;
}

header {
  background-color: #2c3e50;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 400;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
}

main {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

#about-me {
  text-align: center;
  margin-bottom: 4rem;
}

#projects h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #2c3e50;
}

/* Projets */
.project-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.project-image {
  width: 100%;
  max-width: 1200px;
  height: 300px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.75rem;
  color: #2c3e50;
  margin-top: 0;
}

.project-content p {
  margin: 0.5rem 0;
}

.project-content strong {
  color: #34495e;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
  .project-card {
    margin-bottom: 2rem;
  }

  #projects h2 {
    font-size: 1.75rem;
  }
  .project-image {
    height: 200px; /* Réduit la hauteur pour les écrans moyens */
  }

  .project-image img {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .project-content h3 {
    font-size: 1.5rem;
  }

  #about-me p {
    font-size: 1rem;
  }
  .project-image {
    height: 150px; /* Réduit encore plus la hauteur pour les petits écrans */
  }

  .project-image img {
    height: 100%;
  }
}
