.theatre_footer {
    background: rgb(18,12,24);
    background: linear-gradient(90deg, rgba(18,12,24,1) 0%, rgba(51,38,68,1) 15%, rgba(16,9,25,1) 68%, rgba(32,24,42,1) 100%);
    padding: 30px 0 50px;
    width: 100%;
    box-shadow: 0 -1px 4px #aaa;
    color: #fff;
}

.theatre_footer__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.theatre_footer__column {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.theatre_footer__column--first address {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.theatre_footer__column--second,
.theatre_footer__column--fourth {
    align-items: center;
    text-align: center;
}

.theatre_footer__column--third {
    align-items: flex-start;
}

.theatre_footer__column_header {
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto 10px;
    max-width: 100%;
    text-align: center;
}

.theatre_footer__column--first .theatre_footer__column_header {
    text-align: left;
    margin: 0 0 10px;
}

.theatre_footer__address {
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.theatre_footer__address i {
    font-size: 15px;
}

/* === LOGOS === */
.theatre_footer__column--second__logos {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* === SOCIAL ICONS === */
.theatre_footer__column--fourth__icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

a.theatre-contact-icon {
    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #555;
    position: relative;
    text-align: center;
}

a.theatre-contact-icon i {
    font-size: 22px;
    line-height: 40px;
    color: #a0a0a0;
}

/* TOOLTIP EFFECT */
a.theatre-contact-icon::after {
    content: attr(aria-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;

    display: none;
    white-space: nowrap;
}

a.theatre-contact-icon:hover::after,
a.theatre-contact-icon:focus-visible::after {
    display: block;
}

.theatre-btn-map {
    display: inline-block;
    background-color: #7e0926;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    text-align: center;
    padding: 6px 12px;
    margin-bottom: 10px;
    text-decoration: none;
    border: none;
}

.theatre-btn-map:hover,
.theatre-btn-map:focus-visible {
    background-color: #960c32;
    outline: 2px solid #fff;
}

.theatre_footer__link {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    text-decoration: none;
}

.theatre_footer__link:hover,
.theatre_footer__link:focus-visible {
    text-decoration: underline;
}

.theatre_language_switcher {
    text-align: center;
    margin-bottom: 20px;
}

.theatre_language_switcher a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.theatre_language_switcher a:hover .theatre_language_switcher__text,
.theatre_language_switcher a:focus-visible .theatre_language_switcher__text {
    text-decoration: underline;
}

.theatre_language_switcher__flag {
    width: 30px;
    height: auto;
}

@media (max-width: 767px) {
    .theatre_footer__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .theatre_footer__column {
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    a.theatre-contact-icon {
        width: 35px;
        height: 35px;
    }

    a.theatre-contact-icon i {
        font-size: 18px;
        line-height: 35px;
    }
}

@media (min-width: 992px) {
    .theatre_footer {
        padding: 40px 0 80px;
    }

    .theatre_footer__wrapper {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
    }

    .theatre_footer__column {
        max-width: 26%;
    }

    .theatre_footer__column--third {
        width: 23%;
    }
}
