/* ================================== */
/* CONSTS  */
/* ================================== */


/* ================================== */
/* ATRRIBUTES  */
/* ================================== */

@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css";

body, html {
    height: 100%;
    min-height: 40rem;
    background-color: black;
    --number-of_tabs: 3;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: black; 
    background-image: url("../assets/room_med.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover; 
    font-family: "Helvetica";
}

.tabs {   
    width: 80%;
    height: 80%;
    background: rgba(2, 26, 42, 0.849);
    border-radius: 1.75rem;
    opacity: 98%;
}

.tabs .tab-body {
    position: relative;
    height: calc(100% - 3.75rem);
    color: aliceblue;
}

.tabs .tab-body > div {
    position: absolute;
    opacity: 0.0;
    transform: scale(0.9);
    transition: opacity 500ms ease-in-out 0ms,
      transform 500ms ease-in-out 0ms;
}

.tabs .tab-body > div.active {
    opacity: 1;
    z-index: 1;
}

.tabs .tab-header {
    display: flex;
    align-items: center;
    height: 3.75rem;
}

.tabs .tab-header > div {
    width: calc(100% / var(--number-of_tabs));
    text-align: center;
    color: #888;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.tabs .tab-header > div > i {
    display: block;
    margin-bottom: 0.3rem;
}

/* change in JS based on tab number */
.tabs .tab-header > div.active {
    color: #ffffff;
}

.tabs .tab-indicator {
    position: relative;
    width: calc(100% / var(--number-of_tabs));
    height: 0.3rem;
    background: #5ca7f2;
    border-radius: 5px;
    transition: all 500ms ease-in-out;
}

.section {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
}

a {
    color: rgb(218, 8, 148);
    text-decoration: none;
    cursor: pointer;
}

/* =================== */
/* ABOUT */
/* =================== */

.about-container {
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.about-image {
    background-image: url("../assets/mslugocki_profile.jpg");
    background-size: cover;
    background-position: center; 
    border-radius: 2rem;
    height: 16rem;
    width: 16rem;
}

.about-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.about-name {
    padding-top: 1.0rem;
    padding-bottom: 0.5rem;
    font-size: 1.8rem;
    font-family: "Gill Sans", sans-serif;
    color: #4cffa0;
}

.about-whoami {
    font-size: 1.5rem;
    padding-bottom: 1.0rem;
    font-family: "Gill Sans", sans-serif;
    padding-right: 1.5rem;
}

.about-contact {
    font-size: 1.0rem;
    padding-bottom: 2.0rem;
    font-family: "Gill Sans", sans-serif;
}

.contact-link {
    width:3rem;
    height:3rem;
}

.contact-link:hover {
    position: center;
    background-color: #00feae;
    border-radius: 3.0rem;
    transition: 0.8s;
    border-radius: 200%;
}

/* ================================== */
/* BUTTONS */
/* ================================== */

.button {
    position: center;
    width: 75%;
    background-color: gray;
    border: none;
    border-radius: 1.75rem;
    color: white;
    padding: 1rem 3rem;
    text-align: center; 
    font-size: 1.75rem;
    font-family: "Arial";
    cursor: pointer;
    transition: 0.5s;
}

.button:hover {
    background-color: #00feae;
    color: black;
    transition: 0.5s;
}

/* ================================== */
/* EXPERIENCE */
/* ================================== */

.experience-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    overflow-y: scroll;
    background: rgba(15, 13, 13, 0.908);
    border-radius: 1.75rem;
    padding:1.0rem;
}

.experience-job {
    padding-bottom: 1.0rem;
}

.experience-company-container {
    display: flex;
    flex-direction: row;
}

.experience-company {
    font-size: 1.4rem;
    font-family: "Gill Sans", sans-serif;
    color: #68d9ed;
}

.experience-title {
    font-family: "Gill Sans", sans-serif;
    color: #77ffc4;
    font-size: 1.1rem;
}

.experience-location, .experience-date {
    font-size: 0.8rem;
}

.experience-description {   
    justify-content: space-between;
    font-size:0.95rem;
}

.experience-keyword-container {
    display: flex;
    margin-bottom: 0.5rem;
}

.experience-keyword {
    flex-direction: column;
    margin-right: 0.6rem;
    color: #67d1f1;
}

li{
    list-style-type:circle;
    margin: 0;
    padding: 0;
}

li:not(:last-child) {
    margin-bottom: 0.6rem;
}

/* ================================== */
/* SOCIAL MEDIA */
/* ================================== */

.social-media-container {
    display: flex;
    width: 75%;
    height: 40%;
    justify-content: space-between;
}

.social-media-button {
    width: 47.5%;
    height: 100%;
    background-color: rgb(86, 86, 86);
    color: white;
    border-radius: 1.5rem;
    border: none;
    transition: 0.5s;
    cursor: pointer;
}

.social-media-button:hover {
    background-color: #00feae;
    color: black;
    transition: 0.5s;
}

.social-media-button > i {
    font-size: 4rem;
}

/* ================================== */
/* MEDIA QUERIES */
/* ================================== */

@media (max-width: 575px) {
    .social-media-container {
        flex-direction: column;
        align-items: center;
        height: 80%;
    }
    .social-media-button {
        width: 80%;
        height: 9rem;
    }
    .tabs .tab-header > div {
        font-size:0.8rem;
    }
}

@media (max-width: 350px) {
    .about-image {
        height:6.5rem;
        width:8.5rem;
    }
    .social-media-button {
        width: 60%;
        height: 4rem;
    }
    .about-whoami {
        font-size: 0.9rem;
        margin-left: 1rem;
    }
    .about-name {
        font-size: 1.25rem;
    }
    .tabs .tab-header > div {
        font-size:0.6rem;
    }
    .experience-title-description {
        font-size: .6rem;
    }
    .experience-date {
        font-size: 0.6rem;
    }
    .experience-company {
        font-size: 0.8rem;
    }
}
