/* =========================
   INDEX SAYFASI
========================= */


/* Hero */

.hero{
    padding:55px 0 30px;
    margin-bottom:70px;
    text-align:left;
}


.hero h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#000;
}


.hero p{
    font-size:18px;
    color:#555;
}




/* İstatistik başlığı */

.index-content > h2,
.stats-title{

    font-size:26px;
    margin-bottom:20px;
    border-left:5px solid #333;
    padding-left:10px;

}



/* Kart alanı */

.card-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

}



/* Kartlar */

.card{

    background:white;
    border:1px solid #ddd;
    border-radius:12px;
    padding:25px;
    text-align:center;

}



.card h2{

    font-size:20px;
    margin-bottom:20px;

}

.card h2 small{
    display:block;
    margin-top:4px;
    color:#666;
    font-size:13px;
    font-weight:600;
}

.line-count{
    margin:-8px 0 16px;
    color:#666;
    font-size:14px !important;
    font-weight:700;
}



.card p{

    font-size:18px;
}


.completion-section{
    margin-top:55px;
}

.completion-list{
    display:flex;
    flex-direction:column;
    gap:28px;
    padding:25px;
    background:white;
    border:1px solid #ddd;
    border-radius:12px;
}

.completion-heading{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:8px;
    color:#333;
    font-size:15px;
    font-weight:600;
}

.completion-heading span{
    line-height:1.4;
}

.completion-opening{
    display:block;
    margin-top:4px;
    color:#777;
    font-size:12px;
    font-weight:500;
}

.completion-heading strong{
    flex:none;
    color:#333;
}

.progress-track{
    width:78%;
    height:12px;
    overflow:hidden;
    background:#e8e8e8;
    border-radius:999px;
}

.progress-fill{
    height:100%;
    border-radius:inherit;
}

.m4b-progress .progress-fill{
    background:#e91977;
}

.dark .completion-list{
    background:#1e1e1e;
    border-color:#333;
}

.dark .completion-heading,
.dark .completion-heading strong{
    color:#fff;
}

.dark .completion-opening{
    color:#aaa;
}

.dark .card h2 small,
.dark .line-count{
    color:#aaa;
}

.dark .progress-track{
    background:#3a3a3a;
}

.m10-progress .progress-fill{
    background:#4da93e;
}

.m12-progress .progress-fill{
    background:#cad300;
}

.m13-progress .progress-fill{
    background:#ff4b58;
}

.m14-progress .progress-fill{
    background:#b16400;
}


/* Hat logoları */

.line-logos{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;

}



.stat-logo{

    width:25px;
    height:25px;
    object-fit:contain;

}



/* MOBİL */

@media(max-width:768px){

    .hero h1{

        font-size:28px;

    }


    .hero p{

        font-size:15px;

    }


    .card-container{

        grid-template-columns:1fr;

    }


    .card{

        padding:20px;

    }


    .stat-logo{

        width:40px;
        height:40px;

    }

    .completion-section{
        margin-top:40px;
    }

    .completion-list{
        padding:20px 16px;
    }

    .completion-heading{
        font-size:14px;
        gap:12px;
    }

    .progress-track{
        width:100%;
    }

}
