/* ==========================================================================
   STOPKA W RÓŻOWYM STYLU BANERA / NAV z DUŻYM LOGO
   ========================================================================== */

.glass-footer {
    background: linear-gradient(135deg, rgba(255, 235, 240, 0.92) 0%, rgba(255, 220, 230, 0.88) 100%) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    position: relative;
    z-index: 10;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Duże logo wypełniające niemal całą wysokość stopki */
.footer-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
}

/* Tekst obok logo */
.footer-brand-text {
    line-height: 1.5;
    max-width: 240px;
}

/* Linki w stopce */
.footer-link {
    color: #110B55 !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #D81B60 !important;
    transform: translateY(-1px);
}

/* Szybki kontakt */
.footer-contact-item {
    color: #110B55;
    font-weight: 700;
    transition: transform 0.25s ease, color 0.25s ease;
    display: inline-block;
}

.footer-contact-item:hover {
    color: #D81B60;
    transform: translateY(-2px);
}

.text-rose {
    color: #E91E63 !important;
}

.border-pink-subtle {
    border-color: rgba(216, 27, 96, 0.2) !important;
}