﻿/* HERO - KARİYER SEKSİYONU */
.hero-kariyer-section {
    position: relative;
    width: 100%;
    height: 42vh;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.hero-kariyer-bg {
    position: absolute;
    inset: 0;
    background-image: url("/img/sayfalar/kariyer/daf-kariyer-office.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-kariyer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
    z-index: 2;
}

.hero-kariyer-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 40px 40px;
}

.kariyer-hero-title-upper {
    font-size: 14px;
    letter-spacing: 4px;
    opacity: 0.85;
    margin-top: 25px;
    text-transform: uppercase;
}

.hero-kariyer-title {
    font-size: clamp(32px, 6vw, 58px);
    font-weight: 700;
}

.hero-kariyer-breadcrumb {
    font-size: 14px;
    font-weight: 600;
    color: white;
    justify-content: flex-start;
}

    .hero-kariyer-breadcrumb a {
        color: #ddd;
        text-decoration: none;
    }

        .hero-kariyer-breadcrumb a:hover {
            color: #dfb887;
        }


/* SLOGAN */
.hero-kariyer-slogan-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.hero-kariyer-slogan-text-style {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    line-height: 1.1;
    border-left: 4px solid #fff;
    padding-left: 15px;
    color: #fff;
    text-transform: capitalize;
}


/* ALT NAVİGASYON (SEKME ÇUBUĞU) */

.kariyer-sub-nav-bar {
    width: 100%;
    background: #f8f8f8;
    box-shadow: 0 3px 6px rgba(0,0,0,.06);
}

.kariyer-sub-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    gap: 18px;
}

    .kariyer-sub-nav-container .button {
        cursor: pointer;
        font-weight: 600;
        background: transparent;
        border: none;
        padding: 8px 15px;
        font-size: 15px;
        transition: .3s;
    }

        .kariyer-sub-nav-container .button.active,
        .kariyer-sub-nav-container .button:hover {
            color: #1F3363;
            background: #eaeaea;
        }


/* SEKME İÇERİKLERİ */

.tab-content {
    padding: 60px 40px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hidden {
    display: none;
}


/* KARTLAR */
.kariyer-card {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.position-card {
    border: 1px solid #eee;
    padding: 25px;
    background: #fff;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
}

    .position-card h5 {
        margin-bottom: 8px;
        color: #1F3363;
        font-size: 18px;
    }


/* BAŞVURU BUTONU */
.apply-btn {
    display: inline-block;
    background: #1F3363;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

    .apply-btn:hover {
        opacity: .85;
    }


/* ALT ÇİZGİ ANİMASYONU */
.underline-anim {
    position: relative;
    text-decoration: none;
    color: #1F3363;
    font-weight: 600;
}

    .underline-anim::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: -2px;
        left: 0;
        background: #1F3363;
        transition: width .3s ease;
    }

    .underline-anim:hover::after {
        width: 100%;
    }


/* DEĞERLERİMİZ - GÖRSELLER */

.value-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
}

.value-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* RESPONSIVE STİLLER */

@media (max-width: 992px) {

    .hero-kariyer-container {
        padding: 100px 24px 40px;
    }

    .kariyer-sub-nav-container {
        padding: 12px 24px;
    }

    .tab-content {
        padding-left: 24px;
        padding-right: 24px;
    }
}
