/* =====================================================
   footer.css – Vinski Klub footer stilovi
   Dodaj u: wp-content/themes/vinski-klub/css/footer.css
   Učitaj u functions.php:

   wp_enqueue_style(
       'vk-footer',
       get_template_directory_uri() . '/css/footer.css',
       array(),
       '1.0.0'
   );
   ===================================================== */

/* ── Design tokens (ako ih nemaš globalno) ──── */
:root {
    --vk-red:        #c0392b;
    --vk-dark:       #1e1a18;
    --vk-quote-bg:   #b09080;
    --vk-quote-text: #1C0F0A;
}

/* ── QUOTE STRIP ────────────────────────────── */
.vk-quote-strip {
    background: var(--vk-quote-bg);
    padding: 52px 24px;
    text-align: center;
}

.vk-quote-strip p {
    font-family: Georgia, serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--vk-quote-text);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
    font-style: italic;
}

/* ── FOOTER SHELL ───────────────────────────── */
.vk-footer {
    background: var(--vk-dark);
    position: relative;
    overflow: hidden;
    padding: 64px 0 0;
}

/* Decorative grapes image – bottom left */
.vk-footer__grapes {
    position: absolute;
    bottom: 0;
    left: -18px;
    width: 220px;
    opacity: 0.13;
    pointer-events: none;
    user-select: none;
}

/* ── INNER CONTAINER ────────────────────────── */
.vk-footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── COLUMNS ROW ────────────────────────────── */
.vk-footer__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    gap: 40px;
    padding-bottom: 20px;
}

/* ── LOGO ───────────────────────────────────── */
.vk-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.vk-footer__logo-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.vk-footer__logo-text {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    color: var(--vk-red);
    font-weight: 700;
    letter-spacing: .01em;
}

.vk-footer__tagline {
    font-size: .82rem;
    color: rgba(255, 255, 255, .38);
    font-style: italic;
    margin: 8px 0 0;
    padding: 0;
}

/* ── NAV COLUMNS ────────────────────────────── */
.vk-footer__col-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin: 0 0 18px;
    padding: 0;
}

.vk-footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vk-footer__nav li {
    margin-bottom: 13px;
}

.vk-footer__nav a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: .92rem;
    transition: color .18s ease;
}

.vk-footer__nav a:hover {
    color: var(--vk-red);
}

/* ── BOTTOM BAR ─────────────────────────────── */
.vk-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0;
    margin-top: 40px;
}

.vk-footer__email {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding-bottom: 1px;
    transition: color .18s ease, border-color .18s ease;
}

.vk-footer__email:hover {
    color: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .5);
}

.vk-footer__copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .28);
    margin: 0;
    text-align: center;
}

.vk-footer__copy a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .18s ease;
}

.vk-footer__copy a:hover {
    color: rgba(255, 255, 255, .7);
}

/* ── SOCIAL ICONS ───────────────────────────── */
.vk-footer__social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.vk-footer__social a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color .18s ease;
}

.vk-footer__social a:hover {
    color: rgba(255, 255, 255, .85);
}

/* ── TABLET (max 900px) ─────────────────────── */
@media (max-width: 900px) {
    .vk-footer__row {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .vk-footer__col--logo {
        grid-column: 1 / -1;
    }
}

/* ── MOBILE (max 600px) ─────────────────────── */
@media (max-width: 600px) {
    .vk-footer {
        padding: 40px 0 0;
    }

    .vk-footer__grapes {
        width: 150px;
    }

    .vk-footer__row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vk-footer__col--logo {
        grid-column: auto;
    }

    .vk-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .vk-footer__copy {
        text-align: left;
    }

    .vk-quote-strip {
        padding: 36px 20px;
    }
}
