@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

body {
    scroll-behavior: smooth;
    background-color: #f3f4f6; /* Jasnoszary zamiast białego */
}
.font-inter {
    font-family: 'Inter', sans-serif;
}

/* --- LOGIKA SKOŚNYCH PRZYCISKÓW (RACING STYLE) --- */
.skew-button {
    transform: skewX(-15deg);
    display: inline-block;
    transition: all 0.3s ease;
}
.skew-button:hover {
    transform: skewX(-15deg) translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.skew-fix {
    transform: skewX(15deg); /* Prostuje tekst wewnątrz */
    display: inline-block;
}
.skew-container {
    transform: skewY(-2deg);
}
.skew-container .skew-fix {
    transform: skewY(2deg);
}

/* --- TYPOGRAFIA --- */
.text-stroke-white {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

/* --- ANIMACJE --- */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { animation-delay: 0.1s; transition-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; transition-delay: 0.3s; }

/* --- SEPARATORY I LINIE --- */
/* Usuwamy miękkie gradienty Kameleona, dajemy solidne kolory */