@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');


:root {
    --white: #ffffff;
    --body: #6b788f;
    --dark: rgb(67, 70, 112);
    --border-color: rgb(59, 62, 99);
    --border-width: 1px;
    --border-radius: 30px;
    --blue: rgb(59, 62, 99);
}

/* reset & helpers */
body {
    font-family: "Concert One", sans-serif;
    line-height: 1.8;
    color: var(--body);
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 800;
    color: var(--dark);
}

h2,h4{
    font-family: 'Courier New', Courier, monospace;
}


a {
    color: var(--body);
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 700;
}

a:hover {
    color: var(--dark);
}

img {
    width: 100%;
}

section {
    padding-top: 170px;
    padding-bottom: 170px;
}

/* navbar */
.navbar {
    position: absolute;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    z-index: 9999;
}

.navbar-brand {
    font-size: 30px;
    text-transform: lowercase;
}

.navbar .navbar-nav .nav-link {
    text-transform: lowercase;
    font-size: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 18px;
    margin-left: 20px;
}

@media (max-width: 992px) {
    .navbar {
        background-color: var(--dark);
        overflow-x: auto;
    }
}

/* home */
#home {
    background-color: var(--blue);
    min-height: 100vh;

}

#home h6{
    color:rgb(148, 151, 200);
}


#home h1,p {
    color: var(--white);
}

#home h1 {
    font-weight: 900;
}

#home p {
    font-size: 18px;
    max-width: 450px;
}


/* btn */
.btn {
    padding: 20px 44px;
    border-width: 2px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}


/* intro */
.intro {
    margin-bottom: 60px;
}

.intro .hr-line {
    width: 60px;
    height: 4px;
    background-color: var(--body);
    display: inline-block;
}

.intro h1 {
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 16px;
}

.intro p {
    max-width: 500px;
}

.intro.intro-dark h1,
.intro.intro-dark p {
    color: white;
}

.intro.intro-dark .hr-line {
    background-color: white;
}

/* Service */
.service {
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    padding: 32px;
}

.service .icon {
    width: 100px;
    height: 100px;
    background-color: var(--dark);
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: white;
    border-radius: var(--border-radius);
    margin-right: 16px;
}

.link-arrow {
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.link-arrow i {
    transition: all 0.4s ease;
}

.link-arrow:hover i {
    transform: translate(5px, -5px);
}

.link-arrow.link-dark {
    color: var(--body);
}
.link-arrow.link-dark:hover {
    color: white;
}

/* wrok */
#work {
    background-color: var(--dark);
}

.projects h3 {
    color: white;
    margin-top: 24px;
}

.projects .image-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.projects .image-wrapper img {
    border-radius: var(--border-radius);
    transform: scale(1.1);
    transition: all 0.4s ease;
}

.projects:hover .image-wrapper img {
    transform: scale(1);
}

.projects h1{
    padding-top: 100px;
}

/* about */


#about {
    background-color: rgb(101, 110, 150);
    padding: 10%;
}

#about h2{
    font-size: 20px;
    color: var(--white);
}


#about h1,p{
    color: white;
}



#resume{
    padding-left: 5%;
} 

#resume iframe{
    padding-bottom: 2%;
}

#resume a{
    size-adjust: auto;
}

#contact h1{
    background-color:rgb(30, 31, 48);
    color: white;
    padding: 20px, 20px;
}

#contact p{
    color:white;
}

#contact{
background-color: rgb(67, 70, 112);
}


#resume {
    background-color: #ffffff;
}



#projects p{
    color: var(--blue);
}


#contact h1{
    font-size: 50px;
}

#contact p{
    color: white;
}

.card-img-top {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.card-text{
    margin-left: 10%;
    margin-right: 10%;
}

/* contact */
#contact form {
    padding: 32px;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius);
}

#contact form .form-control {
    background-color: #f8f8f8;
    border: transparent;
    border-radius: var(--border-radius);
    padding-left: 18px;
}

#contact form input.form-control {
    height: 56px;
}

/* insta posts */
#insta-posts {
    position: relative;
}

.insta-follow {
    width: 90px;
    height: 90px;
    background-color: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    border-radius: var(--border-radius);
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.insta-follow:hover {
    background-color: white;
}

#insta-posts:hover .insta-follow {
    opacity: 1;
    top: 50%;
}

/* footer */
.footer-top {
    padding-bottom: 30px;
    border-bottom: var(--border-width) solid var(--border-color);
}

.footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

footer .social-links a {
    border: var(--border-width) solid var(--border-color);
}

.color img{
    -webkit-filter: opacity(20%) grayscale(100%);
    -webkit-transition: all 1s ease;
}
    
.color img:hover{
    filter: grayscale(0%);
    filter: gray;
    -webkit-filter: grayscale(0%);
    filter: none;
    transition: 1s ease;
}

#about img{
    filter:opacity(70%) grayscale(60%);
    
}


.invalid-feedback{
    color:rgb(24, 163, 255);
}


.form-label{
    color:rgb(255, 255, 255);
}



.home{
    padding-left: 5%;
    padding-right: 5%;
}

body html{
    overflow-x: hidden;
}