@import url('../../star-wars-basica/css/styles.css');

/* Planner Specific Styles */

/* Timeline - Laser Beam Style */
.marinero-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.marinero-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background: var(--sith-color);
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--sith-color);
    border-radius: 3px;
}

.timeline-step {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.step-content {
    position: relative;
    width: 45%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    border: 1px solid var(--sith-color);
    color: #fff;
}

.timeline-step:nth-child(odd) .step-content {
    left: 0;
}

.timeline-step:nth-child(even) .step-content {
    left: 55%;
}

.step-time {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    color: var(--sith-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    z-index: 2;
    border: 2px solid var(--sith-color);
    box-shadow: 0 0 10px var(--sith-color);
    font-family: 'Orbitron', sans-serif;
}

.step-icon {
    font-size: 2rem;
    color: var(--sith-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--sith-color);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .marinero-timeline::before {
        left: 20px;
    }

    .timeline-step .step-content {
        width: calc(100% - 60px);
        left: 60px !important;
    }

    .step-time {
        left: 20px;
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}