@font-face {
    font-family: 'NunitoSans-Regular';
    src: url('../fonts/NunitoSans_10pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    scroll-behavior: smooth; /* Yumuşak kaydırma */
    overflow: auto; /* Kaydırmaya izin ver */
}

footer {
    font-family: NunitoSans-Regular;
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Desktop Footer Styles */
.footer-desktop .footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.footer-logo{
    width: 80%;
}


.footer-desktop .footer-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.footer-desktop .footer-menu ul li {
    margin: 0 15px;
}

.footer-desktop .footer-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-desktop .social-media {
    margin: 0;
    text-align: end;
    padding-right: 40px;
}

.footer-desktop .social-media a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
}

.footer-desktop .contact-info {
    margin: 10px 0;
    font-size: 14px;
    text-align: right;
    padding-right: 40px;
}

.footer-desktop .contact-info p{
    padding: 0;
    margin: 0;
}
/* Genel footer ayarları */
.footer-mobile {
    background-color: black;
    color: white;
    padding: 20px;
    display: none;
}

/* İlk Satır: Logo ve Back to Top */
.footer-mobile .logo {
    text-align: left;
}

.footer-mobile .logo img {
    width: 120px; /* Logonun genişliği */
    height: auto; /* Orantılı şekilde yüksekliği */
}

.footer-mobile .back-to-top {
    text-align: right;
}

.footer-mobile .back-to-top a {
    color: white;
    text-decoration: none;
    font-size: 20px; /* Font boyutu */
    font-family: 'Arial', sans-serif; /* Basit sans-serif font */
}

.footer-mobile .back-to-top a:hover {
    text-decoration: underline; /* Hover etkisiyle altı çizili */
}

/* İkinci Satır: Menü Linkleri */
.footer-mobile .footer-menu {
    display: flex;
    justify-content: space-between; /* Menü elemanlarını sağa ve sola yasla */
    padding: 0;
    margin-bottom: 20px; /* Menü altında boşluk */
}

.footer-mobile .footer-menu ul {
    display: flex;
    justify-content: space-between; /* Menü elemanları arasındaki boşluğu eşit yap */
    width: 100%; /* Menü tüm genişliği kaplasın */
    list-style: none; /* Liste işaretlerini kaldır */
    padding: 0 10px;
    margin: 0;
}

.footer-mobile .footer-menu ul li {
    flex: 1; /* Menü elemanlarının esnek olması için */
    text-align: center;
}

.footer-mobile .footer-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-family: NunitoSans-Regular, sans-serif;
}

.footer-mobile .footer-menu ul li a:hover {
    text-decoration: underline; /* Link hover etkisi */
}

/* Üçüncü Satır: Sosyal Medya ve Adres Bilgileri */
.footer-mobile .social-media {
    text-align: left;
    margin-bottom: 20px;
}

.footer-mobile .social-media a {
    margin-right: 10px; /* Sosyal medya ikonları arasında boşluk */
}

.footer-mobile .social-media img {
    width: 30px;
    height: auto;
}

.footer-mobile .contact-info {
    text-align: right;
    font-size: 14px;
    line-height: 1.6;
    font-family: NunitoSans-Regular, sans-serif;
}

.footer-mobile .contact-info p {
    margin: 0; /* Boşluk kaldır */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    /* Mobil uyumlu logo ve back to top ayarları */
    .footer-mobile .row {
        display: flex;
        justify-content: space-between; /* Sola ve sağa hizalama */
        align-items: center; /* Dikey hizalama */
        margin-bottom: 20px; /* Satırlar arası boşluk */
    }

    /* Menü linklerinin mobilde ortalanması */
    .footer-mobile .footer-menu ul {
        padding: 0;
        text-align: center; /* Mobilde menü ortalanacak */
    }

    /* Mobilde Sosyal medya ve adres hizalaması */
    .footer-mobile .social-media {
        margin-bottom: 10px; /* Alt boşluk */
    }

    .footer-mobile .contact-info {
        text-align: center; /* Mobilde adres bilgisi de ortalanacak */
        margin-top: 10px;
    }

    .footer-mobile .contact-info p {
        font-size: 14px; /* Mobilde küçük font */
    }
}

@media (max-width: 767px) {
    .footer-desktop {
        display: none;
    }
    .footer-mobile {
        display: block;
    }

    .footer-mobile .back-to-top a {
        color: white;
        text-decoration: none;
        font-size: 14px; /* Font boyutu */
        font-family: 'Arial', sans-serif; /* Basit sans-serif font */
    }
}