@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Oswald&family=Poppins:wght@100&display=swap');

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

header {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    font-family: "Poppins";
}

.logo img {
	height: 100px;
}

body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    font-family: "Poppins";
}

.navbar{
    display: flex;
    align-items: center;
}
.menu-bar {
    border-radius: 25px;
    height: fit-content;
    display: inline-flex;
    background-color: rgba(0, 0, 0, .4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    align-items: center;
    padding: 0 10px;
}
.menu-bar li {
    list-style: none;
    color: white;
    font-family: "Poppins";
    font-weight: bold;
    padding: 12px 16px;
    margin: 0 8px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}
.menu-bar li::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: 0.2s;
    border-radius: 25px;
}
.menu-bar li:hover {
    color: black;
}
.menu-bar li:hover::before {
    background: linear-gradient(to bottom, #e8edec, #d2d1d3);
    box-shadow: 0px 3px 20px 0px black;
    transform: scale(1.2);
}

.container{
    width: 100%;
}

.landing-page {
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    font-family: "Poppins";
}

.background-image {
    position: absolute; 
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    position: relative; 
    text-align: center;
    margin-top: 20px;
    font-size: 36px;
    font-weight: bold;
    color: #fff; 
    z-index: 1; 
}
.title p {
    font-size: 20px;
    margin-top: 10px;
    color: #fff; 
    z-index: 1; 
}

.title h1{
  font-family:'Montserrat'
}

.floating-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 200px);
    font-family: "Poppins";
  }
  
  .box {
    width: 300px;
    height: 300px;
    background-color: #fff;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .box h2 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .box h3 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .box p {
    font-size: 14px;
  }

  .box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
}

.title-box {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    padding-top: 2%;

  }

  
  
  .title-text,
  .subtitle-text,
  .paragraph-text {
    font-weight: 400;
    animation-name: bounceInLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  
  .title-text {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .subtitle-text {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .paragraph-text {
    line-height: 2.5rem;
    margin-bottom: 2rem;
  }
  
  @keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    
    0% {
      opacity: 0;
      transform: translateX(-3000px);
    }
    
    60% {
      opacity: 1;
      transform: translateX(25px);
    }
    
    75% {
      transform: translateX(-10px);
    }
    
    90% {
      transform: translateX(5px);
    }
    
    to {
      transform: none;
    }
  }


  /* Styles pour centrer le formulaire */
.form-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    font-family: "Poppins";
    margin-bottom: 1%;
  }
  
  /* Styles pour le formulaire */
  input,
  textarea {
    outline: none;
  }
  
  h1 {
    margin-top: 0;
    font-weight: 500;
  }
  
  form {
    position: relative;
    width: 80%;
    max-width: 600px;
    border-radius: 30px;
    background: #f7f7f7;
  }
  
  .form-left-decoration,
  .form-right-decoration {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    border-radius: 20px;
    background: #1a1a1a;
  }
  
  .form-left-decoration {
    bottom: 60px;
    left: -30px;
  }
  
  .form-right-decoration {
    top: 60px;
    right: -30px;
  }
  
  .form-left-decoration:before,
  .form-left-decoration:after,
  .form-right-decoration:before,
  .form-right-decoration:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    border-radius: 30px;
    background: #f7f7f7;
  }
  
  .form-left-decoration:before {
    top: -20px;
  }
  
  .form-left-decoration:after {
    top: 20px;
    left: 10px;
  }
  
  .form-right-decoration:before {
    top: -20px;
    right: 0;
  }
  
  .form-right-decoration:after {
    top: 20px;
    right: 10px;
  }
  
  .circle {
    position: absolute;
    bottom: 80px;
    left: -55px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f7f7f7;
  }
  
  .form-inner {
    padding: 40px;
  }
  
  .form-inner input,
  .form-inner textarea {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 20px;
    background: #e0e0e0;
    color: #1a1a1a;
  }
  
  .form-inner textarea {
    resize: none;
  }
  
  button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    border-radius: 20px;
    border: none;
    border-bottom: 4px solid #000000;
    background: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    color: #f7f7f7;
  }
  
  button:hover {
    background: #d86624;
  }


  .footer {
    display: flex;
    flex-flow: row wrap;
    padding: 30px 30px 20px 30px;
    color: #2f2f2f;
    background-color: #fff;
    border-top: 5px solid #d86624;
    font-family: "Poppins";
  }
  
  .footer > * {
    flex:  1 100%;
  }
  
  .footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
  }
  
  .footer__logo {
    font-weight: 400;
    text-transform: lowercase;
    font-size: 1.5rem;
  }
  
  .footer__addr h2 {
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
  }
  
  .nav__title {
    font-weight: 400;
    font-size: 15px;
  }
  
  .footer address {
    font-style: normal;
    color: #999;
  }
  
  .footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: rgb(33, 33, 33, 0.07);
    border-radius: 100px;
    color: #2f2f2f;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
  }
  
  .footer ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer li {
    line-height: 2em;
  }
  
  .footer a {
    text-decoration: none;
  }
  
  .footer__nav {
    display: flex;
      flex-flow: row wrap;
  }
  
  .footer__nav > * {
    flex: 1 50%;
    margin-right: 1.25em;
  }
  
  .nav__ul a {
    color: #999;
  }
  
  .nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
  }
  
  .legal {
    display: flex;
    flex-wrap: wrap;
    color: #999;
  }
    
  .legal__links {
    display: flex;
    align-items: center;
  }
  
  .heart {
    color: #2f2f2f;
  }
  
  @media screen and (min-width: 24.375em) {
    .legal .legal__links {
      margin-left: auto;
    }
  }
  
  @media screen and (min-width: 40.375em) {
    .footer__nav > * {
      flex: 1;
    }
    
    .nav__item--extra {
      flex-grow: 2;
    }
    
    .footer__addr {
      flex: 1 0px;
    }
    
    .footer__nav {
      flex: 2 0px;
    }
  }

  .parrainage-container {
    position: relative;
  }
  
  #parrainage-link {
    padding-top: 2%;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  