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

:root {
    --logo: url('/img/logo_Coublanc.png') ;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

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

.container {
  position: relative;
  display: flex;
  position: relative;
  height: 100vh;
  width: 100vw;
  margin: 0 auto;
}

.logo-header{
    position: absolute;
    height: 140px;
    width:250px;
    background-color: white;
    /*background-image:url('/img/logo_Coublanc.png') ;*/
    background-image: var(--logo) ;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    z-index :10;
    border-radius: 0 0 20px 20px ;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}


.particulier {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  background: url("../img/espace_particulier2.jpg");
  background-size: cover;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.2);
}

.line-black {
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  background-color: rgb(97, 97, 97);
  width: 1px;
}

.left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 100%;
  padding: 16px;
}

.left img {
  width: 100%;
  object-fit: cover;
}

.right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 100%;
  padding: 16px;
}

.right p,
.left p {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.pro {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  background: url("../img/espace_pro2_modif.jpg");
  background-size: cover;
  background-position: left center;

}

.flex-container {
  display: flex;
  width: 350px;
  height: 200px;
  background-color: white;
  border-radius: 16px;
  position: relative;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s all;
}

.flex-container:hover {
  transform: scale(1.05);
}

.line-center {
  position: absolute;
  height: 50%;
  width: 10px;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.circle-transition {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    transform: scale(0);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    z-index: 9999;
    transform-origin: center center;/
}

.circle-transition.animate {
    transform: scale(200);
}

@media screen and (max-width: 800px) {
    .container{
        flex-direction: column;
    }

    .particulier, .pro{
        width:100%;
    }

    .line-center{
        height: 10px;
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .flex-container{
        width: 250px;
    }
}