/* /var/www/html/CF/CF.css */
.cf-full-background {
    position: fixed;  /* Fixed, damit es den Hintergrund füllt */
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}
.cf-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.8;
    animation: pulse 5s infinite;
}
@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}
.cf-container {
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(76, 175, 80, 0.5);
}
body.cf-body, html.cf-html {
    background: linear-gradient(to bottom, #0a0a0a 0%, #222 50%, #444 100%);
    background-attachment: fixed;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    color: #fff;
}
.cf-mission-roadmap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cf-mission, .cf-roadmap {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(50, 50, 50, 0.9));
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cf-mission:hover, .cf-roadmap:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.7);
}
.cf-mission-title, .cf-roadmap-title {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}
.cf-mission-summary {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #eee;
    text-align: center;
}
.cf-roadmap-list li, .cf-mission-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 25px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}
.cf-roadmap-list li:hover, .cf-mission-list li:hover {
    color: #4CAF50;
    transform: translateX(10px);
}
.cf-roadmap-list li:before, .cf-mission-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4CAF50;
}
.cf-costs, .cf-rewards, .cf-progress, .cf-team {
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(50, 50, 50, 0.95));
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    animation: fadeIn 1.5s ease-in-out;
}
.cf-costs-title, .cf-rewards-title, .cf-team-title {
    margin-bottom: 30px;
    font-size: 2em;
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}
.cf-costs-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}
.cf-chart {
    flex: 1;
    min-width: 400px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}
.cf-budget-list {
    flex: 1;
    min-width: 400px;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.cf-budget-item {
    padding: 20px;
    border: 2px solid #4CAF50;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgba(76, 175, 80, 0.1);
}
.cf-budget-item:hover, .cf-budget-item:focus {
    background: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 30px rgba(76, 175, 80, 1);
    transform: scale(1.05);
}
.cf-icon {
    font-size: 1.5em;
    margin-right: 15px;
}
.cf-category {
    font-weight: bold;
    flex: 1;
    font-size: 1.2em;
}
.cf-amount {
    margin-left: auto;
    font-size: 1.2em;
}
.cf-detail, .cf-mission-detail, .cf-step-detail {
    display: none;
    font-size: 1em;
    color: #eee;
    margin-top: 15px;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(10px);
}
.cf-budget-item.active .cf-detail, .active.cf-mission-detail, .active.cf-step-detail, .cf-reward-level.active .cf-detail {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.cf-title, .cf-roadmap-title, .cf-mission-title, .cf-costs-title, .cf-rewards-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.cf-reward-level {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(76, 175, 80, 0.2));
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    text-align: left;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}
.cf-reward-level:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.4), rgba(76, 175, 80, 0.6));
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.8);
}
.cf-reward-level h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.5em;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}
.cf-reward-level p {
    color: #eee;
    font-size: 1.1em;
}
.cf-progress {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(50, 50, 50, 0.95));
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
}
.cf-progress-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #fff;
}
.cf-bar {
    width: 100%;
    height: 30px;
    background-color: #222;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}
.cf-bar-fill {
    height: 100%;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    transition: width 1s ease-in-out;
    box-shadow: 0 0 20px #4CAF50;
}
.cf-progress-label {
    font-size: 1.2em;
    color: #4CAF50;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}
.cf-donate-btn {
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.5);
}
.cf-donate-btn:hover {
    background: linear-gradient(to right, #45a049, #7CB342);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 1);
}
#budgetChart {
    max-width: 100%;
}
.cf-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}
.cf-team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}
.cf-team-member:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.8);
}
.cf-circle-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid #4CAF50;
    box-shadow: 0 0 15px #4CAF50;
}
.cf-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.cf-team-member:hover .cf-circle-image img {
    transform: scale(1.1);
}
.cf-team-member p {
    font-size: 1.2em;
    color: #eee;
    margin: 0;
}
@media (max-width: 768px) {
    .cf-mission-roadmap {
        flex-direction: column;
    }
    .cf-costs-layout {
        flex-direction: column;
    }
    .cf-chart {
        width: 100%;
        max-width: none;
    }
    .cf-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .cf-container {
        padding: 20px;
    }
}
