/**********************************************************/
/**********************************************************/
/*********************** style.css ************************/
/**********************************************************/
/**********************************************************/

/* IMPORT */

@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Slab&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* DIV */

div{
  position: relative;
  margin: 0%;
  padding: 0%;
  border-spacing: 0%;
}

/* POLICE */

h1{
    font-family: 'Roboto Slab', serif;
    font-size: 3em;
    text-align: center;
}

h2{
    font-family: 'Roboto Slab', serif;
}

p{
    font-size: 1em;
    line-height: 1.8em;
}

/* HTML/BODY */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    position: relative;
 }

/*#################################### HEADER ####################################*/

header {
    position: fixed;
    left: 0%;
    top: 0%;
    width:  100%;
    height: 16%;
    border-bottom: 1px solid black;
    background-color: white;
    z-index: 1000;
    justify-content: center;
    display: flex;
    flex-direction: center;
    padding-top: 0px;
    align-items: center;
}

#picture-bar{
  width: 100%;
}

#img-header{
    margin-left: 150px;
    max-width: 23%;
    min-width: 15%;
    animation: arriveeGauche 1s ease-out forwards;
    transition: ease-in-out 0.5s;
}

#img-header:hover{
  max-width: 22%;
  transition: ease-in-out 0.5s;
}

/* NAV */

.navbar{
    position: relative;
    animation: arriveeHaut 1s ease-out forwards;
    width: 150%;
    max-width: 1200px;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 0;
}

.navbar li {
    text-align: center;
}

.navbar a {
    color: black;
    font-size: x-large;
    text-decoration: none;
    margin: 0 15px; 
    font-size: clamp(8px, 15px, 20px);
    font-weight: 600;
    text-align: center;
}

.navbar li:hover a{
    color: rgb(56, 56, 56);
}

.navbar .menu-burger{ 
  max-width: 5%;
  display: none;
  z-index: 1999;
}

.mobile-menu{
  margin-left: 0;
}

/* DIV NETWORKS */

.networks{
  width: 100%;
}

#div-networks{
    display: block;
    animation: arriveeDroite 1s ease-out forwards;
    width: 100%;
}

.img-networks{
    max-width: 4%;
    margin: 0.2%;
}

.img-networks:hover{
    filter: grayscale(200%)
}

/*########################################################################*/

/* LINK */

a{
    text-decoration: none;
    color: rgba(203, 140, 161, 0.87);
}

/* IMAGE */

img{
  margin: auto;
}

/* BUTTON */

/* WHITE */

.btn-white {
    appearance: none;
    background-color: #fff;
    border: 2px solid #ffffff;
    border-radius: 15px;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-block;
    font-family: 'Roboto',-apple-system,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 0.9em;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 0;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    height: 1;
    width: 10%;
    will-change: transform;
  }
  
  .btn-white:disabled {
    pointer-events: none;
  }
  
  .btn-white:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
  }

  .btn-white:hover a{
    color: #ffffff;
  }
  
  .btn-white:active {
    box-shadow: none;
    transform: translateY(0);
  }

  .btn-white a{
    color: rgba(203, 140, 161, 0.87);
  }

/* PURPLE */

.btn-purple {
    appearance: none;
    background-color: rgba(203, 140, 161, 0.87);
    border: 2px solid rgba(203, 140, 161, 0.87);
    border-radius: 15px;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-block;
    font-family: 'Roboto',-apple-system,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 0.9em;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 0;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    height: 1;
    width: 10%;
    will-change: transform;
  }
  
  .btn-purple:disabled {
    pointer-events: none;
  }
  
  .btn-purple:hover {
    color: rgba(203, 140, 161, 0.87);
    background-color: rgba(255, 255, 255, 0);
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
  }

  .btn-purple:hover a{
    color: rgba(203, 140, 161, 0.87);
  }
  
  .btn-purple:active {
    box-shadow: none;
    transform: translateY(0);
  }

  .btn-purple a{
    color: #ffffff;
  }

/* PINK */

.btn-pink {
    appearance: none;
    background-color: rgba(253, 188, 210, 0.87);
    border: 2px solid rgba(253, 188, 210, 0.87);
    border-radius: 15px;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-block;
    font-family: 'Roboto',-apple-system,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 0.9em;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 10%;
    will-change: transform;
  }
  
  .btn-pink:disabled {
    pointer-events: none;
  }
  
  .btn-pink:hover {
    color: rgba(253, 188, 210, 0.87);
    background-color: rgba(255, 255, 255, 0);
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
  }

  .btn-pink:hover a{
    color: rgba(253, 188, 210, 0.87);
  }
  
  .btn-pink:active {
    box-shadow: none;
    transform: translateY(0);
  }

  .btn-pink a{
    color: #ffffff;
  }

/* IMAGE CONTAINER (change image) */



/*#################################### FOOTER ####################################*/


footer{
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.footer1 {
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  display: flex;
  flex-wrap: wrap;
}

#img-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1; 
}

#logo-f {
  flex: 1; 
  max-width: 40%;
  transition: ease-in-out 0.5s;
}

#logo-f:hover {
  max-width: 35%;
  transition: ease-in-out 0.5s;
}

#info {
  flex: 1; 
}

.footer1 p {
  text-align: center;
}

#redirect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 20px;
}

#networks2 {
  display: block;
  width: auto;
  height: auto;
  align-items: center;
}

.img-networks2 {
  max-width: 7%;
  margin: 0.2%;
}

.img-networks2:hover {
  filter: grayscale(200%);
}

#btn-f{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

#btn-ftr1,
#btn-ftr2 {
  z-index: 900;
  width: 30%;
  text-align: center;
}


.footer2{
  width: 100%;
  height: auto;
  background-color: rgba(231, 189, 203, 0.87);
}

.footer2 h3{
  font-weight: 400;
  text-align: center;
}

.footer2 h4{
  text-align: center;  
}

/*########################################################################*/










/* GEN */

/* Article Formations */

.article-s1{
  background-color: white;
  box-shadow: 1px;
  max-width: 30%;
  min-width: 20%;
  min-height: 50%;
  max-height: 60%;
  border-radius: 10px;
  margin: 1%;
  padding: 15px;
  animation: agrandir 1s ease-out forwards;
}

.img-s1{
  min-width: 40%;
  max-width: 50%;
  position: relative;
  left: 25%;
  top: 3%;
  transition: 1s;
}

.img-s1:hover{
  animation: agrandir 1s ease-out forwards;
  transition: 1s;
}

.tit-s1{
  text-align: center;
  animation: agrandir 1s ease-out forwards;
}

.txt1-s1{
  text-align: center;
  color: rgba(203, 140, 161, 0.87);
  animation: agrandir 1s ease-out forwards;
}

.txt2-s1{
  text-align: center;
  animation: agrandir 1s ease-out forwards;
}

#btn-s1{
  position: relative;
  width: auto;
  animation: agrandir 1s ease-out forwards;
}

/* BTN GROUP */

#btn-group{
  text-align: center;
  padding-bottom: 40px;
  width: clamp(100% - 20px) ;
  margin-top: 20px;
  margin-right: 20px;
}