@charset "UTF-8";
:root,
:host,
* {
  font-family: "Ubuntu", sans-serif !important;
}

p, li, a, i, strong, td, th {
  font-size: 14px;
}

/* Desktop ≥1024px (par défaut) */
h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 18px;
}

/* Tablette <1024px */
@media (max-width: 1023px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
}
/* Mobile <768px */
@media (max-width: 767px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
}
.current {
  font-weight: bolder;
}

.section-separator {
  display: block;
  margin: 5rem auto;
  width: 50%;
  max-width: 95vw;
  height: var(--pico-border-width);
  background: var(--pico-primary-background);
}

@media (min-width: 768px) {
  p, li, a, i, strong, td, th {
    font-size: 18px;
  }
}
.header__top {
  position: relative;
  padding-bottom: var(--pico-block-spacing-vertical);
  border-bottom: var(--pico-border-width) solid var(--pico-primary-border);
}

.header__logo {
  max-width: 80px;
}

.header__ham-button {
  all: unset;
  position: absolute;
  top: 35%;
  right: 0;
  height: 20px;
  width: 26px;
  cursor: pointer;
}
.header__ham-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #000;
  transform: rotate(0);
}
.header__ham-button span:nth-child(1) {
  transform: translateY(-7px);
}
.header__ham-button span:nth-child(3) {
  transform: translateY(7px);
}
.header__ham-button.open span:nth-child(1) {
  transform: rotate(45deg);
}
.header__ham-button.open span:nth-child(2) {
  opacity: 0;
}
.header__ham-button.open span:nth-child(3) {
  transform: rotate(-45deg);
}
@media (min-width: 960px) {
  .header__ham-button {
    display: none;
  }
}

.header__nav {
  display: none;
  position: absolute;
  top: 85%;
  right: 0;
  padding: 1rem 2rem;
  width: 100%;
  border-bottom: 8px solid var(--pico-primary-border);
  background: #ffffff;
}
.header__nav.open {
  display: block;
}
@media (min-width: 960px) {
  .header__nav {
    display: flex;
    position: relative;
    padding: 0;
    border: none;
    width: fit-content;
  }
}

.header__navlinks-container {
  text-align: right;
  line-height: 2;
}
@media (min-width: 960px) {
  .header__navlinks-container {
    display: flex;
    gap: 1rem;
    text-align: center;
  }
}

.footer__container {
  padding-top: var(--pico-block-spacing-vertical);
  border-top: var(--pico-border-width) solid var(--pico-primary-border);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
@media (min-width: 800px) {
  .footer {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.footer__contacts,
.footer__sitemap {
  width: 400px;
  max-width: 95vw;
}

.footer__contacts {
  align-self: center;
  text-align: center;
}
@media (min-width: 800px) {
  .footer__contacts {
    align-self: baseline;
  }
}

.footer__logo {
  max-width: 100px;
}

.footer__sitemap {
  text-align: center;
}
.footer__sitemap ul li {
  padding: 0;
}

.homepage__main {
  padding-bottom: 5rem;
}

.homepage__presentation-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
}
@media (min-width: 768px) {
  .homepage__presentation-container {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: 170px auto;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.homepage__presentation-container h1 {
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .homepage__presentation-container h1 {
    margin-top: 5rem;
    text-align: left;
  }
}

.homepage__presentation-intro {
  grid-area: 2/1/3/2;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .homepage__presentation-intro {
    grid-area: 2/1/4/2;
    margin-top: 0;
  }
}

.homepage__presentation-picture {
  grid-area: 3/1/4/2;
  margin: auto;
  width: 50vw;
  border-radius: var(--pico-border-radius);
}
@media (min-width: 768px) {
  .homepage__presentation-picture {
    width: 35vw;
    grid-area: 1/2/4/3;
    max-width: 400px;
  }
}

.homepage__contacts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 900px) {
  .homepage__contacts {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10rem;
  }
}

.homepage__actuality-section h2 {
  text-align: center;
  margin-bottom: 5rem;
}
.homepage__actuality-section button {
  display: block;
  margin: 1rem auto;
  margin-bottom: 0;
}

.homepage__actualities-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.homepage__actuality {
  max-width: 400px;
}
.homepage__actuality header {
  margin-bottom: 0.5rem;
}
.homepage__actuality header figure {
  max-height: 200px;
  overflow: hidden;
}
.homepage__actuality header figure img {
  width: 100%;
  object-fit: cover;
}
.homepage__actuality header div h3, .homepage__actuality header div p {
  margin: 0;
  margin-top: 0.5rem;
}
.homepage__actuality footer {
  text-align: right;
}

.homepage__services-section h2 {
  text-align: center;
  margin-bottom: 5rem;
}
.homepage__services-section button {
  display: block;
  margin: 3rem auto;
  margin-bottom: 0;
}

.homepage__services-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}
@media (min-width: 768px) {
  .homepage__services-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .homepage__services-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
}

.homepage__service {
  max-width: 300px;
  padding: 1rem;
  margin: auto;
  border: 3px solid var(--pico-primary-border);
}
.homepage__service figure {
  max-height: 150px;
  overflow: hidden;
}
.homepage__service figure img {
  width: 100%;
  object-fit: cover;
}
.homepage__service h3 {
  text-align: center;
  margin: 0.5rem 0;
}
.homepage__service footer {
  text-align: right;
  border: none;
}

.homepage__labels-section h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.homepage__labels-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  max-width: 300px;
  margin: auto;
}
@media (min-width: 524px) {
  .homepage__labels-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (min-width: 670px) {
  .homepage__labels-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    max-width: 700px;
  }
}
.homepage__labels-container img {
  margin: auto;
  max-height: 100px;
}

.newspage__main h1 {
  text-align: center;
}

.news__container {
  display: grid;
  grid-template-columns: repeat(1, auto);
  grid-template-rows: repeat(6, auto);
  grid-column-gap: 0px;
  grid-row-gap: 5rem;
  margin: 3rem auto;
}
@media (min-width: 900px) {
  .news__container {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, auto);
    max-width: 1000px;
  }
}
@media (min-width: 1400px) {
  .news__container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
    max-width: 1600px;
  }
}

