/***********************************************
   ADA COMPOUND – SAFE FULLSCREEN SLIDER
   CLASS PREFIX: ada-slider-*
************************************************/

/* SLIDER CONTAINER */
.ada-slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* EACH SLIDE FULLSCREEN */
.ada-slider-container .swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh !important;
    overflow: hidden;
}

/* SLIDE BACKGROUND */
.ada-slider-bg {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    z-index: 1;
}

/* DARK OVERLAY */
.ada-slider-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* TEXT CONTENT */
.ada-slider-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 5;
    color: #fff;
}

.ada-slider-content h2 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.ada-slider-content h2 em {
    color: #f47537;
    font-style: normal;
}

.ada-slider-content p {
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.6;
    opacity: 0.9;
}

/* BUTTONS */
.ada-slider-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.ada-slider-btn-yellow {
    padding: 12px 28px;
    background: #f47537;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: .25s;
}

.ada-slider-btn-yellow:hover {
    background: #f47f45;
}

.ada-slider-btn-dark {
    padding: 12px 28px;
    background: #000;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .25s;
}

.ada-slider-btn-dark:hover {
    background: #111;
}

/* ARROWS – TEMA İLE ÇAKIŞMAYAN */
.ada-slider-container .swiper-button-next,
.ada-slider-container .swiper-button-prev {
    color: #fff !important;
    z-index: 20;
    opacity: .75;
    transition: .25s;
}

.ada-slider-container .swiper-button-next:hover,
.ada-slider-container .swiper-button-prev:hover {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ada-slider-content h2 {
        font-size: 32px;
    }
    .ada-slider-content p {
        font-size: 16px;
    }
}
/* Slider container */
.ada-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Slide */
.ada-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 1s ease;
}

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

/* Background */
.ada-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ada-slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content */
.ada-slider-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    z-index: 5;
}

.ada-slider-content h2 {
    font-size: 50px;
    font-weight: 800;
}

.ada-slider-content h2 em {
    font-style: normal;
    color: #f47537;
}

.ada-slider-content p {
    margin-top: 18px;
    font-size: 19px;
    opacity: .9;
}

/* Buttons */
.ada-slider-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.ada-slider-btn-yellow {
    padding: 12px 28px;
    background: #f47537;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
}

.ada-slider-btn-dark {
    padding: 12px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
}

/* Arrows */
.ada-prev,
.ada-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    opacity: .7;
}

.ada-prev:hover,
.ada-next:hover {
    opacity: 1;
}

.ada-prev { left: 20px; }
.ada-next { right: 20px; }
