/* Common shared styles*/
body {
    font-family: 'lato', sans-serif;
    font-family: 'Open Sans', sans-serif;
}

.text-primary {
    color: #FD6E0A;
}

.btn-primary {
    border-radius: 5px;
    background: #FD6E0A;
    border: 0;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 35px;
}

.section-title {
    color: #181818;
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    line-height: normal;
}

.section-description {
    color: #757575;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
}

/*Nav related styles*/
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 200px;
}

.nav-title {
    color: #181818;
    font-size: 45px;
    font-weight: 800;
}

nav>ul {
    display: flex;
    align-items: center;
}

nav li {
    list-style: none;
    margin-right: 50px;
}

nav a {
    text-decoration: none;
    color: #474747;
}

/*Header related style*/
.header {
    background-color: #FFF8F3;
    background-image: url('../images/header_bg.png'), url('../images/developer.png');
    background-repeat: no-repeat;
    background-position: bottom right, top left;
}

.banner {
    padding: 30px 30px 0px 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-content {
    max-width: 500px;
}

.banner .pro-pic {
    height: 600px;
    width: 500px;
}

.banner-greeting {
    font-size: 45px;
    color: #474747;
    margin-bottom: 0;
}

.banner-title {
    font-size: 85px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 20px;
}

.banner-description {
    margin-bottom: 30px;
}

/*Main section styles*/

main section {
    margin-top: 130px;
}

main {
    max-width: 1140px;
    margin: 0 auto;
}

/* About section styles*/
.about {
    padding: 130px;
    border-radius: 10px;
    background: #FFF8F3;
    margin: 130px 0;
}

.about-info-container {
    display: flex;
    justify-content: space-around;
}

.about-info {
    text-align: center;
}

/* Skills related styles */
#what-i-do {
    padding: 30px 150px;
}

.skills {
    padding: 30px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
}

.skills-container {
    display: flex;
    gap: 24px;
}

.skill-description {
    color: Dark-03 #757575;
}

/* Resume section styles */
.resume-column-title {
    color: #474747;
    font-size: 30px;
    font-weight: 700;
}

.resume-container {
    display: flex;
    gap: 50px;
}

.resume-item-title {
    color: #474747;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.resume-item-info {
    margin-bottom: 20px;
    margin-top: 0px;
}

.resume-item-info,
.resume-item-description {

    color: #757575;
}

.resume-container hr {
    margin: 20px;
}

.download-cv {
    text-align: center;
    margin-top: 50;
}

/* Footer styles */
footer {
    display: flex;
    gap: 100px;
    background: #FFF8F3;
    padding: 130px 200px;
    margin-top: 100px;
}

.social-links  {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.footer-column {
    width: 50%;
}

.contact input[type="text"],
.contact input[type="email"],
textarea {
    display: block;
    margin-bottom: 25px;
    padding: 20px 30px;
    color: #757575;
    border-radius: 5px;
    background: #FFF;
    border: 0;
    width: 100%;
}

/* Mobile-specific resposive styles */

.hide {
    display: none;
}

@media screen and (max-width: 576px) {
    #what-i-do {
        padding: 30px 20px;
    }
    .skills-container, .resume-container, footer, .about-info-container, .banner,nav, nav>ul {
        flex-direction: column;
    }

    nav>ul {
        gap: 20px;
    }
    .banner .pro-pic {
        max-width: 100%;
        height: auto;
    }
    
    footer, .about {
        padding: 20px;
    }
    .btn-primary {
        margin-bottom: 10px;
    }
    .footer-column {
        width: 95%;
    }
    .contact input[type="text"], .contact input[type="email"], textarea {
        width: calc(100% - 40px);
    }
}

/* Tablet-specific responsive styles */

@media screen and (min-width: 576px) and (max-width: 992px) {
    #what-i-do {
        padding: 30px 50px;
    }
    .skills-container, .resume-container, footer, .about-info-container, .banner,nav, nav>ul {
        flex-direction: column;
    }

    nav>ul {
        gap: 30px;
    }
    .banner .pro-pic {
        max-width: 100%;
        height: auto;
    }
    
    footer, .about {
        padding: 50px;
    }
    .btn-primary {
        margin-bottom: 10px;
    }
    .footer-column {
        width: 95%;
    }
    .contact input[type="text"], .contact input[type="email"], textarea {
        width: calc(100% - 60px);
    }
} 
    
