.beerloyuz-footer {
    width: 100%;
    padding: 60px 0 0 0;
    /* Changed padding to handle bottom bar separately */
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    left: 0;
    bottom: 0;
}

.beerloyuz-footer * {
    box-sizing: border-box;
}

.beerloyuz-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px 40px 20px;
}

/* Columns */
.beerloyuz-footer-col {
    flex: 1;
    min-width: 200px;
    /* Reduced min-width to fit 4 columns */
}

/* Titles */
.beerloyuz-footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    opacity: 0.8;
}

/* Column 1: Logo */
.beerloyuz-footer-col-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.beerloyuz-footer-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #2b6cb0;

}

.beerloyuz-footer-logo-link:hover {
    color: #2b6cb0;
}

.beerloyuz-footer-logo-link span {
    font-weight: 600;
    letter-spacing: 2px;
}

.beerloyuz-footer-logo-link span:hover {
    color: #2b6cb0;
    text-decoration: none;
}


.beerloyuz-footer-logo-img {
    height: 80px;
    width: auto;
}

.beerloyuz-footer-logo-text {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Menus */
.beerloyuz-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.beerloyuz-footer-menu li a {
    text-decoration: none;
    color: inherit;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.beerloyuz-footer-menu li a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Socials */
.beerloyuz-footer-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.beerloyuz-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.beerloyuz-footer-social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.beerloyuz-footer-social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Bottom Bar / Copyright */
.beerloyuz-footer-bottom {
    width: 100%;
    /* Border removed as we now have specific background color support which might clash visually with a border */
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.beerloyuz-footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .beerloyuz-footer-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .beerloyuz-footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .beerloyuz-footer-col {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .beerloyuz-footer-col-1 {
        align-items: center;
        /* Center logo on mobile */
    }

    .beerloyuz-footer-menu {
        align-items: center;
    }

    .beerloyuz-footer-socials {
        justify-content: center;
    }
}