*{
    margin:0;
    padding:0;
    box-sizing: 0;
    scroll-behavior: smooth;
}
body{
    min-height: 100vh;
    background-image:url(../assets/images/wave-haikei.svg.xml);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
nav{
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index: 1000;
}
nav ul{
    width:100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}
nav li{
    height: 50px;
}
nav a{
    height:100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color:black;
}
nav a:hover{
    background-color: rgba(105, 102, 102, 0.1);
}
nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:250px;
    z-index: 999;
    background-color:rgba(236, 64, 122, 0.7);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display:none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    backdrop-filter: blur(10px);
    margin-top: 2.7rem;
}
.sidebar li{
    width:100%;
}
.sidebar a{
    width: 100%;
}
.han{
    display: none;
}
.m{
    color:#AD1457;
}
.heading{
    padding:2rem;
   
}
.box1 h1{
    margin-top: 2rem;
    color:#D2306c;
    letter-spacing: 1px;
}
.btn{
    padding:0.5rem 2rem;
    background-color: #D2306c;
    display: inline-block;
    font-weight: bold;
    color:white;
    margin-top: 12px;
    border-radius: 20px;
    text-decoration: none;
}

.box1 p{
    font-size: 15px;
    line-height: 1.4rem;
    margin-top: 1rem;
}

.box2{
    background-image:url(./images/item5.jpg);
    height: 50vh;
    width:100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100% );
    margin-top: 1rem;
    border-radius: 1rem;
}
.pic-one{
    background-image: url(../assets/images/item1.jpg);
}
.pic-two{
    background-image: url(../assets/images/item2.jpg);
}
.pic-three{
    background-image: url(../assets/images/item5.jpg);
}
.pic-four{
    background-image: url(../assets/images/item4.jpg);

}
.category-card{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding:9px;
}
.snaps{
    height: 30vh;
    /* width:40%; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 2px;
    transition: transform 1s ease, filter 2s ease;
   
}
.snaps:hover{
    transform: scale(0.95);
    filter:brightness(1.1)
}
.categories{
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 300px;
    gap:1.2rem;
    margin-top: 1rem;
    opacity: 0;
    animation: slideFade 0.7s ease forwards;
}
.categories:nth-child(odd){
    transform: translateY(-40px);
}
.categories:nth-child(even){
    transform: translateY(40px);
}
@keyframes slideFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.categories-sec{
    padding:2rem;
}
.categories-sec h2{
    text-align: center;
    background:linear-gradient(to left, pink, deeppink) ;
    -webkit-background-clip: text;
    -webkit-text-fill-color:transparent;
    font-size: 2rem;
    letter-spacing: 2px;
}
.keep{
    margin-top: 1rem;
    line-height: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.category-card{
    margin-top: 3rem;
}
@keyframes fadeSlideUp {
    0%{
        opacity: 0;
        transform: translateY(40px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.box1{
    animation:fadeSlideUp 1s ease-in-out forwards ;
}
.maison{
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    color: rgba(46, 30, 58);
    text-align: center;
    text-decoration:underline;
}
.maison:hover{
    text-decoration: underline;
    color: #AD1457;
    cursor: pointer;
}
.why-shop{
    padding: 2rem;
    margin-top: 2rem;
    background-color:whitesmoke;
}
.why-shop p{
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.now{
    color: #AD1457;
}
.card{
    background-image: url(../assets/images/blob.svg);
    min-height: 40vh;
    background-repeat: no-repeat;
    background-position: center;
}
.why-buy{
    padding:2rem;
    /* background-image: url(../assets/images/blob.svg);
    min-height: 50vh;
    background-repeat: no-repeat;
    background-position: center; */
}
.why-card{
    box-shadow: 0 4px 8px rgba(243, 186, 186, 0.3);
    padding: 1.3rem;
    border: 2px solid rgb(248, 241, 241);
    border-radius: 1rem;
    margin-top: 2rem;
}
.project{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1.3rem;
    background-color: #FF0066;
    font-size: 16px;
    border: none;
    color:white;
    font-weight: bold;
    border-radius: 10px;
    transition: 0.2s ease;
}
.project span{
    filter: invert(1);
}
.project:hover{
    background-color:#ff0066a5 ;
}
@media(max-width:800px){
    .hideonmobile{
        display: none;
    }   
    .han{
        display: flex;
    }
}
@media(min-width:963px){
    .box{
        display:flex;
        align-items: center;
        padding: 4rem 2rem;
    }
    .box1{
        max-width: 600px;
    }
    .box1 h1{
        font-size: 2.2rem;
    
    }
    .categories{
        grid-template-columns: 1fr 1fr 1fr 1fr;
        max-width: 960px;
        margin: auto;
    }
    .why-shop p{
        max-width: 600px;
        margin: auto;
        margin-top: 1rem;
    }
    .now{
        display: inline-block;
        position: relative;
        left:18.7rem;
    }
    .why-cards{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap:0.5rem;
        max-width: 900px;
        margin: auto;
    }
}
@media(min-width:800px){
    .categories{
        grid-template-columns: 1fr 1fr 1fr 1fr;
        max-width: 1000px;
        margin: auto;

    }
    .why-cards{
        display:grid;
        grid-template-columns: 1fr 1fr;
    }
    .why-shop p{
        max-width: 600px;
        margin: auto;
        margin-top: 1rem;
    }
    .now{
        display: inline-block;
        position: relative;
        left:18.7rem;
    }
}
@media(min-width:604px){
    .categories{
        grid-template-columns: 1fr 1fr ;
        max-width: 800px;
        margin: auto;

    }
}