/* =========================
   TIMELINE SECTION (COMPACT)
========================= */

.timeline-section {
    padding: 40px 18px 36px; /* reduced */
    text-align: center;
    background: #0b2a12;
}

/* =========================
   HEADER (TIGHTER)
========================= */

.timeline-header {
    position: relative;
    margin: 22px 0 20px; /* reduced */
}

.timeline-header::before,
.timeline-header::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px; /* shorter lines */
    height: 1px;
    background: #cfe870;
    opacity: 0.5;
}

.timeline-header::before { left: 0; }
.timeline-header::after { right: 0; }

.timeline-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 26px; /* reduced */
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* =========================
   CARD (REFINED + SMALLER)
========================= */

.timeline-card {
    max-width: 360px;
    margin: 0 auto 24px;
    border-radius: 22px;
    padding: 20px 18px; /* reduced padding */
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
    text-align: left;
}

.timeline-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px; /* reduced */
    font-weight: 400;
    margin-bottom: 4px;
}

.timeline-card span {
    font-size: 13px; /* reduced */
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* =========================
   SLIDER (SLIGHTLY SMALLER)
========================= */

.timeline-image-slider {
    width: 100%;
    max-width: 320px; /* reduced */
    margin: 0 auto 24px;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 5;

    box-shadow:
        0 8px 22px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.05) inset;
}

/* =========================
   ARROW (LESS DRAMA)
========================= */

.scroll-indicator {
    display: inline-block;
    margin-top: 4px;
    opacity: 0.7;
    animation: bounce 1.5s infinite;
    cursor: pointer;
}

.scroll-indicator svg {
    width: 22px; /* smaller */
    height: 22px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .timeline-section {
        padding: 34px 16px 30px;
    }

    .timeline-header h2 {
        font-size: 24px;
    }

    .timeline-image-slider {
        max-width: 280px;
    }
}

/* =========================
   CTA ARROW (CLICKABLE)
========================= */

.scroll-indicator {
    display: inline-block;
    margin-top: 10px;
    opacity: 0.7;
    animation: bounce 1.5s infinite;
    cursor: pointer;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

/* HOVER */

.scroll-indicator:hover {
    opacity: 1;
}

/* =========================
   SLIDER FUNCTIONAL LAYER (YOU REMOVED THIS 😑)
========================= */

.timeline-image-slider .slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.timeline-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    position: absolute;
    top: 0;
    left: 0;

    opacity: 0;
    transition: opacity 0.8s ease;
}

/* ONLY ACTIVE IMAGE SHOWS */
.timeline-image-slider img.active {
    opacity: 1;
}

