@import "stylebase.css";

/* Soins page styles */
#body_header {
    position: relative;
}

#body_header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(126, 126, 126, 0.2)
  );
}

#body_header > img {
  width: 100%;
  height: auto;
  min-height: 400px;
max-height: 500px;
  object-fit: cover;
}

#body_header > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  border: solid 1px rgba(223, 223, 223, 0.25);
  background-color: rgba(223, 223, 223, 0.25);
  backdrop-filter: blur(8px);
}

h1 {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(1.5rem, 2.5vw, 4rem);
}

h2 {
    font-family: "Licorice", cursive;
    font-weight: 600;
    font-style: normal;
    font-size: clamp(2rem, 2vw, 3rem);
}

h4 {
    font-size: clamp(1.3rem, 2vw, 1.4rem);
}

.cat_prices {
    background-color: var(--background_content_light);
    border: solid 1px var(--background_content);
}

.list_price {
    color: var(--price_list);
}

#duo_offer {
  background-color: var(--background_content_light);
}

#duo_offer h2 {
    font-weight: 500;
    color: var(--icons_color);
}

.accordion-button:not(.collapsed),
.accordion-button {
  background-color: var(--background_content);
}

.button_reserver {
    border: solid 2px var(--background_content);
}