/* ============================================================
   Han Footer Widget — CSS v1.0
   hantema.com | Han Geliştirici
   ============================================================ */

.han-ft-wrapper *,
.han-ft-wrapper *::before,
.han-ft-wrapper *::after { box-sizing: border-box; }

/* ── Ana alan ── */
.han-ft-main {
    background-color: #cc0000;
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}

/* Dekoratif arka plan daire */
.han-ft-main::before,
.han-ft-main::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.han-ft-main::before {
    width: 420px; height: 420px;
    bottom: -120px; left: -80px;
}
.han-ft-main::after {
    width: 280px; height: 280px;
    top: -60px; right: 10%;
}

/* ── İçerik max-width ── */
.han-ft-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* ── Grid ── */
.han-ft-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

/* ── Logo ── */
.han-ft-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}
.han-ft-logo img {
    width: 160px;
    height: auto;
    display: block;
}
.han-ft-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* ── Açıklama ── */
.han-ft-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0 0 32px 0;
    max-width: 320px;
}

/* ── Sosyal Medya ── */
.han-ft-social { margin-top: 8px; }
.han-ft-social-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.han-ft-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.han-ft-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.han-ft-social-link:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}
.han-ft-social-link i {
    font-size: 16px;
    line-height: 1;
}

/* ── Menü Kolonu ── */
.han-ft-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    padding: 0;
    letter-spacing: 0.01em;
}
.han-ft-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.han-ft-menu li {
    margin-bottom: 14px;
}
.han-ft-menu li:last-child { margin-bottom: 0; }
.han-ft-menu a {
    color: rgba(255,255,255,0.80);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.han-ft-menu a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* WP nav menu sıfırla */
.han-ft-menu .menu,
.han-ft-menu .nav-menu,
.han-ft-menu ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.han-ft-menu .menu li,
.han-ft-menu .nav-menu li { margin-bottom: 14px; }
.han-ft-menu .menu li:last-child,
.han-ft-menu .nav-menu li:last-child { margin-bottom: 0; }
.han-ft-menu .sub-menu { display: none; } /* Alt menüyü gizle */

/* ── Ayırıcı ── */
.han-ft-divider {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 48px 0 0;
}

/* ══════════════════════════════════
   COPYRIGHT BARI
   ══════════════════════════════════ */
.han-ft-copyright {
    background-color: #111111;
    padding: 16px 48px;
}
.han-ft-copyright-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #9ca3af;
}
.han-ft-copy-left,
.han-ft-copy-right { line-height: 1.5; }

/* ══════════════════════════════════
   MOBİL
   ══════════════════════════════════ */
@media (max-width: 1024px) {
    .han-ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .han-ft-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .han-ft-main { padding: 48px 24px; }
    .han-ft-copyright { padding: 14px 24px; }
    .han-ft-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .han-ft-col-brand { grid-column: auto; }
    .han-ft-desc { max-width: 100%; }
    .han-ft-logo-text { font-size: 24px; }
    .han-ft-copyright-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
    .han-ft-main::before,
    .han-ft-main::after { display: none; }
}

@media (max-width: 480px) {
    .han-ft-main { padding: 40px 16px; }
    .han-ft-copyright { padding: 12px 16px; }
    .han-ft-social-icons { gap: 8px; }
    .han-ft-menu a { font-size: 14px; }
}
