@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&family=Parisienne&display=swap');

/* ==========================================================
   MASK OPTICA — Footer
   Site geneliyle aynı token ailesi (bkz. slider.css / anasayfa-genel-icerik.css)
   ========================================================== */

.main-footer {
    --ink-900: #06111f;
    --ink-800: #0d1f38;
    --ink-700: #172c4d;
    --brass-500: #c6a15b;
    --brass-400: #d9bd80;
    --paper-100: #f5f7fa;
    --sky-300: #b8d4f5;

    background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-900) 100%);
    color: var(--paper-100);
}

.main-footer * {
    box-sizing: border-box;
}

.footer-top {
    padding: 90px 0 60px;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 1fr 0.9fr;
    gap: 50px;
}

/* ---------- Marka sütunu ---------- */

.footer-logo {
    max-width: 168px;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 247, 250, 0.7);
    margin: 0 0 26px;
    max-width: 34ch;
}

.footer-script {
    font-family: 'Parisienne', cursive;
    font-size: 1.2em;
    color: var(--sky-300);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--brass-400);
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social-link:hover {
    border-color: var(--brass-500);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Başlıklar ---------- */

.footer-col h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    color: #fff;
    margin: 0 0 24px;
}

/* ---------- Hızlı linkler ---------- */

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: rgba(245, 247, 250, 0.72);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.footer-col ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--brass-500);
    transition: width 0.3s ease;
}

.footer-col ul a:hover {
    color: #fff;
}

.footer-col ul a:hover::after {
    width: 100%;
}

/* ---------- İletişim ---------- */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(245, 247, 250, 0.72);
}

.footer-contact li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--brass-400);
}

.footer-contact li a {
    color: rgba(245, 247, 250, 0.72);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #fff;
}

/* ---------- Çalışma Saatleri ---------- */

.footer-hours li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(245, 247, 250, 0.72);
}

.footer-hours li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--brass-400);
}

.footer-hours li span {
    display: flex;
    flex-direction: column;
}

.footer-hours li strong {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

/* ---------- Ayraç (site imzası: mercek motifi) ---------- */

.footer-divider {
    display: flex;
    justify-content: center;
    color: var(--brass-500);
    opacity: 0.7;
    padding-bottom: 40px;
}

.footer-divider svg {
    width: 46px;
    height: 18px;
}

/* ---------- Alt bar ---------- */

.footer-bottom {
    background: var(--ink-900);
    padding: 22px 0;
}

.footer-bottom-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom-inner p {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    color: rgba(184, 212, 245, 0.65);
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-credit:hover {
    opacity: 1;
}

.footer-credit span {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245, 247, 250, 0.6);
}

.footer-credit-logo {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* ==========================================================
   Mobil Uyumluluk
   ========================================================== */

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 44px;
        text-align: center;
    }

    .footer-top {
        padding: 64px 0 48px;
    }

    .footer-logo {
        margin: 0 auto 22px;
        display: block;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li,
    .footer-hours li {
        justify-content: center;
        text-align: left;
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}