@import "Vazir-Regular-FD.css";
@import "fontawesome.css";

* {
    margin: 0;
    box-sizing: border-box;
}

.theme--light {
    --back: #dfdfec;
    --element: linear-gradient(45deg, #bfbfd9, #fff);
    --shadow: #bfbfd9;
    --pils-back: rgba(0, 0, 0, 0.05);
    --text-primary: #333;
    --text-secondary: #555;
    --text-third: #000;
    --text-cv: #1a53ff;
}

.theme--dark {
    --back: #131417;
    --element: linear-gradient(45deg, #101010, #2c3e50);
    --shadow: #3f5973;
    --pils-back: rgba(255, 255, 255, 0.05);
    --text-primary: white;
    --text-secondary: #6b8cae;
    --text-third: #777;
    --text-cv: #ef5350;
}

input[type=checkbox] {
    z-index: -1;
    display: none;
}

a:visited, a:link {
    text-decoration: none;
}

html, body {
    direction: rtl;
    background: var(--back);
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-family: Vazir-Regular-FD;
    font-size: 0.9rem;
    flex-shrink: 0;
}

body {
    transition: all 0.3s ease;
}

#container {
    position: relative;
    background: var(--element);
    box-shadow: -5px -5px 15px -4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.6s;
    opacity: 0;
    transform: scale(0.6);
    -webkit-animation: fade_in 1s forwards;
    animation: fade_in 1s forwards;
}

#container .header {
    position: absolute;
    width: 100%;
    height: 65px;
    z-index: 50;
}

#container .header h2 {
    display: inline-block;
    float: left;
    font-weight: 400;
    margin: 20px 20px;
}

#container .header .logo {
    display: block;
    width: 65px;
    height: 50px;
    margin-left: 30px;
    margin-top: 20px;
    float: left;
    background: var(--logo);
    background-size: 100%;
    background-repeat: no-repeat;
}

#container .header .domain {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 18px;
    font-family: sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#container .header .night-mode {
    position: absolute;
    right: 0px;
    text-align: center;
    margin: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

#container .header .night-mode:hover {
    background: rgba(100, 100, 100, 0.1);
}

#container .header .night-mode:active {
    background: rgba(100, 100, 100, 0.3);
}

#container .header .night-mode i {
    line-height: 45px;
    color: var(--text-primary);
    font-size: 16px;
}

#container .left-section {
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    position: relative;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
    padding: 20px;
}

#container .left-section .profile-pic {
    width: 140px;
    flex-basis: 140px;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 10px 6px rgba(0, 0, 0, 0.2);
}

#container .left-section .profile-detail {
    margin-left: 20px;
}

#container .left-section .profile-detail .profile-name {
    color: var(--text-primary);
    font-size: 1.45rem;
    padding-bottom: 10px;
}

#container .left-section .profile-detail .profile-maps {
    display: block;
    margin-bottom: 10px;
    color: var(--text-third);
    font-size: 1rem;
}

#container .left-section .profile-detail .profile-maps i {
    color: var(--text-third);
    font-size: 1rem;
}

#container .left-section .profile-detail .profile-summary {
    color: var(--text-secondary);
    font-size: 0.925rem;
}

#container .left-section .profile-detail .profile-cv {
    display: block;
    margin-top: 20px;
    color: var(--text-cv);
    font-weight: 700;
}

.fa-map-marker {
    padding-right: 10px;
}

.fa-arrow-down {
    padding-left: 10px;
}

.profile-pils {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.profile-pils .pils {
    background: var(--pils-back);
    box-shadow: inset 0 0 0 1px var(--border), 0 10px 30px -10px rgba(0, 0, 0, 0.12);
    border-radius: 60px;
    transition: all 0.3s;
    font-size: 13px;
    cursor: pointer;
    margin: 5px;
    color: var(--text-primary);
}

.profile-pils .pils a, .profile-pils .pils a:visited, .profile-pils .pils a:link {
    display: block;
    text-decoration: none;
    color: var(--main-2-fore);
    padding: 5px 10px;
}

.profile-pils .pils a i, .profile-pils .pils a:visited i, .profile-pils .pils a:link i {
    padding-right: 2px;
}

.profile-pils .pils:nth-child(1):hover {
    box-shadow: inset 0 0 0 1px #007cf8, 0 10px 35px -10px rgba(20, 122, 255, 0.5);
}

.profile-pils .pils:nth-child(1):hover i {
    color: #007cf8;
}

.profile-pils .pils:nth-child(2):hover {
    box-shadow: inset 0 0 0 1px #82c436, 0 10px 30px -10px rgb(148, 195, 86);
}

.profile-pils .pils:nth-child(3):hover {
    box-shadow: inset 0 0 0 1px #e53935, 0 10px 35px -10px rgb(239, 83, 80);
}

.profile-pils .pils:nth-child(3):hover i {
    color: #E53935;
}

.profile-pils .pils:nth-child(4):hover {
    box-shadow: inset 0 0 0 1px #163ca3, 0 10px 30px -10px rgba(13, 60, 121, 0.5);
}

.profile-pils .pils:nth-child(4):hover i {
    color: #163ca3;
}

@media screen and (min-width: 768px) {
    #container {
        width: 540px;
        height: 300px;
    }

    #container .left-section {
        width: 100%;
        flex-direction: row;
    }

    .profile-pic {
        margin: 0 15px;
    }

    .profile-detail {
        flex-basis: 400px;
    }

    .profile-pils {
        justify-content: flex-end;
        margin: 0 10px;
        flex-basis: 240px;
    }

    .pop-up-menu {
        width: 190px;
    }

    .pop-up-menu .list-menu li {
        font-size: 18px;
        text-align: right;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 768px) {
    #container {
        flex-grow: 1;
        height: 100%;
    }

    #container .left-section {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        padding: 10px;
    }

    #container .left-section .profile-detail {
        padding: 20px;
    }

    .profile-pils {
        justify-content: center;
    }

    .pop-up-menu {
        width: 100%;
        height: 100%;
        background: var(--menu);
    }

    .pop-up-menu .list-menu {
        margin-top: 50px;
    }

    .pop-up-menu .list-menu li {
        font-size: 26px;
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Action */
#night:checked ~ .foreground .night-mode i {
    color: var(--main-1-fore);
}

#menu:checked ~ #container .pop-up-menu {
    right: 0;
    transition: opacity 0.5s, right 0.3s;
    opacity: 1;
}

#menu:checked ~ #container .menu div {
    width: 20px !important;
    transition: all 0.3s;
}

#menu:checked ~ #container .menu div:nth-child(2) {
    opacity: 0;
}

#menu:checked ~ #container .menu div:nth-child(1) {
    margin-top: 30px;
    transform: rotateZ(-45deg);
}

#menu:checked ~ #container .menu div:nth-child(3) {
    opacity: 0;
}

#menu:checked ~ #container .works {
    transform: translateX(-200px);
    transition: transform 0.3s;
}

/* Keyframe */
@-webkit-keyframes fade_in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade_in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}