/*///////////*/
/* VARIABLES */
/*///////////*/
:root {
    --color-primary: #fbe7ef;
    --color-secondary:#080e2c;
    --color-backround: #000000;
}

/*///////////*/
/*   HEADER  */
/*///////////*/
#bg-header {
    background-color: var(--color-backround);
    width: 100%;
    height: 100vh;
    background: url('../images/bg_header.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0;
}

#intro {
    margin-top: 20vh;
}
hr {
    background-color: var(--color-primary);
}

nav a {
    color: var(--color-primary) !important;
    font-size: 24px !important;
    margin-right: 2vw;
}

#navbarNav {
    margin-right: 8vw;
}

nav a:hover {
    color: var(--color-backround) !important;
    border-bottom: solid var(--color-backround) 2px;
}

.divider {
    background-color: var(--color-backround) !important;
    width: 30%;
}

.jumbotron {
    margin-bottom: 0;
}

/*///////////*/
/*   ABOUT   */
/*///////////*/
#about {
    padding-top: 64px;
    padding-bottom:64px;
    background-color: var(--color-backround);
    max-width: 100%;
    height: 100vh;
    background: url('../images/bg_aboutme.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0;
    color: var(--color-primary);
}

#about p {
    font-size: 26px;
}

#face {
    width: 15%;
    height: 15%;
    margin-bottom: 2vh;
}

.list-group {
    display: table;
    margin: 0 auto;
}

.list-group-item {
    text-align: left;
    background-color: transparent;
    border: none;
    color: var(--color-secondary);
}

/*///////////*/
/*   WORK    */
/*///////////*/
.card {
    border-radius: 5%;
    transition: transform .2s;
}

.card:hover {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    transform: scale(1.03);
}

.card-img-top {
    height: 40vh;
    background-color: var(--color-backround);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    object-position: 100% 0px;
    color: var(--color-primary);
    max-width: 100%;
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
}

/*///////////*/
/*  CONTACT  */
/*///////////*/
.contact {
    padding: 10rem 0;
    background: url(../images/bg-contact-me.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}

.contact .form-inline input {
    box-shadow: 0 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1) !important;
    padding: 1.25rem 2rem;
    height: auto;
    font-size: 80%;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    border: 0;
}

/*///////////*/
/*  FOOTER   */
/*///////////*/
.social {
    padding: 4rem 4rem;
}

.social a {
    text-align: center;
    height: 3rem;
    width: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
    line-height: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.social a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.social a:active {
    color: #fff;
}

.bg-black {
    background-color: #000000 !important;
}

/*///////////*/
/*  BUTTONS  */
/*///////////*/
.btn {
    padding: 1rem 2rem;
    text-transform: uppercase;
    border: 1px solid var(--color-primary);
    border-radius: 100px;
}

.btn:hover {
    box-shadow: 4px 6px 4px 2px rgba(0,0,0,0.75);
    -webkit-box-shadow: 4px 6px 4px 2px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 6px 4px 2px rgba(0,0,0,0.75);
}

/*///////////*/
/* UTILITIES */
/*///////////*/
.text-dark {
    color: var(--color-secondary) !important;
}

.text-light {
    color: var(--color-primary) !important;
}

/*////////////*/
/* RESPONSIVE */
/*////////////*/
@media only screen and (max-width: 992px) {
    nav a {
        text-align: center;
    }

    nav a:hover {
        color: var(--color-backround) !important;
        border-bottom: none;
    }

    h1 {
        font-size: 28px !important;
    }
    
    h2 {
        font-size: 26px !important;
    }

    h4 {
        font-size: 22px !important;
    }

    p {
        font-size: 18px !important;
    }

    #face {
        width: 30% !important;
        height: 30% !important;
    }

    .btn {
        padding: 0.5rem 1rem;
        text-transform: uppercase;
        border: 1px solid var(--color-primary);
    }

    .list-group-item {
        font-size: 16px !important;
        padding: 0.25rem 0.5rem !important;
    }

    .card {
        width: 24rem !important;
        margin-bottom: 2rem !important;
    }

    .card:hover {
        transform: scale(1);
    }

    #hide {
        display: none;
    }

    #contact {
        padding: 25px !important;
    }
}
