/* Style général */

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
}

/* Conteneurs Flexbox */

.container-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 20px;
  height: calc(100vh - 40px);
}

/* Styles pour le formulaire de contact (Contact à droite, Image à gauche) */

.contact-form, .devis-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Styles communs pour les titres, champs de formulaires, et boutons */

.devis-form h2, .contact-form h2 {
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.devis-form input, .devis-form select, .devis-form textarea, .contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.devis-form textarea {
  height: 100px;
  resize: vertical;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.devis-form button, .contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

.devis-form button:hover, .contact-form button:hover {
  background-color: #555;
}

.section-heading-lower {
}

@media (min-width: 300px) {
  .section-heading {
    width: 100%;
  }
}

@media (min-width: 300px) {
  .section-heading-lower {
    font-size: 27px !important;
  }
}

@media (min-width: 300px) {
  .bg-faded.section-heading-lower {
    margin: auto;
  }
}

@media (min-width: 300px) {
  #mainNav {
    display: flex;
  }
}

.index {
  background: linear-gradient(rgba(47, 23, 15, 0.65), rgba(47, 23, 15, 0.65) 27%, rgba(47,23,15,0.65) 30%), url("assets/img/berlin-city-palace-2837869_1920.jpg"), rgba(255,189,88,0);
}

/* Style du pop-up */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* btn condition*/
@media screen and (max-width: 600px) {
  .btnCondition {
    display: block;
    margin: 0 auto;
  }
}





 