/* Réinitialisation de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

/* Styles de la navbar */
.navbar {
  background-color:#2a389d;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

.navbar h1 {
  font-size: 2.5rem;
}

.navbar nav ul {
  list-style: none;
  padding: 0;
}

.navbar nav ul li {
  display: inline-block;
  margin: 0 20px;
}

.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.navbar nav ul li a:hover {
  color: #193812;
}

/* Section Présentation */
.section {
  padding: 50px 0;
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.1);
}

.info {
  max-width: 600px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Section Projets */
.project {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project:hover {
  transform: scale(1.05);
}

.project h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.project p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.project .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2a9d8f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.project .btn:hover {
  background-color: #e9c46a;
}

.project-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Section Contact */
form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 10px 20px;
  background-color: #2a9d8f;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #e9c46a;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .profile-img {
    width: 120px;
    height: 120px;
  }

  .navbar h1 {
    font-size: 2rem;
  }

  .project {
    width: 80%;
  }

  .project-img {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .navbar nav ul li {
    display: block;
    margin: 10px 0;
  }

  .profile-img {
    width: 100px;
    height: 100px;
  }

  .section {
    padding: 30px 0;
  }
}
