@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Jost:wght@300;400;500&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

:root {
    --primary: #9c6b5e;
    --primary-light: #b8867a;
    --primary-dark: #7a5248;
    --dark: #2d2a29;
    --white: #ffffff;
    --bg-footer: #fdf9f7;
    --text-muted: #7a7270;
    --border-soft: #ecddd8;
}

.site-footer {
    background-color: var(--bg-footer);
    padding: 80px 0 0;
    color: var(--dark);
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    opacity: 0.5;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Logo & About Column */
.footer-logo {
    max-width: 140px;
    margin-bottom: 18px;
    display: block;
}

.footer-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* Sosyal Linkler — sağ kolonda, iletişimin altında */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-links a {
    width: 38px; height: 38px;
    border: 1px solid var(--border-soft);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--white);
}

.social-links a svg {
    display: block;
    flex-shrink: 0;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(156, 107, 94, 0.25);
}

/* Footer Titles */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    color: var(--dark);
    position: relative;
    padding-bottom: 14px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 1px;
    background: var(--primary);
}

/* Quick Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.footer-menu a:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* Contact Info */
.footer-contact p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 17px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Divider */
.footer-divider {
    border: none;
    border-top: 1px solid var(--border-soft);
    margin: 0;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 22px 0;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #b0a9a7;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────
   MOBILE (≤768px)
───────────────────────────────────────── */
@media (max-width: 768px) {
    .site-footer {
        padding: 56px 0 0;
    }

    .container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .footer-col {
        padding: 32px 0;
        border-bottom: 1px solid var(--border-soft);
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    /* İlk kolon: logo ortala */
    .footer-col:first-child {
        text-align: center;
    }

    .footer-col:first-child .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-col:first-child .footer-desc {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Sosyal butonlar mobilyde sağ kolonda sola hizalı kalır */
    .social-links {
        justify-content: flex-start;
    }

    .footer-title::after {
        left: 0;
    }

    .footer-contact p {
        font-size: 13.5px;
    }

    .footer-bottom {
        padding: 20px 0;
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .footer-col:first-child .footer-desc {
        max-width: 100%;
    }
}