@import url('../../nubes-premium/css/styles.css');

/* Timeline */
.cloud-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Central dashed line */
.cloud-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    border-left: 2px dashed rgba(255, 255, 255, 0.7);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    padding: 0 40px;
}

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

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

/* Star bullet */
.timeline-item::after {
    content: '\f005';
    /* FontAwesome Star */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    color: #ffd700;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px #ffd700;
    z-index: 10;
    font-size: 0.8rem;
}

.timeline-item:nth-child(odd)::after {
    right: -15px;
}

.timeline-item:nth-child(even)::after {
    left: -15px;
}

.timeline-item .time {
    font-weight: bold;
    margin-bottom: 5px;
    font-family: var(--font-header);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        text-align: left;
    }

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

    .timeline-item:nth-child(odd)::after {
        left: 5px;
        right: auto;
    }

    .timeline-item:nth-child(even)::after {
        left: 5px;
    }
}