html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  background-image: url('./pi.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Pour que l'image reste visible au scroll */
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 40px;
  box-sizing: border-box;
}


.app-container {
  background-color: #ffffffd6;
  border-radius: 8px;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: fit-content;
}

.app-header {
  text-align: center;
}

.logo-container {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.logo-container img {
  max-width: 120px;
  height: auto;
}

.app-body {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-info p {
  color: #777;
  font-size: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.contact-detail i {
  font-size: 22px;
  color: #006837;
  min-width: 30px;
}

.contact-detail b {
  display: block;
  font-weight: bold;
  color: #222;
}

.contact-detail span {
  color: #444;
  font-size: 14px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-form p {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-form form .form-control {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  color: #222;
}

.text-danger {
  color: #F1416C !important;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #006837;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  background-color: #006837;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #004d28;
}
