﻿.platinum-title {
    font-size: 42px;
    font-weight: 700;
    /* text-transform: uppercase;  <-- SİLİNDİ */
    letter-spacing: 1.5px;
    text-align: center;
    background: linear-gradient(90deg, #696969, #696969, #696969);
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

    /* Alt çizgi: 160px → daha premium */
    .platinum-title::after {
        content: "";
        width: 160px; /* biraz daha uzun */
        height: 3px;
        background: linear-gradient(90deg, #696969, #696969, #696969);
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    /* Hover efekti */
    .platinum-title:hover {
        transform: scale(1.03);
        letter-spacing: 2px;
    }

        .platinum-title:hover::after {
            width: 185px; /* hover’da hafif uzuyor */
        }

/* Mobil uyum */
@media (max-width: 768px) {
    .platinum-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

        .platinum-title::after {
            width: 110px;
        }

        .platinum-title:hover::after {
            width: 130px;
        }
}
