*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


:root{
    --primary-color: #000000;
    --primary-color-opacity: rgba(0, 0, 0, 0.5);
    --secondary-color: #BBA895;
    --tertiary-color: #51402F;
    --alternate-color: #1E1C19;
    --overlay-color: rgba(0, 0, 0, 0.5);
}




/*  ///////////////////////////////////  */
/*     website wrapper
/*  ///////////////////////////////////  */

.wrapper{
    width: 100%;
    background-image: url(Img/body-2.png);
    background-size: cover;
    background-repeat: no-repeat;
}



/*  ///////////////////////////////////  */
/*      Navbar
/*  ///////////////////////////////////  */

.navbar{
    width: 100%;
    /* background-color: var(--primary-color); */
    background-color: var(--primary-color-opacity);
    /* backdrop-filter: blur(2px); */
    display: flex;
    padding: 20px 50px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 5px;
}





/*  ///////////////////////////////////  */
/*   greeting container
/*  ///////////////////////////////////  */

.greeting-div{
    min-width: 200px;
    display: flex;
    gap: 10px;
    align-items: center;
}



/*  ///////////////////////////////////  */
/*  animations for the greeting, emoji and time display
/*  ///////////////////////////////////  */

#greeting-emoji{
    width: 30px;
    height: 30px;
    opacity: 0;
    animation-name: emoji-move-up;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes emoji-move-up {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100%{
        transform: translateY(0);
        opacity: 1;
    }
    
}


#time{
    animation-name: time-reveal;
    animation-duration: 4s;
    animation-fill-mode: forwards;
}

@keyframes time-reveal {
    from {opacity: 0;
    }

    to{
        opacity: 1;
    }
    
}



#greeting{
    animation-name: greeting-reveal;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}


@keyframes greeting-reveal {
    from {opacity: 0;
    }

    to{
        opacity: 1;
    }
    
}




/*  ///////////////////////////////////  */
/*    texts in the navbar
/*  ///////////////////////////////////  */

.navbar-text{
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
    font-size: 30px;
}






/*  ///////////////////////////////////  */
/*      body section
/*  ///////////////////////////////////  */

.body-container{
    width: 100%;
    /* background-image: url(Img/body-2.png);
    background-size: cover;
    background-repeat: no-repeat; */
    padding: 70px 20px;
}


.body{
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--primary-color-opacity);
    /* backdrop-filter: blur(2px); */
    /* background-color: var(--primary-color); */
    border-radius: 30px;
    /* border: 1px solid var(--secondary-color); */
}





/*  ///////////////////////////////////  */
/*      section-1 containing the client pic
/*  ///////////////////////////////////  */

.section-1{
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    animation-name: sec-1-moveup;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    opacity: 0;
}

@keyframes sec-1-moveup {

    0%{
        transform: translateY(-20px);
        opacity: 0;
    }

    100%{
        transform: translateY(0);
        opacity: 1;
    }
    
}

.client-pic{
    width: 200px;
    aspect-ratio: 1;
}

.section-1-text-container{
    width: 50%;
}

.sec-1-secondary-text{
    font-size: clamp(10px, 5vw, 22px);
    font-family: "Poppins", sans-serif;
    color: var(--tertiary-color);
    margin-bottom: 3px;
    text-wrap: balance;
}

.sec-1-primary-text{
    font-size: clamp(15px, 5vw, 35px);
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
    margin-bottom: 5px;
    text-wrap: balance;
}






