.site-footer {
    background-color: #000; /* Daha koyu bir arka plan rengi */
    color: #8a8d90; /* Soft bir font rengi */
    padding: 60px 0; /* Daha fazla boşluk */
    font-size: 15px; /* Okunabilirlik için biraz daha büyük font */
    text-align: center; /* İçerikleri merkeze al */


}

.site-footer h4.footer-heading {
    color: #ffffff; /* Başlık için net bir renk */
    margin-bottom: 30px; /* Başlıklar ve içerik arası boşluk */
    font-size: 18px; /* Başlıklar için daha büyük font */
}

.site-footer .footer-links,
.site-footer .social-links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px; /* Link listeleri arası boşluk */
}

.site-footer .footer-links li,
.site-footer .social-links li {
    margin-bottom: 10px; /* Liste öğeleri arası boşluk */
}

.site-footer .footer-links li a,
.site-footer .social-links a {
    color: #8a8d90; /* Link rengi */
    text-decoration: none;
    transition: color 0.3s ease;
    font-family:'League Spartan', sans-serif;
    font-weight:500;
}

.site-footer .footer-links li a:hover,
.site-footer .social-links a:hover {
    color: #ffffff; /* Link hover rengi */
}

/* İkonların rengini değiştirmek için eklenen kural */
.site-footer .footer-links li a:hover i,
.site-footer .social-links a:hover i {
    color: #fd7e14; /* İkon hover rengi */
}

.subscribe-form {
    display: flex;
    justify-content: center; /* Formu merkeze al */
    margin-top: 30px;
    width: 100%; /* Form genişliği */
    max-width: 600px; /* Maksimum form genişliği */
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form input[type="email"] {
    flex-grow: 1;
    padding: 15px; /* Daha fazla padding */
    margin-right: 15px; /* Input ve buton arası boşluk */
    border: 2px solid #fd7e14; /* Input border stili */
    background-color: transparent; /* Arka plan rengi */
    color: #ffffff; /* Input text rengi */
    border-radius: 5px; /* Kenar yuvarlaklığı */
}

.subscribe-form input[type="email"]:focus {
    background-color: #282c34; /* Focus durumunda arka plan rengi */
    outline: none; /* Tarayıcı odak çerçevesini kaldır */
}

.subscribe-form button {
    border: none;
    padding: 10px 20px;
    background-color: #fd7e14;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Buton hover animasyonu */
}

.subscribe-form button:hover {
    background-color: #f78f3b !important; /* Buton hover rengi */
}

.social-links a {
    display: inline-block;
    margin: 0 5px; /* Sosyal medya ikonları arası boşluk */
    color: #8a8d90; /* İkon rengi */
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    margin-top: 40px; /* Footer alt kısım ve üst içerik arası boşluk */
    font-size: 14px;
}

@media (max-width: 768px) {
    /* Mobil cihazlarda düzenlemeler */
    .site-footer {
        text-align: center; /* Tüm içerikler merkeze alınır */
    }
    .mobile-heading{
        margin-top: 20px;
    }

    .subscribe-form {
        flex-direction: column; /* Abone ol form düzeni */
    }

    .subscribe-form input[type="email"],
    .subscribe-form button {
        width: 100%; /* Mobil cihazlarda genişlik ayarlamaları */
        margin-right: 0; /* Sağ boşluğu kaldır */
    }

    .subscribe-form input[type="email"] {
        margin-bottom: 15px; /* Input ile buton arası boşluk */
    }
}
