@import url("https://use.typekit.net/mce6qer.css");
@import url("https://use.typekit.net/mce6qer.css");
@import url("https://use.typekit.net/mce6qer.css");

@import url("https://use.typekit.net/mce6qer.css");


:root{
  /*--pink : #F0DFE1;*/
  --pink: #b6b6b6;
  --lightpink: #b3b3b3;
  --gray : rgba(221, 219, 219, 0.87);

  --bleu: #94addd;
  --rose: #F4B9D4;
}

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

body {
  margin: 0;
  padding:0;
  color: #333;
}



main header h1{
  font-family: "gooddog-new", sans-serif;
  font-weight: 400;
  font-size: 100px;
  padding:0;
  margin:0;
}
main {
  padding-bottom:4em;
  margin:0;
}

.onglets {
  justify-content: center;
  display:flex;
}

.onglets img {
  display: flex;
  width: 15em;
}

#prenom {
  padding: 2em 0;
  display: flex;
  width: 25em;
}

p, th, td, option, label, a, select {
  font-family: "century-gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 15px;
}

h1 {
  font-size: 70px;
  font-family: "houschka-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 20px;
}



h2 {
  margin-bottom: 10px;
  font-family: "houschka-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.75em;
}

h3 {
  font-family: "houschka-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

a {
  color: black;
  text-decoration: none;
}

.round-icon {
  background-color: white;
  padding: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-block;
  font-size: 40px;
  color: var(--pink);
}


.button{
  background-color: white;
  color: var(--pink);
  display: inline-block;
  margin: 20px 10px 0 0;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  transition: ease-in-out 0.2s;
  border: none;
}

.button:hover {
  background-color: transparent;
  color: white;
  border: solid 1px white;
}

.button-black{
  background-color: var(--lightpink);
  color: white;
  display: inline-block;
  margin: 20px 10px 0 0;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  transition: ease-in-out 0.2s;
  border: none;
}

.button-black:hover {
  background-color: transparent;
  color: var(--pink);
  border: solid 1px var(--pink);
}

nav {
  height : 4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  width: 100%;
  right: 0;
  left:0;
}

nav a, select {
  cursor: pointer;
  margin: 0;
  color: black;
  display: inline-block;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 400;
  padding: 10px 1em 10px 1em;
  transition: 0.2s ease-in-out;
  text-align: center;
  position: relative;
  border-radius: 155px;
}

nav img {
  width: 70px;
}

#nav-text {
  padding-right: 10px;
  position: relative;
  background-color: white;
  border-radius: 122px;
}

.header {
  padding: 10px 2em 10px 2em;
  background-color: #f8f8f8;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: fixed;
}


nav a:hover {
  color: #F4B9D4;
}

.actif {
  background-color: #f8dde8;
}


.bubble-transition {
  position: absolute;
  top: 0;
  height: 100%;
  background-color:red;
  border-radius: 155px;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.bubble-transition {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



#menu-toggle {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {

  .header {
    position: absolute;
    top:0;
  }

  #nav-text {
    margin-top: 10px;
    gap : 10px;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
  }

  #menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    margin-right: 1em;
  }

  #nav-text a, #nav-text select {
    text-align: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 1em;
    border-top: 1px solid #eee;
  }

  #nav-text.active {
    display: flex;
  }



}


.petit-texte {
  text-align: justify;
  color: #838383;
}

.icon {
  max-width: 20px;
  margin: 0;
}

.big-icon {
  max-width: 30px;
}

.footer-content {
  /*color: #f3a2c6;*/
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: #f8f8f8;
  /*background-color: rgba(248, 221, 232, 0.51);*/
  font-size: 14px;
  padding: 40px 100px 30px 100px;
}

.footer-gauche {
  max-width: 70%;
  text-align: left;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.footer-right p {
  margin: 0;
  padding: 0;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons i {
  font-size: 20px;
}


.footer-gauche p {
  font-size: 14px;
}

.footer-gauche h2 {
  font-size: 30px;
}

.voir-plus-btn{
  background-color: rgba(169, 169, 169, 0);
  display: inline-block;
  margin: 20px 10px 0 0;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: ease 0.4s;
  border: 2px solid var(--pink);
}

.voir-plus-btn:hover {
  background-color: var(--pink);
  color: #fff;
}

.btn-contact {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--pink);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-contact:hover {
  background-color: var(--lightpink);
}


header select {
  background: none;
  border:none;
}



@keyframes bounceIn {
  0% {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  60% {
    transform: scale(1.05) translateY(-10px);
    opacity: 1;
  }
  80% {
    transform: scale(0.95) translateY(5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}


.scroll-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  background: var(--bleu);
  color: white;
  border-radius: 200px;
  padding: 10px 14px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
  transition: opacity 0.5s ease-in-out;
}


.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.bleu {
  color: var(--bleu);
}

.rose {
  color: #f3a2c6;
}

#fp-nav, .fp-watermark {
  display: none !important;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-gauche {
    max-width: 100%;
  }

  .footer-right {
    justify-content: left;
    gap: 30px;
    display: flex;
    flex-direction: row;
  }

  .footer-content {
    padding: 20px 50px;
  }
}