/* =========================
   FOOTER BACKGROUND – HERO DAVRANIŞI
========================= */

.colorfooter {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 50px;
    display: block;
}

/* Görsel (hero ile aynı sistem) */
.colorfooter .footer-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    object-position: bottom;
    z-index: 0;
}

/* Üst fade (hero uyumlu) */
.colorfooter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #383C3F;
    pointer-events: none;
    z-index: 1;
}

.footer-inner {
    position: relative;
    max-width: 1440px;   /* 14” referans genişliği civarı */
    margin: 0 auto;
    z-index: 2;
}

/* =========================
   NETWORK
========================= */
.network-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0px;
    margin-bottom: 50px;
    padding-top: 0;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.network-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    padding: 7px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.network-icons a:hover {
    transform: scale(1.3);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255,255,255,0.15);
}

.network-icons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   FOOTER LOGO HOVER
========================= */
.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative; /* hover zemin için */
    border-radius: 20px;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: auto;
}

.footer-logo-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* logo ve hover arka plan için stacking context */
}

.footer-logo img {
    height: 21px; /* logo kendi yüksekliği */
    width: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 3;
}

.footer-logo-bg {
    content: "";
    position: absolute;
    top: 50%; /* ortala */
    transform: translateY(-50%); /* ortalamayı uygula */
    left: -20px;       /* sol tarafa taş */
    width: calc(100% + 40px); /* toplamda 20px sağ + 20px sol ekle */
    background: transparent;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 20px;
    border: 0px solid rgba(255,255,255,0.15);
    opacity: 0;
    z-index: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo-inner:hover .footer-logo-bg {
    opacity: 1;
    height: 64px;
}

.footer-motto-text {
    display: block;
    margin-top: 10px; /* logo altına boşluk */
    z-index: 3;       /* hover’ın üstünde */
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: rgba(242, 246, 252, 0.8);
}

.footer-logo:hover {
    transform: scale(1.1); /* logo hover’da büyür */
}


/* =========================
   FOOTER – MOTTO
========================= */
.site-footer {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 0px;
    text-align: center;
    color: rgba(242, 246, 252, 0.8);
}

.footer-motto {
    display: flex;
    flex-direction: column; /* logo üstte, motto altta */
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 5;
}

.footer-motto strong {
    font-weight: 500;
}

.footer-logo,
.footer-logo * {
    user-select: none;
    cursor: pointer;
}

/* =========================
   FOOTER – NAV LİNKLERİ
========================= */
.site-footer-nav {
    margin-top: 20px;
    text-align: center;
}

.footer-nav {
    position: relative;   /* ekle */
    z-index: 1;           /* parent için z-index */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;   /* satırlar arası mesafe */
    column-gap: 0px; /* yatay boşluk (mevcut hissi korur) */
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    overflow: visible;
}

.footer-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #F2F6FC;
    overflow: visible;      /* hover blur öne çıkmasın */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    height: 61px;
}

.footer-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    z-index: -1;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-nav a:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.footer-nav a:hover {
    color: rgba(242,246,252,1);
    transform: scale(1.1);
    z-index: 3;                 /* hover’da öne almak için */
}


/* =========================
   FOOTER - COPYRIGHT
========================= */
.site-footer-copyright {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 0px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    color: rgba(242, 246, 252, 0.6);
}

.footer-copy {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 1;
}

/* =========================
   TABLET ≤1024px
========================= */
@media (max-width:1024px){
    .footer-motto {
        font-size: 0.9rem;
    }

    .footer-copy {
        font-size: 0.8rem;
    }
    .footer-nav {
    font-size: 0.9rem;
    }
}

/* =========================
   TELEFON ≤768px
========================= */
@media (max-width:768px){
    .footer-motto {
        font-size: 0.9rem;
    }

    .footer-copy {
        font-size: 0.7rem;
    }
    .footer-nav {
    font-size: 0.9rem;
    }
}
