/* =============================================
   Vostberg Gold — Footer Styles
   Підключіть цей файл у WordPress:
   Зовнішній вигляд → Налаштувати → Додатковий CSS
   або через functions.php / плагін Code Snippets
   ============================================= */

/* ---------- CSS Variables ---------- */
.vg-footer {
    --gold: #AC8331;
    --gold-light: #C19B44;
    --gold-dark: #AC8331;
    --bg-footer-bottom: #080807;
    --text-primary: #b6b6b6;
    --text-muted: #d1d1d1;
    --border-color: rgba(69, 69, 69, 0.18);
}

/* ---------- Footer wrapper ---------- */
.vg-footer {
    background: #060708;
    color: var(--text-primary);
    margin-top: 60px;
    width: 100%;
}

/* ---------- Container ---------- */
.vg-footer__container {
    max-width: 1880px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- Top section ---------- */
.vg-footer__top {
    padding: 4rem 0 3rem;
}

.vg-footer__top .vg-footer__container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1880px !important;
    margin: 30px auto !important;
    padding: 0 40px 20px 40px !important;
}

/* ---------- Brand column ---------- */
.vg-footer__logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.vg-footer__logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    display: block;
}

.vg-footer__desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
    max-width: 280px;
}

.vg-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gold);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.03em;
}

.vg-footer__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ---------- Column headings ---------- */
.vg-footer__heading {
    font-size: 0.8rem;
    font-weight: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

/* ---------- Navigation ---------- */
.vg-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.vg-footer__nav a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.vg-footer__nav a:hover {
    color: var(--gold-light);
}

/* ---------- Contacts ---------- */
.vg-footer__contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.vg-footer__contacts li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vg-footer__icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.vg-footer__contacts a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vg-footer__contacts a:hover {
    color: var(--gold-light);
}

/* ---------- Bottom bar ---------- */
.vg-footer__bottom {
    background: #000000;
    border-top: 1px solid rgb(53 53 53 / 30%);
    padding: 1.45rem 0;
}

.vg-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.vg-footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    opacity: 0.7;
}

.vg-footer__legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vg-footer__legal a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    opacity: 0.7;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.vg-footer__legal a:hover {
    color: var(--gold-light);
    opacity: 1;
}

.vg-footer__sep {
    color: var(--border-color);
    font-size: 0.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .vg-footer__top .vg-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .vg-footer__col--brand {
        grid-column: 1 / -1;
    }

    .vg-footer__desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .vg-footer {
        margin-top: 10px;
    }
}

@media (max-width: 560px) {
    .vg-footer__top .vg-footer__container {
        grid-template-columns: 1fr;
        gap: 4.2rem;
        padding: 0 25px 0 25px !important;
    }

    .vg-footer__top {
        padding: 2.5rem 0 2rem;
    }

    .vg-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .vg-footer__container {
        padding: 0 1.25rem;
    }

    .vg-footer__nav a {
        font-size: 15px;
        line-height: 28px;
    }

    .vg-footer__contacts a {
        font-size: 14px;
        line-height: 28px;
    }

    .vg-footer__logo img {
        height: 50px;
        opacity: 0.92;
        margin-bottom: 20px;
    }

}