
@import url('https://fonts.googleapis.com/css2?family=Epunda+Slab:ital,wght@0,300..900;1,300..900&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: 'Reddit Sans', sans-serif;
    font-weight:500;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-radius:20px;
    overflow: hidden;
}
.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}
.slide.active .slide-content {
    animation: fadeUp 1s ease forwards;
}
.slide-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
    font-family: 'Epunda Slab', sans-serif;
    text-shadow: 1px 3px 3px rgba(0,0,0,0.15);
}
.slide-content p {
    font-size: 14px;
    font-weight:500 !important;
    margin-bottom: 20px;
}
.slide-content .btn {
    background: #ffffff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 12px 12px 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
}

.explore-btn .arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: #000;
    border-radius: 10px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    margin-left: 12px;
    transition: transform 0.3s ease;
}
.explore-btn:hover{
    background: #efefef;
    color:#000;
}
.explore-btn:hover .arrow {
    background:#fff;
    transform: translateX(4px);
}

.bullets {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.bullets button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.bullets button.active {
    background: white;
}

@keyframes fadeUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 28px;
    }
    .slide-content p {
        font-size: 16px;
    }
    .slide-content {
        left: 0;
        width:100%;
        padding:0 30px !important;
        text-align:center;
    }
    .slider {
        height: 60vh;
    }

    .slide-content {
        top: auto; /* mevcutsa kaldır */
        bottom: 50px; /* 📌 alt boşluk */
        transform: none; /* ortalama iptal */
    }
}

.hidden_slide {
    opacity: 0 !important;
    visibility: hidden !important;
}

.opacity-light {position:absolute;height:100%;width:100%;top:0;left:0;opacity:.5}

.bg-gradient-sherpa-blue-black {
    background: rgba(0, 0, 0, 0.08);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 1) 100%);
}