/* Timeline Widget Styles */

.timeline-container {
    width: 100%;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #C4A747;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.timeline-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Timeline Container */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #444444;
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline Items */
.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item.left {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-item.right {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 40px;
    text-align: left;
}

/* Timeline Marker (dot) */
.timeline-marker {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.timeline-item.right .timeline-marker {
    justify-content: flex-start;
    left: -10px;
    top: 36px;
}

.timeline-item.left .timeline-marker {
    right: -10px;
    top: 36px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #C4A747;
    /* border: 3px solid #000000; */
    position: relative;
    /* box-shadow: 0 0 0 4px #444444; */
}

/* Timeline Content */
.timeline-content {
    background-color: transparent;
    padding-top: 10px;
}

.timeline-year {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.timeline-item-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #000000;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.timeline-description {
    font-size: 14px;
    line-height: 1.6;
    color: #a6a6a6;
    margin: 0;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .timeline-title {
        font-size: 36px;
    }

    .timeline-item.left {
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;
        padding-left: 60px;
        text-align: left;
    }

    .timeline-item.right {
        margin-left: 0;
        margin-right: 0;
        padding-left: 60px;
        text-align: left;
    }

    .timeline-line {
        left: 0;
    }

    .timeline-marker {
        justify-content: flex-start !important;
        left: -24px !important;
    }

    .timeline-dot {
        width: 14px;
        height: 14px;
        border-width: 2px;
		left: -3px;
    }
}

@media (max-width: 768px) {
    .timeline-container {
        padding: 40px 20px;
    }

    .timeline-header {
        margin-bottom: 40px;
    }

    .timeline-title {
        font-size: 32px;
    }

    .timeline-year {
        font-size: 32px;
    }

    .timeline {
        padding: 0 10px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-item.left,
    .timeline-item.right {
        padding-left: 50px;
    }

    .timeline-marker {
        left: -22px;
    }
	
	.timeline-dot {
		left: 7px;
	}
}

@media (max-width: 480px) {
    .timeline-container {
        padding: 30px 15px;
    }

    .timeline-title {
        font-size: 24px;
    }

    .timeline-year {
        font-size: 24px;
    }

    .timeline-subtitle {
        font-size: 11px;
    }

    .timeline-description {
        font-size: 13px;
    }

    .timeline-item {
        margin-bottom: 35px;
    }

    .timeline-item.left,
    .timeline-item.right {
        padding-left: 40px;
    }

    .timeline-marker {
        left: -18px;
    }

    .timeline-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
        box-shadow: 0 0 0 3px #444444;
    }
}
