/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    height: 100vh;
    background: #000;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
                .adda {
                    bottom: 0px;
                }
/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide Stiller */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Slide Image */
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobil cihazlar için resim düzeltmesi */
@media screen and (max-width: 768px) {
    .slide-image img {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100vh;
        max-width: 100vw;
    }
}

/* Slide Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 3;
    max-width: 800px;
}

/* Slide Title (H1) */
.slide-title {
    font-family: 'Poppins', sans-serif;
    font-size: 74px;
    font-weight: 100;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out 0.2s;
}

/* Slide Subtitle (H2) */
.slide-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out 0.4s;
}

/* Slide Description (P) */
.slide-description {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 200;
    line-height: 1.4;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out 0.6s;
}

/* Active Slide Content Animation */
.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-description {
    opacity: 1;
    transform: translateX(0);
}

/* Navigation Arrows - Animasyonlu Arrow Tasarım */
a.next {
    display: block;
    position: absolute;
    right: 40px;
    top: 50%;
    z-index: 99;
    cursor: pointer;
    transform: translateY(-50%);
}

a.prev {
    display: block;
    position: absolute;
    left: 40px;
    top: 50%;
    z-index: 99;
    cursor: pointer;
    transform: translateY(-50%) rotate(180deg);
}

a.prev.hidden {
    display: none;
}

a.next.hidden {
    display: none;
}

.arrow, .arrow:before {
    position: absolute;
}

.arrow {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -15px;
    transform: rotate(-45deg);
    border-left: none;
    border-top: none;
    border-right: 2px #fff solid;
    border-bottom: 2px #fff solid;
    opacity: .8;
    transition: opacity 0.3s ease;
}

.arrow:before {
    content: "";
    width: 15px;
    height: 15px;
    top: 50%;
    margin: -10px 0 0 5px;
    border-left: none;
    border-top: none;
    border-right: 1px #fff solid;
    border-bottom: 1px #fff solid;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: arrow;
}

@keyframes arrow {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-10px, -10px);
    }
}

/* Arrow Hover Effects */
a.next:hover .arrow,
a.prev:hover .arrow {
    opacity: 1;
}

a.next:hover .arrow:before,
a.prev:hover .arrow:before {
    animation-duration: 1s;
}

.yarrow {
    display: none;
}

@media screen and (max-width: 768px) {
    .yarrow {
        display: block;
    }
}


.yarrow,
.yarrow:before {
    position: absolute;
}

.yarrow {
    width: 30px;
    height: 30px;
    top: 25px;
    left: 50%;
    margin: -15px 0 0 -15px;
    transform: rotate(225deg);
    border-left: none;
    border-top: none;
    border-right: 2px #fff solid;
    border-bottom: 2px #fff solid;
    opacity: .8;
    transition: opacity 0.3s ease;
}

.yarrow:before {
    content: "";
    width: 15px;
    height: 15px;
    top: 10px;
    margin: -5px 0 0 5px;
    border-left: none;
    border-top: none;
    border-right: 1px #fff solid;
    border-bottom: 1px #fff solid;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: arrow;
}

@keyframes yarrow {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-10px, -10px);
    }
}











/* Tablet Responsive (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .slide-content {
        left: 4%;
        max-width: 500px;
    }
    
    .slide-title {
        font-size: 56px;
        margin-bottom: 15px;
    }
    
    .slide-subtitle {
        font-size: 44px;
        margin-bottom: 25px;
    }
    
    .slide-description {
        font-size: 22px;
    }
    
    a.prev {
        left: 20px;
    }
    
    a.next {
        right: 20px;
    }
    .bottom {
        max-width: 450px !important;
    }
}

/* Mobile Responsive (max-width: 768px) */
@media screen and (max-width: 768px) {
    .slide-content {
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
        padding: 0 20px;
    }
    
    .slide-title {
        font-size: 42px;
        margin-bottom: 12px;
        transform: translateX(-50px);
        transition: all 0.8s ease-out 0.2s;
    }
    
    .slide-subtitle {
        font-size: 32px;
        margin-bottom: 20px;
        transform: translateX(-50px);
        transition: all 0.8s ease-out 0.4s;
    }
    
    .slide-description {
        font-size: 18px;
        transform: translateX(-50px);
        transition: all 0.8s ease-out 0.6s;
    }
    
    .slide.active .slide-title,
    .slide.active .slide-subtitle,
    .slide.active .slide-description {
        opacity: 1;
        transform: translateX(0);
    }
    
    a.prev {
        left: 15px;
    }
    
    a.next {
        right: 15px;
    }

                .bottom {
                    max-width: 450px !important;
                }
}

/* Küçük Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    .slide-content {
        bottom: 12%;
        width: 95%;
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .slide-subtitle {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 16px;
        line-height: 1.3;
    }
    
    a.prev {
        left: 10px;
    }
    
    a.next {
        right: 10px;
    }
        .adda {
            margin-bottom: -45px;
        }
}

/* Smooth Scrolling ve Performance Optimizasyonları */
.slide-image img {
    will-change: transform;
}

.slide-content * {
    will-change: transform, opacity;
}

/* Accessibility İyileştirmeleri */
@media (prefers-reduced-motion: reduce) {
    .slide,
    .slide-title,
    .slide-subtitle,
    .slide-description,
    .arrow {
        transition: none;
    }
    
    .arrow:before {
        animation: none;
    }
}

/* Focus States */
a.prev:focus,
a.next:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Loading State */
.slide-image img {
    transition: opacity 0.3s ease;
}

.slide-image img:not([src]) {
    opacity: 0;
}

