/* Impress.js Demo Styles */

.impress-enabled {
    pointer-events: none;
}

.impress-enabled #impress {
    pointer-events: auto;
}

.impress-enabled .step {
    pointer-events: auto;
    cursor: pointer;
}

.impress-enabled .step:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.impress-enabled .step.active {
    cursor: auto;
}

/* Navigation */
.impress-navigation {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
}

.impress-navigation button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 15px;
    transition: background 0.3s;
}

.impress-navigation button:hover {
    background: rgba(255,255,255,0.2);
}

/* Progress bar */
.impress-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.3);
    z-index: 1000;
}

.impress-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .step {
        width: 90vw !important;
        height: 80vh !important;
        padding: 30px !important;
    }
    
    h1 {
        font-size: 1.8em !important;
    }
    
    .benefits {
        grid-template-columns: 1fr !important;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
} 