﻿

/* Buton alanı */
.buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* Aktif slide olunca butonlar gelsin */
.swiper-slide-active .buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Genel buton */
.btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* Primary (Kurumsal) */
.btn-primary {
    background: #ffffff;
    color: #000;
}

    .btn-primary:hover {
        background: #f1f1f1;
        transform: translateY(-2px);
    }

/* Outline (Referanslar) */
.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

    .btn-outline:hover {
        background: #fff;
        color: #000;
        transform: translateY(-2px);
    }





.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 55%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

    /* Başlangıçta gizli ve aşağıda */
    .content h1,
    .content p {

        color:#fff !important ;
        font-size:30px;
        font-weight:600 !important;
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
    }

/* Aktif slide geldiğinde animasyon */
.swiper-slide-active .content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.swiper-slide-active .content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}


/* Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Animasyon */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
