/* ==========================================================================
   Galerie Mueller - Footer Widget Styles
   ========================================================================== */

/* --- Footer Container --- */
.gm-footer {
    background-color: #1A1A1A;
    padding: 56px 24px;
    box-sizing: border-box;
}

/* --- Footer Inner --- */
.gm-footer-inner {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 1152px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

/* --- Logo --- */
.gm-footer-logo a {
    font-family: 'Playfair Display', ui-serif, Georgia, serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #F5F3F0;
    text-decoration: none;
    transition: color 300ms ease;
}

.gm-footer-logo a:hover {
    color: #8C7A5B;
}

.gm-footer-logo img {
    max-width: 150px;
    height: auto;
}

/* --- Navigation Links --- */
.gm-footer-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gm-footer-nav a {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #6B6B6B;
    text-decoration: none;
    transition: color 150ms ease;
}

.gm-footer-nav a:hover {
    color: #8C7A5B;
}

/* --- Separator --- */
.gm-footer-nav .gm-separator {
    color: rgba(107, 107, 107, 0.4);
    user-select: none;
    font-size: 13px;
    line-height: 1;
}

/* --- Copyright --- */
.gm-footer-copyright {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 300;
    color: rgba(107, 107, 107, 0.6);
    margin: 0;
    padding: 0;
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
    .gm-footer {
        padding: 48px 24px;
    }
}

/* --- Responsive: Mobile --- */
@media (max-width: 767px) {
    .gm-footer {
        padding: 40px 16px;
    }

    .gm-footer-inner {
        gap: 20px;
    }

    .gm-footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .gm-footer-logo a {
        font-size: 13px;
        letter-spacing: 0.2em;
    }
}
