/* ================================================
   FOOTER — VividVerve
================================================ */

.vv-footer {
    background: var(--petrol-dark, #0a1c11);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 5rem 0 0;
}

/* ── Üst Alan ── */
.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* ── Marka Sütunu ── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    display: block;
    opacity: 0.9;
}

.footer-tagline {
    font-family: var(--font-main);
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.6;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: rgba(245, 240, 232, 0.4);
    transition: all 0.25s ease;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    border-color: var(--gold, #c9a84c);
    color: var(--gold, #c9a84c);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

/* ── Bağlantı Sütunları ── */
.footer-col-title {
    font-family: var(--font-main);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold, #c9a84c);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-family: var(--font-main);
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.45);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white, #f5f0e8);
    padding-left: 4px;
}

/* ── İletişim Sütunu ── */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(245, 240, 232, 0.45);
    font-size: 0.875rem;
    font-family: var(--font-main);
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--gold, #c9a84c);
    flex-shrink: 0;
    opacity: 0.7;
}

/* ── Alt Çizgi & Copyright ── */
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.footer-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
    margin-bottom: 1.5rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: var(--font-main);
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.25);
}

.footer-admin-link {
    font-family: var(--font-main);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-admin-link:hover {
    color: var(--gold, #c9a84c);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        flex-direction: column;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}