/*  ///////////////////////////////////  */
/*      section-2 conatining the about section
/*  ///////////////////////////////////  */
.section-2{
    width: 100%;
    padding: 20px 40px;
    animation-name: sec-2-reveal;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes sec-2-reveal {
    from{
        transform: translateY(-5px);
        opacity: 0;
    }

    to{
        transform: translateY(0);
        opacity: 1;
    }
    
}


.about-me{
    width: fit-content;
    font-size: clamp(15px, 5vw, 25px);
    font-family: "Poppins", sans-serif;
    color: var(--tertiary-color);
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-weight: 600;
    /* cursor: url(Img/cursor.png)16 16,auto; */
    cursor: pointer;
}

/* .about-me::after{
    border-radius: 5px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 75%;
    background-color: var(--tertiary-color);
    transition: 0.5s;
}

.about-me:hover::after{
    width: 100%;
} */

.about-me-text{
    font-size: clamp(15px, 3vw, 19px);
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
    position: relative;
    /* text-wrap: balance; */
}



/*  ///////////////////////////////////  */
/*     Horizontal scroll
/*  ///////////////////////////////////  */


.horizontal-scrol-parent{
    width: 100%;
    padding: 20px 40px;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}


.horizontal-scrol-child{
    min-width: 90px;
    min-height: 50px;
    border-radius: 10px;
    background-color: var(--alternate-color);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.horizontal-scrol-img{
    width: 40px;
    aspect-ratio: 1;
}







/*  ///////////////////////////////////  */
/*      section-3 conatining the skill section
/*  ///////////////////////////////////  */


.section-3{
    width: 100%;
    padding: 20px 40px;
}


/*  ///////////////////////////////////  */
/*      styling for the skills btn parent div
/*  ///////////////////////////////////  */


.skill-tab-div{
    margin: 10px auto;
    width: max-content;
    border-radius: 15px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    /* justify-content: center; */
    background-color: var(--alternate-color);
}



/*  ///////////////////////////////////  */
/*     main btn styling
/*  ///////////////////////////////////  */

.skill-btn{
    border-radius: 15px;
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
    /* font-size: 20px; */
    font-size: clamp(13px,2vw,20px);
    padding: 5px 10px;
    cursor: pointer;
    display: block;
}

.active-btn{
    background-color: var(--tertiary-color);
    transition: 0.5s;

}



/*  ///////////////////////////////////  */
/*    stylin for the skills content
/*  ///////////////////////////////////  */

.school-type,
.school-name,
.school-year {
    color: var(--secondary-color);
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    padding-left: 20px;
}

.school-type{
    font-weight: 600;
    position: relative;
}

.school-type::before{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    left: 0;
    top: 30%;
}
.school-year{
    font-size: 13px;
    margin-bottom: 20px;
}



.skill-img{
    width: 30px;
    aspect-ratio: 1;
}

.skill-type{
    color: var(--secondary-color);
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.skill-cont-children{
    display: flex;
    align-items: center;
    width: max-content;
    gap: 5px;
    margin-bottom: 10px;
}




/*  ///////////////////////////////////  */
/*     section-4 styling for my works section
/*  ///////////////////////////////////  */

.section-4{
    width: 100%;
    padding: 0 40px;
    animation-name: sec-2-reveal;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}







/*  ///////////////////////////////////  */
/*    Section 5
/*  ///////////////////////////////////  */

.section-5{
    width: 100%;
    padding: 20px 40px;
}


.work-content-overlay{
    width: 80%;
    height: 40%;
    backdrop-filter: blur(6px);
    border-radius: 10px;
    background-color: var(--overlay-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.href{
    text-decoration: none;
}


.work-content-title{
    color: var(--secondary-color);
    font-size: clamp(11px, 5vw, 30px);
    text-align: center;
    text-wrap: balance;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
}


.work-cont-animation{
    animation-name: work-cont-move;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes work-cont-move {
    from{
        opacity: 0;
        transform: translateY(-10px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
    
}



.Furniture{
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(Img/desktop_works_1.png); background-size: cover; background-position: center;
}

.ToDo{
    
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(Img/todo.png); background-size: cover; background-position: center;

}


/* .Diva{
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(Img/diva-works-desktop.png); background-size: cover; background-position: center;
} */


.G-port{
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(Img/g_port.png); background-size: cover; background-position: center;
}

.Weather{
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(Img/weather.png); background-size: cover; background-position: center;
}

.Furniture, .G-port, .Weather, .ToDo{
    border-radius: 20px;
    overflow: hidden;
    max-width:600px ;
    margin: 40px auto;
    height: 200px;
    mask: linear-gradient(0deg, transparent, white 50%);
    opacity: 0;  
    display: flex;
    align-items: center;
    justify-content: center;

}





/*  ///////////////////////////////////  */
/*    Section 6. contact me section
/*  ///////////////////////////////////  */

.section-6{
    width: 100%;
    padding: 20px 40px;
}

.contact-me-text{
    font-size: clamp(15px, 5vw, 19px);
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
}

.social-media-icon-container{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px; margin-bottom: 20px; 
}

/* .social-media-icon-child{
    width: 45px;
    height: 45px;
    background-color: var(--alternate-color);
    border-radius: 20px;
    padding: 10px;
    display: flex;
} */

.social-media-icons{
    width: 50px;
    background-color: var(--alternate-color);
    padding-top: 8px; padding-bottom: 8px; padding-left: 8px; padding-right: 20px;
    border-radius: 13px;
}


.cv-button{
    background-color: var(--secondary-color);
    border: none;
    outline: none;
    padding: 8px;
    font-size: clamp(15px, 5vw, 15px);
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
}

.cv-button:hover{
    transform: translatex(5px);
}


.footer{
    width: 100%;
    /* background-color: var(--primary-color); */
    display: flex;
    background-color: var(--primary-color-opacity);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 20px;
}


.footer-first-portion{
    padding-bottom:10px ;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 5px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--tertiary-color);
}

.fa-phone, .fa-house{
    width: 20px;
    aspect-ratio: 1;
    color: var(--tertiary-color);
}

.footer-info{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-second-portion{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

#footer-year{
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: var(--tertiary-color);
}


.footer-text{
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: var(--tertiary-color);
    text-align: center;
}

.footer-text-1{
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: var(--tertiary-color);

}




/*  ///////////////////////////////////  */
/*     media querry sections
/*  ///////////////////////////////////  */



@media screen and (max-width: 768px) {

    .client-pic{
        width: 100px;
        aspect-ratio: 1;
    }
    
    .section-1-text-container{
        width: 100%;
    }

    .sec-1-secondary-text{
        text-align: center;
    }
    
    .sec-1-primary-text{
       text-align: center;
    }
    
}