/* ============================
   SLIDER ANA YAPI
============================ */
.agam-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ============================
   SLAYT
============================ */
.agam-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Overlay */
.agam-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Arka plan video */
.agam-slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ============================
   İÇERİK ALANI — Sağ Panel
============================ */
.agam-slide-inner {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end; /* sağ hizalama */

    padding-right: 6vw;
    padding-left: 6vw;

    z-index: 5;
    box-sizing: border-box;
}

/* İçerik kutusu */
.agam-content-box {
    max-width: 450px;
    width: 100%;
    color: #fff;
}

/* Başlık */
.agam-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #ffffff;
}

/* Açıklama */
.agam-desc {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 25px;
    color: #ffffff;
    opacity: 0.95;
}

/* Buton */
.agam-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #ff0040;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.25s ease;
}

.agam-btn:hover {
    background: #cc0033;
}

/* ============================
   NAVIGATION (OKLAR)
============================ */
.agam-nav-prev,
.agam-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    color: #ffffff;
    z-index: 10;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
}

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

.agam-nav-prev {
    left: 25px;
}

.agam-nav-next {
    right: 25px;
}

/* ============================
   PAGINATION (NOKTALAR)
============================ */
.agam-pagination {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.agam-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.agam-dot.active {
    background: #ff0040;
}

/* ============================
   MOBİL DÜZENLEMELER
============================ */
@media (max-width: 768px) {
    .agam-slide-inner {
        justify-content: center;
        padding: 20px;
        text-align: center;
    }

    .agam-content-box {
        max-width: 90%;
    }

    .agam-title {
        font-size: 32px;
    }

    .agam-desc {
        font-size: 18px;
    }

    .agam-btn {
        font-size: 16px;
        padding: 12px 28px;
    }
}

/* SLAYT KAYMA TRACK */
.agam-slides-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.55s ease;
}
.agam-slide {
    min-width: 100%;
}
