* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  background-color: rgb(180, 133, 30);
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
header {
  background-color: rgb(4, 4, 24);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

/* LOGO */
.logo02 {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-top: 12px;
  margin-right: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo02:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* NAVIGATION */
nav ul {
  display: flex;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  gap: 40px;
}

nav ul li a {
  text-decoration: none;
  color: aliceblue;
  padding: 10px 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: white;
  color: black;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* TITRES */
h1 {
  font-size: 40px;
  margin: 20px 0;
  color: aliceblue;
  text-align: center;
}

h2 {
  font-family: 'Lucida Sans', sans-serif;
  font-size: 35px;
  margin-bottom: 15px;
  color: #111314;
}

h3 {
  font-size: 40px;
  font-family: 'Times New Roman', Times, serif;
  margin-top: 15px;
  color: #4a4a4a;
}

/* SECTION */
section,
.container {
  display: block;
  margin: 20px auto;
  text-align: center;
  padding: 15px;
}

/* CARTES */
.card {
  font-size: 20px;
  background-color: #fff;
  padding: 20px;
  margin: 20px auto;
  border-radius: 25px;
  max-width: 1000px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* FORMULAIRES */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  max-width: 700px;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #2a6f97;
  outline: none;
}

/* BOUTONS */
button {
  background-color: #2a6f97;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  max-width: 300px;
}

button:hover {
  background-color: #1e4d6b;
  transform: scale(1.05);
}

/* LIENS */
a {
  display: inline-block;
  margin-top: 15px;
  color: #2a6f97;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: #1e4d6b;
}

/* CONTACT */
.contact-info {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  color: #333;
  border-radius: 20px;
  max-width: 900px;
}

.contact-info a {
  color: rgb(180, 133, 30);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
  color: white;
}

/* FOOTER */
footer {
  background-color: #efeff1;
  color: #333;
  padding: 40px 20px;
  margin-top: 50px;
  border-top: 4px solid rgb(180, 133, 30);
}

.footer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  text-align: justify;
}

.footer-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 25px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  border: 2px solid rgb(180, 133, 30);
}

.footer-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.footer-text h3 {
  font-size: 22px;
  color: rgb(180, 133, 30);
  margin-bottom: 5px;
}

.poste {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.copy {
  margin-top: 20px;
  font-size: 14px;
  color: #bbb;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    margin: 10px 0;
  }

  nav ul li {
    margin: 20px 0;
  }

  .logo02 {
    margin-right: 0;
    margin-bottom: 10px;
  }

  h1 { font-size: 35px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }

  .logo01 { width: 90%; }

  .card { padding: 15px; margin: 10px; }

  button { width: 90%; }

  .container, .contact-info { padding: 20px; margin: 20px; }
}