@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-style: 16px;
  background-color: #EEE6D8;
  color: #141414;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #93441A;
}

header {
  background-color: #DAAB3A;
  text-align: center;
  padding: 2rem;
}
header nav ul {
  list-style: none;
  font-weight: bold;
  display: flex;
  justify-content: space-around;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    align-items: center;
  }
}
header nav ul li a {
  color: #93441A;
  text-decoration: none;
}
header nav ul li a:hover {
  color: #B67332;
}

footer {
  background-color: #DAAB3A;
  color: #141414;
  text-align: center;
  padding: 1.5rem;
}
footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
footer ul li a {
  color: #141414;
  text-decoration: none;
}

main {
  padding: 32px 16px;
}
main section {
  margin-bottom: 5rem;
}
main section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
main section h2 {
  margin-bottom: 1.5rem;
  color: #B67332;
}
main section h3 {
  margin-bottom: 1rem;
  color: #141414;
}
main section a {
  color: #93441A;
  text-decoration: none;
}
main section a:hover {
  color: #B67332;
}
main #accueil {
  text-align: center;
}
main #accueil img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
main #accueil h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
main #accueil h3 {
  font-size: 1.25rem;
  color: #DAAB3A;
}
main #accueil .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #93441A;
  color: #fff;
  border-radius: 8px;
  transition: background-color 0.3s;
}
main #accueil .btn:hover {
  background-color: #683012;
}
main #apropos {
  text-align: center;
}
main #apropos p {
  line-height: 1.6;
  color: #141414;
}
main #competences {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main #competences h2 {
  text-align: center;
}
main #competences ul li {
  list-style: none;
  background-color: #EEE6D8;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 2rem);
  text-align: center;
  margin: 8px;
}
main #competences p {
  text-align: center;
  margin-top: 1.5rem;
  color: #141414;
  font-weight: bold;
}
main #projets h2 {
  text-align: center;
  margin-bottom: 2rem;
}
main #projets .projets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
main #projets .projets-grid .projet-card {
  background-color: #EEE6D8;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
main #projets .projets-grid .projet-card img {
  max-width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
main #projets .projets-grid .projet-card h3 {
  margin-top: 0.5rem;
  color: #93441A;
}
main #projets .projets-grid .projet-card p {
  color: #141414;
  margin-bottom: 8px;
}
main #projets .projets-grid .projet-card .btn-secondaire {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #DAAB3A;
  color: #fff;
  border-radius: 8px;
  transition: background-color 0.3s;
}
main #projets .projets-grid .projet-card .btn-secondaire:hover {
  background-color: #bd9024;
}
main #contact form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main #contact form input, main #contact form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}
main #contact form button {
  padding: 8px;
  background-color: #93441A;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
main #contact form button:hover {
  background-color: #683012;
}

button {
  background-color: #DAAB3A;
  color: #141414;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background-color: #683012;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
form input, form textarea {
  padding: 1rem;
  border: 1px solid #DAAB3A;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
}

#accueil {
  text-align: center;
}
#accueil img {
  width: 200px;
  border-radius: 50%;
  margin-bottom: 16px;
}
#accueil h3 {
  font-size: 2.5rem;
}

#about {
  max-width: 80%;
  margin: 0 auto;
  font-size: 16px;
}
#about p {
  margin-bottom: 8px;
}/*# sourceMappingURL=style.css.map */