
:root {
    --status-color-complete: green;
    --status-color-active: blue;
    --status-color-inactive: Grey;
    --status-color-abandoned: Red;
    --status-color-private: Gold;
    
    --text-background: rgba(255, 255, 255, 0.6);

}

/* ---------- Dark Theme ---------- */
[data-theme="dark"] {
    --status-color-complete: lightgreen;
    /* --status-color-complete: green; */
    --status-color-active: Dodgerblue;
    --status-color-inactive: Grey;
    --status-color-abandoned: Red;
    --status-color-private: Gold;
    --text-background: rgba(0, 0, 0, 0.6);
}

/* ---------- System Preference ---------- */
@media (prefers-color-scheme: dark) {
    [data-theme="auto"] {
        --status-color-complete: lightgreen;
        /* --status-color-complete: green; */
        --status-color-active: Dodgerblue;
        --status-color-inactive: Grey;
        --status-color-abandoned: Red;
        --status-color-private: Gold;
        --text-background: rgba(0, 0, 0, 0.6);
    }

}
















#project-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-basis: 50%;
}

.project-panel-left {
    width: 50%;
    text-align: center;
}

.project-panel-left img {
    width: 100%;
    max-width: 300px;
    max-height: 300px;
    margin: 10px auto;
}

.project-panel-right {
    width: 50%;
}

.project-panel-right h3 {
    text-align: center;
    margin: 5px;
    background-color: var(--text-background);
    max-width: 300px;
    border-radius: 50px;
    margin: 5px auto;
    padding: 2px;
    color: var(--normal-text);

    font-family: var(--theme-font-1);
}

.status {
    text-align: center;
    color: var(--normal-text);
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
}

.status-active {
    color: var(--status-color-active);
}

.status-inactive {
    color: var(--status-color-inactive);
}

.status-complete {
    color: var(--status-color-complete);
}

.status-abandoned {
    color: var(--status-color-abandoned);
}

.status-private {
    color: var(--status-color-private);
}









.project-buttons {
    /* display: flex; */
    justify-content: space-between;
    /* width: 300px; */
    margin: auto;
}

.download-button {
    display: inline-block;
    min-width: 300px;
    margin: 10px 0px;
    box-shadow: 3px 5px 7px -3px black;
    border-radius: 20px;
    text-align: center;
    color: var(--normal-text);
    padding: 8px 0px;
    text-decoration: none;
                                            /* font-family: 'Press Start 2P', cursive; */
                                            font-family: var(--theme-font-1);
} 

.demo-button, .release-button {
    background-color: var(--navbar-color-2);

    font-family: var(--theme-font-1);
}

.download-button-disabled {
    color: grey;
    background-color: var(--content-color-1);
    font-family: var(--theme-font-1);
}

.demo-button, .release-button:hover {
    cursor: pointer;
}

.download-button-disabled:hover {
    cursor:not-allowed;
}

.projectTabs-container {
    /* TO DO: */
}

.tabbable {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    margin-bottom: 10px;
}



.tab-content {
    /* TO DO: */
}

.tab-pane  {
    /* TO DO: */
}

.active-tab {
    /* TO DO: */
}





@media screen and (max-width: 1000px) {
    #project-container {
        display: block;
    }

    .project-panel-left, .project-panel-right {
        width: 100%;
    }
}























.projectData-container {
    margin-bottom: 30px;
    display:flex;
    flex-wrap:wrap;
    flex-direction:row;
    justify-content: space-around;
}

.projectImageThumb {
    flex-basis: 10%;
    margin: auto;
    width: 100%;
    max-width: 400px;
}

.projectText-container {
    flex-basis: 50%;
}

.projectTitle {
    text-align: center;
    color: white;
    animation: pulseRed 3s infinite;
    font-family: 'Press Start 2P', cursive;
}

.projectGenre {
    text-align: center;
    color: White;
    font-size: 12px;
    animation: pulseBlue 3s infinite;
    font-family: 'Press Start 2P', cursive;
}

.projectDate {
    text-align: center;
    color: White;
    font-size: 12px;
    animation: pulseBlue 3s infinite;
    font-family: 'Press Start 2P', cursive;
}

