/* 
 * 360 Panorama Tour Stylesheet
 * Custom Emerald Green, Burgundy, and Golden layout components.
 */

.wp-panorama-360-tour-player {
    position: relative;
    user-select: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}

/* Hotspot pulse buttons styling */
.pano-hotspot-pin {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fbbf24;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    z-index: 100;
}

.pano-hotspot-pin:hover {
    transform: translate(-50%, -50%) scale(1.15) !important;
    box-shadow: 0 0 15px #fbbf24;
}

.pano-pin-pulse {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    opacity: 0.6;
    animation: panoPulse 2s infinite ease-in-out;
}

.pano-pin-icon {
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    z-index: 2;
    font-family: sans-serif;
}

@keyframes panoPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* HUD Header elements */
.pano-hud-bar {
    position: absolute;
    top: 15px; left: 15px;
    pointer-events: none;
    z-index: 20;
}

.pano-hud-title {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #fbbf24;
    font-family: sans-serif;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pano-hud-compass {
    font-size: 15px;
}

/* Info dialog modal styles */
.pano-info-overlay {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 480px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 15px;
    z-index: 200;
    color: #ffffff;
    font-family: sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: panoSlideUp 0.3s ease-out;
    pointer-events: auto;
}

.pano-info-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-b: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.pano-info-title {
    font-weight: bold;
    font-size: 14px;
    color: #fbbf24;
}

.pano-info-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
}

.pano-info-close:hover {
    color: #ffffff;
}

.pano-info-desc {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    color: #e2e8f0;
    font-style: italic;
}

@keyframes panoSlideUp {
    from { transform: translate(-50%, 10px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}
