/* https://images.unsplash.com/photo-1646689481769-3c4f23d54927?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80 */

/* importing font family */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-size;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* HEADER SECTION */

header {
    background-image: url(https://images.unsplash.com/photo-1603302576837-37561b2e2302?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=868&q=80);
    background-size: cover;
    background-position: 50%;
    height: 110vh;
    position: relative;
}

.header-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    height: 110vh;
    width: 100%;
}

.header-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
}


/* LOGO */
.logo {
    font-size: 30px;
    font-weight: bold;
    color: #f9320a;
}

/* NAV LINK */
.nav-link  {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.5s;
    padding: 10px;
    margin: 10px;
    transition: all .2s;
}

.nav-link:hover {
    color: #320d3e;
    box-shadow: 0 1rem 2rem rgba(#000, .4);
    transform: rotate(5deg) scale(1.3);
    cursor: pointer;
    position: relative;
    bottom: 10px;
}

.nav-link.active {
    color: #320d3e;
}

.hero-wrapper {
    position: relative;
    display: flex;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    bottom: 50px;  
}
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.full-name {
    color: #ffffff;
    font-size: 35px;
    text-transform: uppercase;
    margin: 10px 0;
}

.brief {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* icons */
.hero-media-wrapper svg{
    width: 30px;
    height: 30px;
    fill: #ffffff;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px;
    margin: 10px;
    transition: 0.5s;
}

.btn {
    /* background-color: #f9320a; */
    background-color: #320d3e;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 24px;
    border: none;
    margin: 10px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.5;
}

.btn:hover {
    opacity: 0.8;
    
}

.download-btn {
    background-color: #fff;
    /* color: #f9320a; */
    color: #320d3e;
}

.download-btn:hover {
    opacity: 0.8;
    /* background-color: #f9320a; */
    background-color: #320d3e;
    color: #fff;
}

/* MAIN BODY CONTENT */

main {
    margin-top: 90px;
}

.section {
    padding: 40px;
}

.section h2 {
    font-size: 30px;
    font-weight: bold;
    /* color: #f9320a; */
    color: #320d3e;
    margin-bottom: 10px 0;
    text-transform: uppercase;
    text-align: center;
    transition: all .2s;
}

.section h2:hover {
    transform: skewY(2deg) skewX(15deg) scale(1.1);
    text-shadow: .5rem 1rem 2rem rgba(#000, .2);
}

.about-me {
    width: 65%;
    margin: 0 auto;
}

.about-brief{
    text-align: center;
    margin-top: 20px;
    line-height: 2;
}

/* CURRENTLY WORKING AT */
.place-of-work-section {
    margin: 40px 0;
    background-color: #320d3e;
    /* background-color: #ff0000; */
    min-height: 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.place-of-work-section h2 {
    color: #ffffff;
}

.place-of-work-wrapper {
    text-align: center;
    margin: 40px 0;
}
.place-of-work-pill:hover {
    color:#fff;
    cursor: pointer;
    position: relative;
    bottom: 10px;
}
    

.place-of-work-pill {
    background-color: #000;
    color: #fff;
    padding: 10px;
    margin: 4px;
    border-radius: 26px;
    font-size: 14px;
    transition: 1.5;
}

/* PROJECT CARDS */
.project-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 60px;
    margin-top: 2rem;
}

.project-card {
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 5px;
    width: 25%;
}

.project-card:hover {
    transform: translateY(-1.5rem) scale(1.03);
}

.project-card-img {
    width: 100%;
    height: 200px;
}

.card-content {
    width: 300px;
    padding: 2px 16px;
}

.project-title {
    color: #320d3e;
    /* color: #f9320a; */
    margin-bottom: 10px;
    font-size: 17px;
    
}

.project-brief {
    font-size: 14px
}
    
.project-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.project-links svg {
    width: 20px;
    height: 20px;
    fill: #320d3e;
    /* fill: #f9320a; */
}

/* STACK PROGRESS */

.stack-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

/* chrome */
.stack-progress::-webkit-progress-bar {
    background-color: #eee;
    border-radius: 100px;
}

.stack-progress::-webkit-progress-value {
    background-color: #320d3e;
    /* background-color: #ff0000; */
    border-radius: 100px;

}

/* firebox */
.stack-progress::-moz-progress-bar {
    background-color: #eee;
    border-radius: 100px;
}

/* internet explorer browser */
.stack-progress {
    color: #320d3e;
    /* color: #ff0000; */
    border-radius: 100px;

}

.stack-progress-wrapper label {
    display: block;
}
/* service section */
.service-section {
    margin: 40px;
    min-height: 300px;
    background-color: #320d3e;
    /* background-color: #ff0000; */

}

.service-section h2 {
    color: #fff;
    margin-bottom: 40px;
}

.service-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.service-card:hover {
    transform: translateY(-1.5rem) scale(1.03);
}

.service-card {
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 5px;
    padding: 20px;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    box-shadow: 0 8px 16px 0 rgba(255, 255, 255, 0.4);
    background-color: #fff;
}

.service-card svg {
    width: 30px;
    height: 30px;
    color: #000;
    margin-bottom: 10px;
}

.service-card-content {
    text-align: center;
    padding: 2px 16px;
    width: 200px;
}

.service-title {
    color: #320d3e;
    /* color: #f9320a; */
    margin-bottom: 10px;
    font-size: 17px;
}

.service-brief {
    font-size: 14px;
    color: #000;
}

/* work with me form section */
.form-section form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
}


.form-group input {
    border: 2px solid #320d3e;
    /* border: 1px solid #f9320a; */
    border-radius: 5px;
    padding: 10px;
    width: 400px;
    margin-bottom: 10px;
    font-size: 14px;

}

.form-group textarea {
    border: 2px solid #320d3e;
    /* border: 1px solid #f9320a; */
    border-radius: 5px;
    padding: 10px;
    width: 400px;
    height: 350px;
    resize: none;
    margin-bottom: 10px;
}


/* .form-group button {
    background-color: #f9320a;
    color: #fff;
    border-radius: 26pxpx;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    
} */

/* social media */
.social-account-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 100px;
}

.social-account-wrapper  svg {
    width: 30px;
    height: 30px;
    fill: #320d3e;
    /* fill: #f9320a; */
}

.social-account-wrapper svg:hover {
    fill: #000;
    cursor: pointer;
    position: relative;
    bottom: 10px;
}