/* ==========================================================================
   STORY PAGE STYLES
   Page: story.html - Chef Duong's journey and restaurant history
   ========================================================================== */

/* --- Timeline vertical line connecting milestones --- */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
}

/* --- Timeline milestone dot markers --- */
.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

@media (max-width: 768px) {
    .timeline-dot {
        left: 20px;
    }
}

/* --- Decorative quote marks for testimonials --- */
.quote-mark {
    font-size: 8rem;
    line-height: 0;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    opacity: 0.2;
}
