


.custom-slider-container {
    position: relative;
    width: 100%;
    height: 800px;
    margin: auto;
    overflow: hidden;
    /* margin-bottom: 10px; */
}

.custom-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}


.custom-slide {
    position: absolute;
    /* margin-top: 34px; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    text-align: center;
    z-index: 0;

    /* Üstten ve alttan soluklaşma efektleri */
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 30%),   /* alttan yukarıya soluk */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 30%); /* üstten aşağıya soluk */
}


/* Aktif slayt görünür hale gelir */
.custom-slide.active {
    opacity: 1;
    z-index: 1;
}


.custom-slide-title {
    font-size: 4.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    padding-top: 15vh;
}

.custom-slide-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);

}

.custom-slide-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-slide-link:hover {
    background-color: #005fa3;
}