@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body{
    margin: 0;
    padding: 0;
    background: url('./img/bg.png') no-repeat center fixed;
    background-size: cover;
    font-family: "Roboto", sans-serif;
}
.wrapper{
    height: 85vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    position: relative;
}

.menu{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  text-align: right;
}

.menu ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline;
  padding-right: 30px;
}

.menu li{
  padding: 50px 100px 0;
} 

.menu a{
  text-decoration: none;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}

.menu a:hover{
  color: gold;
}



/* .bg-logo{
  background-color: rgba(255,255,255,0.3);
  box-shadow: 1px 5px 10px 1px rgba(0, 0, 0, 0.5);
} */

/* .bg-logo:hover{
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-30px) rotate(-3deg);
} */

.logo{
  width: 100%;
  height: auto;
}

h4{
    font-style: italic;
    font-size: 3.5rem;
    color: white;
}

.footer{
  width: 100%;
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .services{
  display: flex;
  width: 100%;
  padding: 0;
}

.services .bloc-services{
  flex: 3;
  padding: 10px 50px;
}

.bloc-services .liste{
  flex-direction: column;
  columns: 2;
  font-size: 1.5rem;
  font-weight: 600;
  list-style-type: square;
}

ul{
  list-style: square;
}

.liste li{
  margin: 10px 0;
  cursor: pointer;
}

li:hover{
  color: #B57225;
}


.services .bloc-contact{
  flex: 1;
  background: #B57225;
  padding: 0;
  margin: 0;
  text-align: center;
  color: rgb(27, 27, 27);
}

.bloc-contact a{
  color: black;
  text-decoration: none;
}

.bloc-contact a:hover{
  color: white;
}



@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-50px); }
  }
  
  .boule1, .boule2, .boule3 {
    width: 20px;
    height: 20px;
    background-color: #B57225;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1s infinite;
  }
  
  .boule2 {
    animation-delay: 0.2s;
  }
  
  .boule3 {
    animation-delay: 0.4s;
  }
  
  @keyframes progress {
    0% { text-shadow: none; }
    20% { text-shadow: 0 0 0 red; }
    40% { text-shadow: 0 0 0 blue; }
    60% { text-shadow: 0 0 0 green; }
    80% { text-shadow: 0 0 0 yellow; }
    100% { text-shadow: 0 0 0 purple; }
  }
  
  h4 {
    animation: progress 4s infinite;
  }

  @media (max-width: 600px) {
    .wrapper{
      height: 80vh;
    }
    .logo {
        max-width: 70%;
        height: auto;
    }
    h4 {
        font-size: 2.1rem;
    }

    .footer .services{
      flex-direction: column;
    }

    .services .bloc-services{
      width: 100%;
      padding: 0;
    }

    .bloc-services .liste{
      flex-direction: column;
      columns: 1;
      font-size: 1.2rem;
    }

    h4{
      display: none;
    }


    .services .bloc-contact{
      width: 100%;
    }

    .bloc-contact h1{
      font-size: 1.2rem;
    }

    .bloc-contact h2{
      font-size: 1rem;
    }
}

/* Styles pour les écrans de 601 à 900 pixels de largeur */
@media (min-width: 601px) and (max-width: 900px) {
    .logo {
        max-width: 80%;
        height: auto;
    }
    h4 {
        font-size: 2.5rem;
    }

    .services .bloc-services{
      width: 100%;
      padding: 0;
    }



    .bloc-services .liste{
      font-size: 1.1rem;
      font-weight: 500;
    }

    .bloc-contact h1{
      font-size: 1rem;
    }

    .bloc-contact h2{
      font-size: .9rem;
    }

}


/* Styles pour les écrans de plus de 900 pixels de largeur */
@media (min-width: 901px) and (max-width: 1200px) {
    .bloc-services .liste{
      font-size: 1.3rem;
    }

    .bloc-contact h1{
      font-size: 1.2rem;
    }

    .bloc-contact h2{
      font-size: 1rem;
    }


}

  
  
  
  