﻿body {
}

.copyright-wrap {
    background-color: #2c2c2c; /* Koyu arka plan */
    color: #ffffff; /* Beyaz metin */
    padding: 10px 0; /* Üst-alt boşluk */
    font-size: 14px;
}

.copyright-text {
    margin: 0;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.5s ease-in-out, margin 0.5s ease-in-out; /* margin'e de transition ekledik */
}

    .copyright-text a {
        text-decoration: none;
        color: inherit; /* Link rengi yazı rengini miras alır */
        transition: color 0.3s ease; /* Renk değişiminde yumuşak geçiş */
    }

.highlight {
    font-family: 'Open Sans', Arial, sans-serif; /* İstediğiniz yazı tipi */

    display: inline-block;
    transition: transform 0.5s ease-in-out, margin 0.5s ease-in-out; /* margin'e de transition ekledik */
}

/* Hover ile büyüme efekti */
.copyright-text a:hover .highlight {
    transform: scale(1.5); /* Büyütme efekti */
}

.copyright-text a:hover .ik {
    margin-left: 0.5em;
    margin-right: 0.5em;
    transform: scale(1.5); /* Büyütme efekti */
}

.copyright-text a:hover .msş {
    margin-left: 0.7em;
    transform: scale(1.5); /* Büyütme efekti */
}

/* Responsive ayarlar (mobilde) */
@media (max-width: 768px) {
    .copyright-wrap .row {
        display: flex;
        flex-direction: column; /* Elemanları alt alta diz */
    }

    .copyright-wrap .col-12 {
        text-align: left; /* Tamamen sola hizala */
        margin-bottom: 10px; /* Alt boşluk */
        padding-left: 0; /* Sola sıfırla */
    }
}
