#sejarah {
    background: var(--brown-dark);
    color: var(--cream);
}

#sejarah .section-label,
#sejarah .divider {
    color: var(--gold);
    background: var(--gold);
}

#sejarah .section-title {
    color: var(--cream);
}

.sejarah-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.sejarah-text p {
    line-height: 1.9;
    color: rgba(240, 224, 204, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(212, 162, 80, 0.4);
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-show-more span {
    z-index: 2;
}

.btn-show-more svg {
    transition: transform 0.4s ease;
    z-index: 2;
}

.btn-show-more:hover {
    color: var(--brown-dark);
    border-color: var(--gold);
}

.btn-show-more:hover svg {
    transform: translateX(5px);
}

.btn-show-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: 1;
}

.btn-show-more:hover::before {
    left: 0;
}

.timeline {
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 44px;
    bottom: -1px;
    width: 1px;
    background: rgba(212, 162, 80, 0.3);
}

.timeline-year {
    flex-shrink: 0;
    width: 64px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 1px;
    color: var(--gold);
    border: 1px solid rgba(212, 162, 80, 0.4);
    background: var(--brown-dark);
    z-index: 2;
}

.timeline-content {
    padding-bottom: 2.5rem;
}

.timeline-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: rgba(240, 224, 204, 0.6);
    line-height: 1.7;
    font-weight: 300;
}