/* ── Photo Strip Slider — Frontend Styles ── */

.photo-strip {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #111;
}

.ps-track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: photoScroll 30s linear infinite;
}

.photo-strip:hover .ps-track {
    animation-play-state: paused;
}

.ps-item {
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.ps-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ps-item:hover img {
    transform: scale(1.04);
}

/* ── Overlay: wraps both label + caption ── */
.ps-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 12px 10px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.78) 100%
    );
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: opacity 0.3s ease;
}

/* ── Location Label (top line, bold) ── */
.ps-label {
    color: #ffffff;
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── Caption (second line, lighter) ── */
.ps-caption {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

@keyframes photoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