.button-enabled {
    display: block;
    margin: 0px auto 10px auto;
    box-shadow: 3px 5px 7px -3px Black;
    border-radius: 20px;
    text-align: center;
    background-color: rgba(0, 255, 0, 15%);
    color:white;
    padding:8px 0px;
    text-decoration:none;
    font-family: 'Press Start 2P', cursive;
    font-size: 15px;
    text-align: center;
    /* width: 200px; */

    font-family: var(--theme-font-1);
}

.button-disabled {
    display: block;
    margin: 0px auto 10px auto;
    box-shadow: 3px 5px 7px -3px Black;
    border-radius: 20px;
    text-align: center;
    background-color: rgba(255, 0, 0, 15%);
    color: grey;
    padding:8px 0px;
    text-decoration:none;
    font-family: 'Press Start 2P', cursive;
    font-size: 15px;
    text-align: center;
    max-width: 300px;

    font-family: var(--theme-font-1);
}

.button-enabled:hover {
    cursor: pointer;
    text-decoration: none;
    color: rgb(0, 255, 0);
}

.button-disabled:hover {
    cursor: not-allowed;
    text-decoration: none;
}





















.nav-tabs {
    margin: 0px 0px 20px 0px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 5px;
}

@media (max-width: 750px) {
    .nav-tabs {
        grid-template-columns: 1fr;
    }
}

.nav-link {
    color: White;
    font-family: var(--font-13);
    font-size: 15px;
    font-weight: bold;
    padding-block: 5px;

    text-decoration: none;
    text-align: center;
}

.nav-link:hover {
    color: #ff0101;
    background-color: white;
}









.nav-link.active {
    background-color: white;
}

.tab-pane {
    display: none;
}

.active-tab {
    display: block;
}

.nav-tabs > .active {
    color: black;
}

.nav-tabs > .active:hover {
    cursor: not-allowed;
}

#descriptionTab {
    color: var(--normal-text);
    /* font-family: 'Syncopate', sans-serif; */
    font-family: var(--font-13);
}

#progressTab {
    color: var(--normal-text);
    font-family: var(--font-13);
}

.projectProgress-label {
    /* color: White; */
    text-align: center;
    padding-block: 10px;
    flex-basis: 30%;
}



.projectProgress-bar {
    box-sizing: content-box;
    height: 15px;
    position: relative;
    margin: 0px 0px 5px 0px;
    background: rgba(255,255,255, 0.3);
    border-radius: 25px;
    padding: 5px;
    box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.5);
    flex-basis: 50%;
}

.projectProgress-bar > span {
    display: block;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.projectArticleThumb {
    width: 200px;
    height: 200px;
}

.thumbnail {
    height: 100px;
    display: inline;
}

.thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.thumbnail-container img {
    opacity: 0.8;
    cursor: pointer;
}

.thumbnail-container img:hover {
    opacity: 1;
}

.container {
    width: 100%;
    position: relative;
    display: none;
}

.closebtn {
    position: absolute;
    top: 20px;
    right: 50px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    text-shadow:    5px 5px 0 black,
                    5px -5px 0 black,
                    -5px 5px 0 black,
                    -5px -5px 0 black,
                    5px 0px 0 black,
                    0px 5px 0 black,
                    -5px 0px 0 black,
                    0px -5px 0 black;
} 

.articles-container {
                                                    position: relative;
                                                    z-index: 99;
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: space-between; */


                                                    margin: 2em auto;
                                                    display: flex;
                                                    flex-wrap: wrap;
                                                    justify-content: space-around;
}

.article-container {
    margin: 0px 10px;
    flex: 1 0 31%;
}

.article-container:hover {
    cursor: pointer;
}

.article-container:hover .articleTitle {
    color: #ff0101;
    animation: pulseRedHover 2s infinite;
}

.article-container img {
    display: block;
    margin: auto;
}

.articleTitle {
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    color: white;
    animation: pulseRed 3s infinite;
    font-family: 'Press Start 2P', cursive;
}

.articleDate {
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    color: white;
    animation: pulseBlue 3s infinite;
    font-family: 'Press Start 2P', cursive;
}