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

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 550;
  line-height: 1.6;
  background-color: #1C1C1C;
  color: #fff;
  font-size: 1.2em;
}

header {
  min-height: 30%;
  max-height: 60%;
  background: url("/imgHeader.jpeg") no-repeat center center;
  background-size: cover;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #1bc51b;
  margin-bottom: 30px;
}
header .image-container {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  width: 60%;
  line-height: 1;
}
@media (max-width: 1178px) {
  header .image-container {
    width: 50%;
  }
}
header .image-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
header h1 {
  color: white;
  background-color: rgba(182, 9, 9, 0.9);
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
  margin-top: 20px;
  font-size: 1.3em;
}

main {
  flex: 1;
  padding-bottom: 60px;
}
main .contact {
  text-align: center;
}
main button {
  background: #b60909;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.5em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
main button:hover {
  background: #850707;
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
main button:active {
  background: #6d0505;
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

h3 {
  text-align: center;
}

h2 {
  font-size: 1.7em;
  text-transform: uppercase;
}

p {
  text-align: center;
}

.services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.services .lavage-main, .services .decalaminage {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.lavage-main h2 {
  text-align: center;
  color: #1bc51b;
}
@media (max-width: 768px) {
  .lavage-main h2 {
    font-size: 1.6em;
  }
}
.lavage-main h3 {
  text-align: center;
  font-size: 0.8em;
}
.lavage-main .offre-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 auto;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #1bc51b;
}
.lavage-main .offre-table th, .lavage-main .offre-table td {
  border: none;
  text-align: center;
  background-color: white;
  color: black;
  padding: 8px 6px;
}
.lavage-main .offre-table td:first-child {
  width: 45%;
  font-size: 1em;
  padding-left: 4px;
  padding-right: 2px;
}
.lavage-main .offre-table td.included, .lavage-main .offre-table td.excluded {
  padding-left: 2px;
  padding-right: 2px;
}
.lavage-main .offre-table td[colspan="4"] {
  font-weight: bold;
  background-color: #f0f0f0;
  padding: 5px;
  text-align: center;
}
.lavage-main .offre-table th {
  background-color: #b60909;
  color: white;
  font-weight: bold;
  padding: 8px 4px;
}
.lavage-main .offre-table th .price {
  display: block;
  margin-top: 5px;
  font-size: 0.9em;
  font-weight: normal;
}
.lavage-main .offre-table td.included {
  background-color: #b60909;
  color: white;
}
.lavage-main .offre-table td.excluded {
  background-color: white;
  color: #b60909;
  font-weight: bold;
  font-size: 1.5em;
  text-shadow: 0px 0px 1px #000;
}
.lavage-main .offre-table td input {
  width: 20px;
  height: 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .offre-table {
    font-size: 0.8em;
    max-width: 95%;
    border-width: 2px;
  }
  .offre-table th, .offre-table td {
    padding: 6px 3px;
  }
  .offre-table th .price {
    margin-top: 5px;
    font-size: 0.9em;
  }
  .offre-table td.excluded {
    font-size: 1.2em;
  }
  header h1 {
    font-size: 0.7em;
    padding: 8px 12px;
    margin-top: 10px;
    max-width: 100%;
  }
  .lavage-main h2 {
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  .lavage-main h3 {
    font-size: 0.7em;
  }
  .offre-table td:first-child {
    padding: 4px 2px 4px 3px;
    font-size: 0.9em;
    width: 42%;
  }
  .offre-table td.included, .offre-table td.excluded {
    padding-left: 1px;
    padding-right: 1px;
  }
}
@media (max-width: 480px) {
  .offre-table {
    font-size: 0.9em;
    max-width: 100%;
    border-width: 1px;
  }
  .offre-table th, .offre-table td {
    padding: 3px 1px;
  }
  .lavage-main {
    padding: 0;
  }
  .lavage-main h2 {
    font-size: 1.1em;
    margin-bottom: 5px;
  }
  .lavage-main h3 {
    font-size: 0.6em;
  }
  .services {
    padding: 0 5px;
  }
  .offre-table td:first-child {
    padding: 3px 1px 3px 2px;
    font-size: 0.85em;
    width: 40%;
  }
}
@media (max-width: 360px) {
  .offre-table {
    font-size: 0.6em;
  }
  .offre-table th, .offre-table td {
    padding: 2px 1px;
  }
  .offre-table td.excluded {
    font-size: 1em;
  }
  .lavage-main h2 {
    font-size: 1em;
  }
}
.decalaminage {
  min-width: 35%;
}
@media (max-width: 1178px) {
  .decalaminage {
    width: 100%;
  }
}
.decalaminage h2 {
  text-align: center;
  color: #1bc51b;
  margin-bottom: 26px;
}
.decalaminage .prestation {
  border: 3px solid #1bc51b;
  border-width: 0px 10px 15px 0;
  background: white;
  padding: 10px;
  margin: 10px 0;
  border-radius: 15px 0 0 15px;
  margin-bottom: 70px;
}
.decalaminage .prestation .prestation-detail .prestation-title {
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
.decalaminage .prestation .prestation-detail h3 {
  color: #b60909;
  margin: 0;
  padding-left: 10px;
}
.decalaminage .prestation .prestation-detail .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.decalaminage .prestation .prestation-detail .content-wrapper ul {
  padding-left: 20px;
  list-style-position: inside;
  flex: 1;
  min-width: 200px;
}
.decalaminage .prestation .prestation-detail .content-wrapper .image-wrapper {
  flex: 1;
  min-width: 200px;
  max-width: 350px;
  margin-left: 15px;
  align-self: flex-end;
  margin-bottom: 0;
  padding-top: 20px;
}
.decalaminage .prestation .prestation-detail .content-wrapper .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.decalaminage .prestation .prestation-detail .content-wrapper .image-wrapper img.zoomable {
  cursor: pointer;
}
.decalaminage .prestation .prestation-detail .content-wrapper .image-wrapper img.zoomable:hover {
  transform: scale(1.03);
}
.decalaminage .prestation .prestation-detail ul {
  padding-left: 20px;
  list-style-type: disc;
  list-style-position: inside;
}
.decalaminage .prestation .prestation-detail li {
  color: black;
  padding-bottom: 20px;
  display: list-item;
}
@media (max-width: 768px) {
  .decalaminage .prestation .prestation-detail .content-wrapper {
    flex-direction: column;
  }
  .decalaminage .prestation .prestation-detail .content-wrapper .image-wrapper {
    margin-left: 0;
    margin-top: 15px;
    max-width: 100%;
    padding-top: 5px;
  }
}
.decalaminage .prestation .prestation-detail li {
  color: black;
  padding-bottom: 20px;
}
.decalaminage .prestation .prestation-detail p {
  margin: 5px 0;
  color: black;
}
.decalaminage .prestation .prestation-detail .prix {
  font-weight: bold;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}
.lightbox .lightbox-content {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid #1bc51b;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.lightbox .close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s;
}
.lightbox .close-lightbox:hover {
  color: #1bc51b;
}

footer {
  text-align: center;
  position: relative;
  width: 100%;
}

.contact h2 {
  text-align: center;
  color: #b60909;
  margin-bottom: 15px;
}
.contact iframe {
  width: 30%;
  height: 400px;
}
@media (max-width: 768px) {
  .contact iframe {
    width: 100%;
  }
}
.contact a {
  color: inherit;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */