@charset "utf-8";
/* CSS Document */
.exhibit-navigation {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none;
}

.nav-arrow {
    position: absolute;
    background: rgba(1,123,255,0.9);
    border: 2px solid #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
    background: rgba(218,148,52,1.00);
    color: white;
    transform: scale(1.1);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.nav-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    color: initial;
    transform: none;
}

.nav-arrow-left {
    left: 20px;
}

.nav-arrow-right {
    right: 20px;
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

.exhibit-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 100;
    font-weight: 500;
}

#exhibit-content {
    transition: opacity 0.3s ease;
}

/* Smooth transitions for content changes */
.exhibit-hero {
    animation: fadeInUp 0.6s ease-out;
}

.exhibit-intro {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.exhibit-content {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
.exhibit-loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Focus styles for accessibility */
.nav-arrow:focus {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow-left {
        left: 10px;
    }
    
    .nav-arrow-right {
        right: 10px;
    }
    
    .nav-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .exhibit-indicator {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
    
    .nav-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .exhibit-indicator {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-arrow {
        background: white;
        border: 3px solid black;
    }
    
    .nav-arrow:hover {
        background: black;
        color: white;
    }
    
    .exhibit-indicator {
        background: black;
        border: 2px solid white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .nav-arrow {
        transition: none;
    }
    
    .nav-arrow:hover {
        transform: none;
    }
    
    #exhibit-content {
        transition: none;
    }
    
    .exhibit-hero,
    .exhibit-intro,
    .exhibit-content {
        animation: none;
    }
}

/* Print styles */
@media print {
    .exhibit-navigation,
    .exhibit-indicator {
        display: none;
    }
}

.exhibit-audio {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audio-player {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1rem;
}

.audio-caption {
    font-style: italic;
    color: #666;
    text-align: center;
}

