/******************************************************************************
    Project Widget
    Dieterle Programmierung

    Version : 2.1.0
    - Dunkles Design (wie Screenshot)
    - Buttons Download & Spende: Hintergrund #ffc439, Schrift #3c3f43 (forced)
******************************************************************************/

.ProjectWidget {

    max-width: 1000px;

    margin: 30px auto;

    background: #3c3f43;

    border-radius: 14px;

    border: 1px solid #555;

    overflow: hidden;

    color: #ffffff;

    font-family: Segoe UI, Arial, sans-serif;

    box-shadow: 0 8px 20px rgba(0,0,0,.35);

}


/******************************************************************************
    Header
******************************************************************************/

.ProjectHeader {

    padding: 25px 30px;

    text-align: center;

    font-size: 22px;

    font-weight: 600;

    border-bottom: 1px solid #555;

}


/******************************************************************************
    Statistics
******************************************************************************/

.ProjectStats {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 25px;

    flex-wrap: wrap;

}


.ProjectCard {

    flex: 1;

    min-width: 140px;

    background: #474b50;

    border-radius: 10px;

    padding: 18px;

    text-align: center;

    transition: .25s;

    cursor: default;

}


.ProjectCard:hover {

    transform: translateY(-4px);

    background: #53585e;

    box-shadow: 0 6px 15px rgba(0,0,0,.35);

}


.ProjectIcon {

    font-size: 26px;

    margin-bottom: 10px;

}


.ProjectLabel {

    font-size: 13px;

    color: #c7c7c7;

    margin-bottom: 8px;

    text-transform: uppercase;

    letter-spacing: .5px;

}


.ProjectValue {

    font-size: 22px;

    font-weight: bold;

    color: #FFC439;

}


/******************************************************************************
    Buttons  (beide: Hintergrund #ffc439, Schrift #3c3f43 - forced)
******************************************************************************/

.ProjectButtons {

    display: flex;

    justify-content: center;

    gap: 20px;

    padding: 25px;

    border-top: 1px solid #555;

    border-bottom: 1px solid #555;

    flex-wrap: wrap;

}


.ProjectButton {

    display: inline-block;

    padding: 12px 26px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: bold;

    transition: .25s;

}


.DownloadButton,
.PayPalButton {

    background: #ffc439 !important;

    color: #3c3f43 !important;

}


.DownloadButton:hover,
.PayPalButton:hover {

    background: #ffd15f !important;

    color: #3c3f43 !important;

    transform: translateY(-2px);

}


/******************************************************************************
    Description
******************************************************************************/

.ProjectDescription {

    padding: 25px 30px;

    text-align: center;

    line-height: 1.6;

    color: #FFC439;

}


.ProjectDescription strong {

    color: white;

}


/******************************************************************************
    Responsive
******************************************************************************/

@media (max-width:900px) {

    .ProjectCard {

        min-width: calc(50% - 10px);

    }

}


@media (max-width:600px) {

    .ProjectCard {

        min-width: 100%;

    }

    .ProjectButtons {

        flex-direction: column;

    }

    .ProjectButton {

        width: 100%;

        text-align: center;

    }

}
