
*{
    font-family: "Roboto Slab", ser;
}



header{
    text-align: center;
    background-color: black;
    

}

body,html{
    padding: 0px;
    margin: 0px;
    height: 100%;
    width: 100%;


}

.woman{
    margin: 0px;
    padding:0px;
    height: 100;
    width: 375px;
}

.man{
    margin: 0px;
    padding:0px;
    height: 100%;
    width: 375px;
}




.content{
    padding: 40px;
    background-color: white;
   
}

.col{
    color: black;
 
    letter-spacing: 10px;
    text-align: center;
    padding-bottom: 40px;
}




#lof:hover {
    transform: scale(1.1);
    transition: 0.7s;

}


.opis{
    
    box-shadow: 5px 5px 10px black ;
    padding-top: 10px;
    border-radius: 2rem;
    background-color: black;
   text-align: center;
    height: 200px;
    color: white;
    font-size: 20px;
    
    

   
}


.clothes  {

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    box-shadow: 5px 5px 10px black ;
    background-color: black;
    height: 200px;
    width: 100%;
    margin-top: 60px;


 
}  


.photo   {
height: 170px;
width: 200px;
text-align: center;
}





.button{
    
    height: 70px;
    background: transparent;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-left: 75px;
    padding: 15px 40px;
    border: 3px solid white; /* Зелена рамка */
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.button:hover{
    box-shadow: 2px 2px 2px white,
                -2px -2px 2px black;

    transform: scale(1.1);
    transition: 0.3s;
    background: rgb(42, 43, 47);
}





.opis:hover {
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
  }

.clothes:hover {
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
  }



.phototwo{
    height: 170px;
    width: 180px;
    text-align: center;
}



  
  body,html {
    font-family: "Outfit", sans-serif;
    text-transform: capitalize;
    background-color: rgb(0, 0, 0);
    flex-direction: column;
  }
  

 .foot{
    display: flex;
    height:200 px;
    background-color: black;
    color: white;
    text-decoration: underline;

}




.faq{
    margin-left: 130px;
    margin-top: 60px;
    text-decoration: underline;
    
}

.inf{
 
    margin-top: 60px;
}

.logo{
    height: 150px;
    
    margin-top: 100px;
    
}

.final{

    margin-top: 20px;
   

}





.top{
   
        background-color: black;
        font-size: 1.2rem;
        font-family: "Merriweather Sans", sans-serif;
        height: 70px;

      
     
      }





.nav{
    text-decoration: underline;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 80%;
    margin-left:200px ;



   
}


nav ul{
    display: flex;
}

.top .nav{

    justify-content: space-between;
    

}

div{
    width: 100%;
    overflow: hidden;
}

.nav ul li {
    list-style-type: none;
    
  
  }

  

  .top .nav ul li {
    padding: 10px;
    margin: 0 10px;
  }

.no{
height: 70px;

   
}



@media (max-width: 1200px) {
    .nav {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
    }
    .nav ul {
        flex-direction: column;
        text-align: center;
    }
    .nav ul li {
        margin: 10px 0;
    }
}

@media (max-width: 992px) {
    .top {
        height: auto;
    }
    .nav {
        flex-direction: column;
    }
    .woman, .man {
        width: 50%;
    }
    .content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .top {
        height: auto;
        padding: 10px;
    }
    .nav ul {
        display: block;
        text-align: center;
    }
    .woman, .man {
        width: 100%;
    }
    .clothes {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    .photo, .phototwo {
        width: 100%;
        height: auto;
    }
    .button {
        margin-top: 10px;
        width: 100%;
    }
    .footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .nav {
        text-align: center;
    }
    .nav ul {
        display: block;
        padding: 0;
    }
    .nav ul li {
        display: block;
        margin: 5px 0;
    }
    .content {
        padding: 10px;
    }
    .opis, .clothes {
        width: 100%;
        text-align: center;
    }
    .photo, .phototwo {
        width: 80%;
        margin: auto;
    }
    .button {
        width: 100%;
        text-align: center;
    }
    .sidebar {
        width: 100%;
    }
}





.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
  }
  .preloader.hidden {
    opacity: 0;
    pointer-events: none;
  }
  .loader {
    border: 5px solid white;
    border-top: 5px solid gray;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  /* Анімація появи сайту */
  body {
    opacity: 0;
    transition: opacity 1s ease-in;
  }
  body.loaded {
    opacity: 1;
  }


.logo-down{
    padding-top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}




.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    color: black;
    transition: 0.3s;
    padding: 20px;
    box-shadow: -5px 0 10px rgba(0,0,0,0.3);
}



.sidebar.active {
    right: 0;
}
.close-btn {
    cursor: pointer;
    color: rgb(0, 0, 0);
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 20px;
}
.contact {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}



@font-face {
    font-family: 'Lighthaus';
    src: url('fonts/Lighthaus.ttf') format('truetype'); /* або .otf, якщо у тебе такий файл */
    font-weight: normal;
    font-style: normal;
}


.cart{

    height: 50px;
    margin-left: 20px;
    border-radius: 2rem;
    border:2px solid white ;
    border-radius: 3px;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    display: inline-block;
    background-color: black;
    color: white;
    font-size: 20px;
}


.cart:hover{
    box-shadow: 2px 2px 2px white,
                -2px -2px 2px black;
    transform: scale(1.1);
    transition: 0.3s;
    background: rgb(42, 43, 47);
}