.newspage__actuality {
  max-width: 85vw;
  margin: auto;
}
.newspage__actuality header {
  margin-bottom: 0.5rem;
}
.newspage__actuality header figure {
  max-height: 200px;
  overflow: hidden;
}
.newspage__actuality header figure img {
  width: 100%;
  object-fit: cover;
}
.newspage__actuality header div h3, .newspage__actuality header div p {
  margin: 0;
  margin-top: 0.5rem;
}
.newspage__actuality footer {
  text-align: right;
}
@media (min-width: 900px) {
  .newspage__actuality {
    max-width: 400px;
  }
}

.newspage__navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.newspage__navigation p {
  margin: 0;
}

.news-description__main {
  margin: 5rem auto;
}
.news-description__main h1 {
  text-align: center;
}
.news-description__main img {
  display: block;
  margin: auto;
}
.news-description__main .news-description__no-display {
  display: none;
}
.news-description__main p {
  display: block;
  max-width: 850px;
  margin: 2rem auto;
}

.services-page__main {
  padding: 1rem;
  margin-bottom: 5rem;
}
.services-page__main h1 {
  text-align: center;
  margin-bottom: 5rem;
}
.services-page__main h2, .services-page__main p {
  width: 95vw;
  max-width: 700px;
  margin: auto;
}
.services-page__main details {
  width: 95vw;
  margin: 2rem auto 0 auto;
  max-width: 700px;
}
.services-page__main table {
  width: 95vw;
  max-width: 700px;
  margin: auto;
}
.services-page__main table caption {
  font-weight: bold;
  margin: 2rem 0;
}
.services-page__main table th, .services-page__main table td {
  padding: 0.3rem;
}
.services-page__main .services-page__img-tarifs figure {
  width: 80vw;
  max-width: 600px;
  margin: auto;
}
.services-page__main .services-page__img-tarifs figure img {
  border-radius: 40%;
  box-shadow: var(--pico-box-shadow);
}
.services-page__main h2 {
  margin: 2rem auto;
}

.centre-page__main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.centre-page__main h1 {
  margin-bottom: 5rem;
}
.centre-page__main figure {
  margin-bottom: 5rem;
}
.centre-page__main figure img {
  width: 75vw;
  max-width: 700px;
  border-radius: 0.5rem;
}

.who-page__main {
  max-width: 900px;
}
.who-page__main h1, .who-page__main h2, .who-page__main h3, .who-page__main p {
  text-align: center;
}
.who-page__main .who-page__equipe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
}
.who-page__main .who-page__equipe article {
  max-width: 200px;
}
.who-page__main .who-page__equipe article img {
  object-fit: cover;
  width: 100%;
}
@media (min-width: 500px) {
  .who-page__main .who-page__equipe {
    flex-direction: row;
    justify-content: center;
  }
}

.contact-page__main .contact-page__error p, .contact-page__main .contact-page__error li {
  color: #ff0000;
}
.contact-page__main .contact-page__pot {
  display: none;
}
.contact-page__main .contact-page__coordonnees {
  text-align: center;
}
.contact-page__main .contact-page__coordonnees h2 {
  margin: 3rem auto;
}
.contact-page__main .contact-page__coordonnees .contact-page__horaires {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.contact-page__main .contact-page__coordonnees .contact-page__horaires .contact-page__horaires-jours {
  text-align: right;
}
.contact-page__main .contact-page__coordonnees .contact-page__horaires .contact-page__horaires-creneaux {
  text-align: left;
}
@media (min-width: 1024px) {
  .contact-page__main {
    display: flex;
    justify-content: center;
    gap: 5rem;
  }
  .contact-page__main .contact-page__coordonnees {
    text-align: left;
  }
  .contact-page__main .contact-page__coordonnees h2 {
    margin: 0;
    margin-bottom: 3rem;
  }
  .contact-page__main .contact-page__coordonnees .contact-page__horaires {
    justify-content: flex-start;
  }
  .contact-page__main .contact-page__coordonnees .contact-page__horaires .contact-page__horaires-jours {
    text-align: left;
  }
}

.contact-page__iframe {
  display: flex;
  justify-content: center;
  margin: 5rem auto;
}
.contact-page__iframe iframe {
  width: 100%;
  max-width: 90vw;
  aspect-ratio: 16/9;
}
@media (min-width: 800px) {
  .contact-page__iframe iframe {
    max-width: 700px;
  }
}

.ad__log {
  max-width: 400px;
}

.ad__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin: 3rem 0;
}
@media (min-width: 768px) {
  .ad__nav {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.ad__pan th, .ad__pan td {
  padding: 0.3rem;
}

.ad__container {
  max-width: 800px;
}

.ad__tarifs h2 {
  margin-top: 4rem;
}

/*# sourceMappingURL=main.css.map */
