html, body
{
	margin: 0;
    padding: 0;
    height: 100%;
  scroll-behavior: smooth;
}


main
{
	padding:100px 0px 0px 0px;
}

.accomp-text
{
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 1em;
  font-weight: normal;
}


.bg-Accomp
{
	background-color: white !important;
}

.PresenceNaissance-Img
{
  max-height: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.50);
  filter: brightness(1.05) contrast(0.95) saturate(1.1);
}

.Postnatal-Img
{
  max-height: 550px;
  height: auto;
  object-fit: contain;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.50);
  filter: brightness(1.05) contrast(0.95) saturate(1.1);
}

/* Bulle Presence/Cocon/Postnatal */
.bubble-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.bubble-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.bubble-img:hover {
  transform: scale(1.05);
}

/* Bulle dans mon cocon */
.bubble-cocon-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .bubble-cocon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .bubble-cocon-img:hover {
    transform: scale(1.1);
  }

/* Card pour les tarifs */
.card-price {
  font-size: 2rem;
}
.card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}
.card-title {
  text-transform: uppercase;
  letter-spacing: 1px;
}



