/* Auto Page Builder - Global Styles */

.auto-page-builder {
    position: relative;
    z-index: 1;
}

.auto-page-builder * {
    box-sizing: border-box;
}

/* Animacje */
.auto-page-builder {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.auto-page-builder .content-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auto-page-builder .content-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Focus states for accessibility */
.auto-page-builder a:focus,
.auto-page-builder button:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .auto-page-builder {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .auto-page-builder .content-section {
        break-inside: avoid;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .auto-page-builder {
        border: 2px solid #000;
    }
    
    .auto-page-builder .content-section {
        border: 1px solid #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .auto-page-builder {
        animation: none;
    }
    
    .auto-page-builder .content-section {
        transition: none;
    }
}
