/* --- HERO SLIDER GENEL YAPISI --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    max-height: 1000px;
    background-color: #0e0f12;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide Elemanı */
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Arka Plan Görseli */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Masaüstü Görsel Üzeri Dereceli Karartma */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(10, 11, 13, 0.95) 0%, 
        rgba(10, 11, 13, 0.70) 35%, 
        rgba(10, 11, 13, 0) 60%
    );
    z-index: 2;
}

/* --- İÇERİK ALANI --- */
.slide-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.slide-content {
    max-width: 620px;
    padding: 20px 0;
}

/* Animasyonlar */
.slide-item .tagline-wrapper,
.slide-item .slide-title,
.slide-item .slide-subtitle,
.slide-item .slide-description,
.slide-item .slider-btn {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slide-item.active .tagline-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.slide-item.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.slide-item.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.slide-item.active .slide-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

.slide-item.active .slider-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}

/* Üst Küçük Başlık */
.tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.tagline {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e2b765;
    text-transform: uppercase;
}

.tagline-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #c5a059, transparent);
}

/* Ana Başlık */
.slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.slide-title .title-white {
    display: block;
}

.slide-title .script-text {
    display: inline-block;
    font-family: 'Alex Brush', cursive;
    font-size: 68px;
    font-weight: 400;
    background: linear-gradient(135deg, #f0c978 0%, #c5a059 50%, #997a36 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.9;
    margin-top: 2px;
}

/* Alt Başlık */
.slide-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
}

.sub-bar {
    width: 3px;
    height: 16px;
    background-color: #c5a059;
    border-radius: 2px;
}

/* Açıklama */
.slide-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 520px;
}

/* --- PNG KAPI KOLU İKONLU BUTON --- */
.slider-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    transition: transform 0.35s ease, filter 0.35s ease;
    max-width: 100%;
}

.btn-bg-img {
    height: 75px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: filter 0.35s ease;
}

.slider-btn .btn-text {
    position: absolute;
    left: 63%; 
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.slider-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.slider-btn:hover .btn-bg-img {
    filter: drop-shadow(0 0 15px rgba(226, 183, 101, 0.5));
}

/* --- NAVİGASYON & SAYAÇ --- */
.slider-controls-wrapper {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    pointer-events: none;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(10, 11, 13, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.5);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background: #c5a059;
    color: #000000;
    border-color: #c5a059;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.6);
}

.slider-counter {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#currentSlideNum {
    color: #c5a059;
    font-size: 16px;
}

.counter-divider {
    color: rgba(255, 255, 255, 0.3);
}

.slider-progress-bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #c5a059, #f0c978);
}

/* ========================================================= */
/* --- RESPONSIVE DÜZENLEMELER (TABLET & MOBİL) --- */
/* ========================================================= */

@media screen and (max-width: 992px) {
    .hero-slider-section {
        height: 85vh;
        min-height: 580px;
    }

    .slide-overlay {
        background: linear-gradient(
            180deg, 
            rgba(10, 11, 13, 0.90) 0%, 
            rgba(10, 11, 13, 0.55) 50%, 
            rgba(10, 11, 13, 0.10) 100%
        );
    }

    .slide-content-wrapper {
        align-items: flex-start;
        padding-top: 135px;
        padding-bottom: 0;
    }

    .slide-content {
        max-width: 100%;
        padding: 0;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-title .script-text {
        font-size: 46px;
    }

    .slide-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .slider-controls-wrapper {
        bottom: 25px;
        left: 0;
        transform: none;
        align-items: center;
    }

    .slider-controls {
        justify-content: center;
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .hero-slider-section {
        height: 88vh;
        min-height: 540px;
    }

    .slide-content-wrapper {
        padding-top: 125px;
    }

    .slide-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .slide-title .script-text {
        font-size: 38px;
    }

    .tagline {
        font-size: 10px;
    }

    .tagline-line {
        width: 30px;
    }

    .slide-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .slide-description {
        font-size: 12px;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn-bg-img {
        height: 52px;
    }

    .slider-btn .btn-text {
        font-size: 10px;
        left: 64%;
        letter-spacing: 0.5px;
    }

    .slider-controls-wrapper {
        bottom: 20px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .slider-progress-bar {
        width: 130px;
    }
}