﻿.owl-nav {
    display: none !important;
}

/* ==========================================================
       ANASAYFA SLİDER - PROFESYONEl TASARIM
       ========================================================== */

/* Google Fonts - import in your HTML head:
       <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
    */

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 0;
}

    /* ===== SLIDE ===== */
    .slider-container .slide {
        position: relative;
        width: 100%;
        height: 420px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

        /* Koyu gradient overlay - soldan sağa */
        .slider-container .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient( 105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.75) 35%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.05) 100% );
            z-index: 1;
        }

        /* Alt kısımda ince turuncu şerit */
        .slider-container .slide::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #f5a623, #f27a1a, #e8590c);
            z-index: 3;
        }

    /* ===== İÇERİK ===== */
    .slider-container .slide-content {
        position: relative;
        z-index: 2;
        max-width: 550px;
        padding: 30px 60px;
        background: none;
        border-radius: 0;
        box-shadow: none;
        animation: slideContentIn 0.8s ease-out;
    }

@@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Üst dekoratif çizgi */
.slider-container .slide-content::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #f27a1a;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Başlık */
.slider-container .slide-content h2 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 12px 0;
    padding: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Açıklama */
.slider-container .slide-content p {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: 400;
    max-width: 420px;
}

/* Buton */
.slider-container .slide-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f27a1a;
    color: #fff;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-transform: none;
    border: 2px solid #f27a1a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .slider-container .slide-content .btn::after {
        content: '\2192';
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .slider-container .slide-content .btn:hover {
        background: transparent;
        color: #fff;
        border-color: #f27a1a;
        box-shadow: 0 0 30px rgba(242, 122, 26, 0.25);
    }

        .slider-container .slide-content .btn:hover::after {
            transform: translateX(5px);
        }

/* ===== OWL CAROUSEL NAVIGATION ===== */
.slider-container .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
    pointer-events: none;
}

    .slider-container .owl-nav button.owl-prev,
    .slider-container .owl-nav button.owl-next {
        pointer-events: all;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        color: #fff !important;
        font-size: 20px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

        .slider-container .owl-nav button.owl-prev:hover,
        .slider-container .owl-nav button.owl-next:hover {
            background: rgba(242, 122, 26, 0.85) !important;
            border-color: #f27a1a !important;
            box-shadow: 0 4px 20px rgba(242, 122, 26, 0.3);
            transform: scale(1.05);
        }

        .slider-container .owl-nav button.owl-prev span,
        .slider-container .owl-nav button.owl-next span {
            font-size: 22px;
            line-height: 1;
        }

/* ===== OWL DOTS ===== */
.slider-container .owl-dots {
    position: absolute;
    bottom: 14px;
    left: 60px;
    z-index: 5;
    display: flex;
    gap: 8px;
}

    .slider-container .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3) !important;
        border: none !important;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0 !important;
    }

        .slider-container .owl-dots .owl-dot:hover {
            background: rgba(255, 255, 255, 0.6) !important;
        }

        .slider-container .owl-dots .owl-dot.active {
            background: #f27a1a !important;
            width: 28px;
            border-radius: 5px;
        }

/* ==========================================================
       RESPONSİVE
       ========================================================== */
@@media (max-width: 992px) {
    .slider-container .slide {
        height: 350px;
    }

        .slider-container .slide::before {
            background: linear-gradient( 105deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.35) 100% );
        }

    .slider-container .slide-content {
        padding: 30px 35px;
        max-width: 450px;
    }

        .slider-container .slide-content h2 {
            font-size: 34px;
        }

        .slider-container .slide-content p {
            font-size: 14px;
            margin-bottom: 22px;
        }

        .slider-container .slide-content .btn {
            padding: 12px 26px;
            font-size: 13px;
        }

    .slider-container .owl-nav {
        display: none;
    }

    .slider-container .owl-dots {
        left: 35px;
        bottom: 16px;
    }
}

@@media (max-width: 576px) {
    .slider-container {
        border-radius: 12px;
    }

        .slider-container .slide {
            height: 300px;
        }

            .slider-container .slide::before {
                background: linear-gradient( 180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 100% );
            }

        .slider-container .slide-content {
            padding: 24px 24px;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            box-sizing: border-box;
        }

            .slider-container .slide-content::before {
                width: 35px;
                height: 3px;
                margin-bottom: 14px;
            }

            .slider-container .slide-content h2 {
                font-size: 26px;
                letter-spacing: 1px;
            }

            .slider-container .slide-content p {
                font-size: 13px;
                margin-bottom: 18px;
                line-height: 1.55;
            }

            .slider-container .slide-content .btn {
                padding: 11px 22px;
                font-size: 12.5px;
                width: fit-content;
            }

        .slider-container .owl-dots {
            left: 24px;
            bottom: 14px;
            display: none;
        }
}
