/* Styles pour le site cuirtech
*
* Date de création : 26 nov 2025
* Par : Hybride Design
*
* Dernière mise à jour : 27 nov 2025
*
*/

/* On importe la Lato depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

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

 body{
    padding: 0;
    margin: 0;
 }

 h1,p,a{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #A4ADB1;
 }

 h1{
   line-height: 1.5;
 }

 a{
    text-decoration: none;
 }

 a span{
    margin-left: 10px;
 }

 .site-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    background-image: url(images/CuirTech_Texture_Logo_background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }

 .site-wrapper .content{
    max-width: 30vw;
    margin-top: 15rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
 }

 .boutons-cta{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
 }

 .button{
    border: 2px solid #A4ADB1;
    border-radius: 30px;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all .3s ease;
 }

 svg path{
    transition: all .3s ease;
 }

 .button:hover{
    background: #A4ADB1;
    color: #000;

    svg path{
        fill: #000;
    }
 }

 footer{
      position: absolute;
      bottom: 1.5rem;

      p{
         font-size: .8rem;
      }
      
 }

 /* Responsive */

  @media only screen and (max-width: 1600px){
    .site-wrapper .content{
        max-width: 45vw;
      }
  }

  @media only screen and (max-width: 1080px){
    .site-wrapper .content{
        max-width: 60vw;
      }
  }

  @media only screen and (max-width: 800px){
    .site-wrapper .content{
        max-width: 70vw;
      }
  }

 @media only screen and (max-width: 675px){
    h1,p,a{
      font-size: 17px;
   }

     .boutons-cta{
        flex-direction: column;
     }

     .button{
        justify-content: center;
     }

      .site-wrapper{
        background-image: url(images/CuirTech_Texture_Logo_background-mobile-update.jpg);
      }

      .site-wrapper .content{
        max-width: 80vw;
        margin-top: 5rem;
      }

      .address{
         margin: 0 2rem;
      }
 }