@import url('https://fonts.cdnfonts.com/css/source-sans-pro');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
  --pastel-blue: #8EC4CB;
  --lemony-green: #BAC25F;

  --background-pastel-blue: rgba(142, 196, 203, 0.2);
  --background-lemony-green: rgba(186, 194, 95, 0.6);
  --lake-water: #53ADAC;
  --ocean-blue: #2D5194;
  --black: #000;
  --not-really-black: #14110F;
  --white: #FFF;
  --not-really-white: #FCFCFC;
  --light-grey: #E0E0E0;


  --box-shadow: 0px 6px 12px -2px rgba(50, 50, 93, 0.25), 0px 3px 7px -3px rgba(0, 0, 0, 0.30);
  --font-headings: "Libre Baskerville";
  --font-body: "Source Sans 3", sans-serif;
}

body {
  margin: 0px;
  padding: 0px;
  color: var(--not-really-black);
  font-family: var(--font-body);
}


h1 {
  font-family: var(--font-headings);
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 400;
}

h3 {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 700;
}

h4 {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
}

p {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
}

a {
  color: var(--not-really-black);
  text-decoration:none;
  font-size: 18px;
}



ul {
  list-style: none;
  padding: 0px;
}

.blue-button {
  color: var(--not-really-white);
  background-color: var(--ocean-blue);
  padding: 12px 40px;
  border-radius: 50px;
}

.white-button {
  color: var(--not-really-black);
  background-color: var(--not-really-white);
  padding: 12px 40px;
  border: 1px solid var(--ocean-blue);
  border-radius: 50px;
}

.doctolib-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  background-color: #0596DE;
  padding: 10px;
  gap: 4px;
  border-radius: 4px 4px 0px 0px;
  text-decoration: underline;
}

.doctolib-button img {
  height: 15px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  width: calc(100vw - 40px);
  height: fit-content;
  background-color: var(--not-really-white);
  position: sticky;
  top: 0px;
  gap: 0px 24px;
  box-shadow: var(--nav-shadow);
  filter: drop-shadow(0.5px 0.5px 0.5px #000000);
}

#nav-logo {
  height: 45px;
  cursor: pointer;
  margin-top: 5px;
}

nav ul {
  list-style: none;
  padding: 0;

}

nav>ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

nav button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  box-shadow: var(--nav-shadow);
  background-color: white;
  position: absolute;
  border-radius: 0px 0px 8px 8px;
  z-index: 300;
}

.dropdown-menu li {
  padding: 12px 12px 12px 8px;
  border-bottom: 1px solid var(--light-grey);
}

.last-drop {
  border-radius: 8px;
}

nav>ul li:focus-within .dropdown-menu {
  display: flex;
}

#nav-burger {
  display: none;
  color: var(--ocean-blue);
}

#reponsive-doctolib {
  display: none;
}

@media (max-width: 768px) {

  nav {
    justify-content: space-between;
  }

  #nav-burger {
    display: block;
    font-size: 40px;
    cursor: pointer;
  }

  #reponsive-doctolib {
    display: flex;
    margin: 12px 20px;
  }

  nav>ul {
    display: none;
  }

  nav>.doctolib-button {
    display: none;
  }

  nav:focus-within>ul {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    width: 50vw;
    top: 100px;
    left: 50vw;
    background-color: var(--white);
  }

  .dropdown-menu {
    display: block;
    position: relative;
  }

  .dropdown-menu li {
    padding: 4px 24px 8px 32px;
    border-bottom: 1px solid rgba(186, 194, 95, 0.80);
    border-radius: 0;

  }

  nav button:not(#nav-burger) {
    padding: 12px 32px 12px 12px;
    width: 100%;
    border-bottom: 1px solid rgba(186, 194, 95, 0.80);
  }

  .nav-links {
    padding: 12px 32px 12px 12px;
    width: 100%;
    border-bottom: 1px solid rgba(186, 194, 95, 0.80);
  }

}

/* navbar */


#presentation {
  background-color: rgba(142, 196, 203, 0.20);
  display: flex;
  padding: 120px;
  margin: 0px;
  justify-content: center;
  align-items: center;
  gap: 120px;
  flex-wrap: wrap;
  min-width: 40vh;
}

#presentation h1 {
  font-family: "Nunito Sans";
  font-size: 56px;
  font-weight: 700;
  line-height: 61.6px;
}

#presentation p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
  min-width: 50vh;
}

#presentation img {
  display: flex;
  justify-content: right;
  border-radius: 100px 0px 0px 0px;
  box-shadow: 0px 6px 12px -2px rgba(50, 50, 93, 0.25), 0px 3px 7px -3px rgba(0, 0, 0, 0.30);
  max-width: 35vh;
}

#presentation .btn {
  display: flex;
}

#presentation .rdv {
  padding: 2% 5%;
  border-radius: 50px;
  background-color: #2D5194;
  color: white;
  border: none;
  text-align: center;
  font-size: 18px;
}

#presentation .contact {
  padding: 2% 5%;
  border-radius: 50px;
  margin-left: 3%;
  border: solid 1.5px;
  border-color: #2D5194;
  text-align: center;
  font-size: 18px;
}

#imgg {
  display: flex;
  flex-wrap: wrap;
  padding: 5vh 12vw;
  gap: 58px;
}

#imgg .famille {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
  font-family: "Source Sans Pro";
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

#imgg .titre {
  font-family: "Libre Baskerville";
  font-size: 26px;
  font-weight: 400;
  line-height: normal;
}

#imgg img {
  border-radius: 0px 100px 0px 0px;
  box-shadow: 0px 6px 12px -2px rgba(50, 50, 93, 0.25), 0px 3px 7px -3px rgba(0, 0, 0, 0.30);
  max-width: 100%;
}


#imgd {
  background-color: rgba(142, 196, 203, 0.20);
  display: flex;
  flex-wrap: wrap;
  padding: 5vh 12vw;
  gap: 58px;
}

#imgd .titre {
  font-family: "Nunito Sans";
  font-size: 26px;
  font-weight: 700;
  line-height: 61.6px;
}

#imgd p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
}

#imgd img {
  display: flex;
  justify-content: flex-end;
  border-radius: 100px 0px 0px 0px;
  box-shadow: 0px 6px 12px -2px rgba(50, 50, 93, 0.25), 0px 3px 7px -3px rgba(0, 0, 0, 0.30);
  max-width: 100%;
}

#imgd .texte {
  display: flex;
  align-items: center;
  gap: 120px;
  width: 100%;
}


#prefooter {
  background-color: rgba(186, 194, 95, 0.60);
  display: flex;
  padding: 96px 100px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  font-family: "Source Sans Pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

#prefooter .texte {
  display: flex;
  align-items: center;
  max-width: 44.5vw;
}

footer {
  color: #000000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 750vw;
}

footer .info {
  display: flex;
  flex-direction: column;
}
footer .legals{
  display: flex;
  flex-direction: column;
}
footer .articles{
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .contact{
  padding: 2% 5%;
  border-radius: 50px;
  color: white;
  border: none;
  text-align: center;
  font-size: 18px;
  background-color: #2D5194;
}
#titrethera{
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;

}
#imgg .list{
  color: #000;
  list-style:square;
}