
/* Container */
.nc-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Timeline Section */
.nc-timeline {
    padding: 80px 20px;
    background-color: #f0f0f0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

.timeline-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.timeline-header h2::after {
    content: '';
    width: 60px;
    height: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.timeline-header p {
    font-size: 16px;
    color: #777;
}

.nc-timeline-items {
    position: relative;
    padding: 20px 0;
}

/* Vertikale Linie der Timeline */
.nc-timeline-items::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #e0e0e0;
}

/* Timeline Items */
.nc-timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.nc-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.nc-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.nc-timeline-marker {
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(270deg, #ff00dd, #ffd900);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
}

.nc-timeline-item:nth-child(odd) .nc-timeline-marker {
    right: -20px;
}

.nc-timeline-item:nth-child(even) .nc-timeline-marker {
    left: -20px;
}

.marker-icon {
    font-size: 18px;
}

.nc-timeline-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.nc-timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.nc-timeline-date {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nc-version {
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    margin-right: 10px;
    font-size: 14px;
    background: linear-gradient(270deg, #ff00dd, #ffd900);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
}

.nc-date {
    color: #777;
    font-size: 14px;
}



.nc-timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}


.nc-timeline-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.nc-timeline-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 16px;
}

.nc-timeline-content ul li::before {
    content: "\f00c"; /* Font Awesome Check Icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4081;
    font-size: 16px;
}

/* Footer */
.nc-footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.nc-footer p {
    margin-bottom: 15px;
    font-size: 14px;
}

.nc-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.nc-social a:hover {
    color: #ff4081;
}

/* Responsives Design */
@media (max-width: 1024px) {
    .nc-timeline-item {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .nc-timeline-items::before {
        left: 20px;
    }

    .nc-timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left;
        margin-bottom: 30px;
    }

    .nc-timeline-item:nth-child(odd),
    .nc-timeline-item:nth-child(even) {
        left: 0;
    }

    .nc-timeline-item .nc-timeline-marker {
        left: 0;
        right: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .timeline-header h2 {
        font-size: 28px;
    }

    .timeline-header h2::after {
        width: 40px;
    }

    .nc-timeline-content {
        padding: 20px 25px;
    }

    .nc-timeline-content h3 {
        font-size: 14px;
    }

    .nc-timeline-content ul li {
        font-size: 12px;
    }
}
