/* front.css */
.sbl-slide-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.sbl-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.sbl-slide.active {
    display: block;
    opacity: 1;
}
.sbl-slide-nav {
    text-align: center;
    margin-top: 10px;
}
.sbl-slide-nav button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 16px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
}
.sbl-slide-nav button:hover {
    background: #005177;
}

/* Flip efektleri örneği (eğer ileride desteklenmek istenirse) */
.flipIn {
    animation: flipIn 0.8s forwards;
}
.flipOut {
    animation: flipOut 0.8s forwards;
}
@keyframes flipIn {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes flipOut {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateY(-90deg);
        opacity: 0;
    }
}
