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

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

/* Central dotted line (Candy Trail) */
.candy-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background-image: radial-gradient(var(--pastel-pink) 30%, transparent 31%);
    background-size: 10px 10px;
    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;
}

/* Lollipop Bullet */
.timeline-item::after {
    content: '';
    position: absolute;
    top: 15px;
    width: 20px;
    height: 20px;
    background: repeating-linear-gradient(45deg, var(--hot-pink), var(--hot-pink) 5px, #fff 5px, #fff 10px);
    border-radius: 50%;
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--mint-green);
    z-index: 10;
}

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

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

.timeline-item .time {
    font-weight: bold;
    margin-bottom: 5px;
    font-family: var(--font-body);
    color: var(--purple);
}

@media (max-width: 768px) {
    .candy-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: 10px;
        right: auto;
    }

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