*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background:#FCDFEB ;
    color: #F6ABCC;
}
#header{
    width: 100%;
    height: 100vh;
    
}
.container {
    padding: 10px 7%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Logo{
    width: 200px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #C27A6B;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #F6ABCC;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}

.home-text h1{
    position: relative;
    font-size: 45px;
    margin-top: 200px;
}

.quotes-text p{
    position: relative;
    font-size: 25px;
    margin-top: 1px;
}

.home-logo{
    position: relative;
    width: 470px;
}

.home-img{
    position: relative;
    width: 600px;
    margin-top: -230px;
    float: right;
}



#personality{
    padding: 30px 0;
}
.container h1{
    font-size: 45px;
}
.personality-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.personality-list div{
    background: #FFFFFF;
    padding: 40px;
    font-size: 20px;
    font-weight: 300;
    border-radius: 20px;
    transition: background 0.5s, transform 0.5s;
}
.personality-list div h2{
    font-size: 30px;
}
.personality-list div:hover{
    background: #C27A6B;
    color: #FFFFFF;
    transform: translateY(-10px);
}



#projects{
    padding: 65px 0;
}
.project-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.illustration-work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.illustration-work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.layer{
    width: 100%;
    height: 0%;
    color: #FFFFFF;
    background: #F6ABCC;
    opacity: 0.9;
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 18px;
    transition: height 0.5s;
}
.layer h3{
    font-weight: 50px;
    margin-bottom: 20px;
}
.illustration-work:hover img{
    transform: scale(1.1);
}
.illustration-work:hover .layer{
    height: 100%;
}



#project{
    padding: 65px 0;
}
.project-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.campaignrebranding-work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;  
}
.campaignrebranding-work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.layer{
    width: 100%;
    height: 0%;
    color: #FFFFFF;
    background: #F6ABCC;
    opacity: 0.9;
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 18px;
    transition: height 0.5s;
}
.layer h3{
    font-weight: 100px;
    margin-bottom: 20px;
}
.campaignrebranding-work:hover img{
    transform: scale(1.1);
}
.campaignrebranding-work:hover .layer{
    height: 100%;
}



#project{
    padding: 65px 0;
}
.project-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 30px;
}
.photography-work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;  
}
.photography-work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.layer{
    width: 100%;
    height: 0%;
    color: #FFFFFF;
    background: #F6ABCC;
    opacity: 0.9;
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 18px;
    transition: height 0.5s;
}
.layer h3{
    font-weight: 100px;
    margin-bottom: 20px;
}
.photography-work:hover img{
    transform: scale(1.1);
}
.photography-work:hover .layer{
    height: 100%;
}



.contact{
   padding-top: 60px;
}

.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-left{
    position: relative;
    margin-top: 50px;
    flex-basis: 25%;
}
.contact-left img{
    margin-top: 90px;
    margin-bottom: 20px;
    width: 250px;
    border-radius: 10px;
}
.contact-right{
    flex-basis: 65%;
    margin-top: 50px;
}

.contact-right h1{
    margin-top: 100px;
    margin-left: -50px;
}
.contact-right p{
    margin-top: 30px;
    font-size: 20px;
}

.contact-right p i{
    color: #F6ABCC;
    margin-right: 10px;
    margin-left: -50px;
    font-size: 30px;
}
.social-icons{
    margin-top: 30px;
    margin-left: -50px;
}
.social-icons a{
    text-decoration: none;
    font-size: 80px;
    margin-right: 15px;
    color: #F6ABCC;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: #C27A6B;
    transform: translateY(-5px);
}

.contact-right img{
    margin-top: -350px;
    width: 400px;
    float: right;
}


.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #FFFFFF;
    font-weight: 300;
    margin-top: 60px;
}






/* ------- CSS for small screens -------- */
nav .fa-solid{
    display: none;
}
@media only screen and (max-width: 600px){
    .home-text {
        margin-top: 100%;
        font-size: 16px;
    }
    .home-text h1{
        font-size: 30px;
    } 
    nav .fa-solid{
        display: block;
        font-size: 30px;
        cursor: pointer;
    }
    nav ul{
        background: #FFFFFF;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
    .home-img{
        position: relative;
    width: 550px;
    margin-top: -350px;
    float: right;
    }
    .home-logo{
        position: relative;
        width: 300px;
    }
    .quotes-text p{
        position: relative;
        font-size: 17px;
        margin-top: 1px;
        margin-bottom: 5px;
    }

    #personality{
        padding: 70px 0;
    }
    
    .contact-left img{
        margin-top: 90px;
        margin-bottom: 5px;
        width: 300px;
        border-radius: 10px;
    }
    .contact-right h1{
        margin-top: 40px;
        margin-left: -6px;
    }
    .contact-right p i{
        color: #F6ABCC;
        margin-right: 10px;
        margin-left: -6px;
        font-size: 20px;
    }
    .social-icons{
        margin-top: 30px;
        margin-left: -6px;
    }
    .social-icons a{
        text-decoration: none;
        font-size: 70px;
        margin-right: 15px;
        color: #F6ABCC;
        display: inline-block;
        transition: transform 0.5s;
    }
    .contact-right img{
        margin-top: -3px;
        width: 380px;
    }

    .copyright{
        width: 100%;
        text-align: center;
        padding: 25px 0;
        background: #FFFFFF;
        font-weight: 300;
        margin-top: 30px;
    }
    
}