/* Custom styles for WARSZTAT landing page */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Feature cards hover effect */
.feature-card {
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* CTA button effects */
.cta-button {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 114, 20, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(45deg, #FF7214, #B694FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #282249;
}

::-webkit-scrollbar-thumb {
    background: #FF7214;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e65a0a;
}

/* Loading animation for page - disabled */
/* body {
    animation: fadeIn 0.8s ease-out;
} */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Focus states for accessibility */
.cta-button:focus,
a:focus {
    outline: 2px solid #B694FF;
    outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/* Enhanced hover effects for links */
a:hover {
    text-decoration: none;
}

/* Custom glow effect for hero section */
.hero-glow {
    position: relative;
}

.hero-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(182, 148, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}
