/* =============================================================================
   LatviaTravel.lv — Detail Page Styles
   Hero image, map container, contact sidebar, prf_images gallery hover effects.
   ============================================================================= */

.hero-detail {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.hero-detail img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hero-detail .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.hero-detail h1 {
    color: #fff;
    margin-bottom: 0.25rem;
}

.travel-ex-card {
    background: #f0fdf4;
    border-left: 4px solid #198754;
    border-radius: 6px;
}

.business-ex-card {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
}

#detailMap {
    width: 100%;
    height: 350px;
    border-radius: 8px;
}

.prf-images-gallery .hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prf-images-gallery .hover-lift:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.prf-images-gallery img {
    transition: transform 0.4s ease;
}

.prf-images-gallery a:hover img {
    transform: scale(1.08);
}

.prf-images-gallery a::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 24px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.prf-images-gallery a:hover::after {
    transform: translate(-50%, -50%) scale(1);
}