/* Styl dla pełnoekranowego slidera */
.cfs-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Styl dla pojedynczego slajdu */
.cfs-slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.cfs-slide.active {
    opacity: 1;
}

/* Kontener na teksty */
.cfs-content-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Przycisk w stylu Tailwind */
.cfs-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.cfs-button:hover {
    background-color: var(--hover-bg, #2563eb);
    color: var(--hover-text, #ffffff);
}

/* Nawigacja */
.cfs-nav {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 10px;
}
.cfs-nav-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}
.cfs-nav-dot.active {
    opacity: 1;
}

/* Responsywność */
@media (max-width: 768px) {
    .cfs-content-container {
        padding: 15px;
    }
    .cfs-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .cfs-content-container {
        gap: 10px;
    }
    .cfs-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}