/* Timeline Image Styles */

.timeline-image {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline-image:hover img {
    transform: scale(1.05);
}

/* Future Timeline Image (Coming Soon) */
.timeline-image-future {
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-black);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(201, 162, 39, 0.6);
    }
}

/* Grid for Multiple Images (Busan) */
.timeline-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.timeline-image-half {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.timeline-image-half img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.timeline-image-half span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.9), transparent);
    color: var(--color-gold);
    padding: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.timeline-image-half:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.timeline-image-half:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 968px) {
    .timeline-image img {
        height: auto;
    }

    .timeline-images-grid {
        grid-template-columns: 1fr;
    }

    .timeline-image-half img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .timeline-image {
        margin-top: 1rem;
    }

    .timeline-images-grid {
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .timeline-image-half img {
        height: 200px;
    }

    .coming-soon-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}
