/* Template override helpers */

footer {
    padding: 40px 0 30px;
}

footer .container > .row {
    justify-content: flex-start;
}

footer .address {
    text-align: left;
    margin-bottom: 10px;
}

footer .address img.footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 12px;
}

footer .address p {
    margin-bottom: 0;
    text-align: left;
}

.tickets-page .event-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tickets-page .event-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.tickets-page .event-item .thumb {
    height: 255px;
    overflow: hidden;
    position: relative;
}

.tickets-page .event-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.tickets-page .event-item .thumb .price {
    border-radius: 12px;
    padding: 18px 22px;
}

.tickets-page .event-item .thumb .price span {
    font-size: 15px;
    letter-spacing: .3px;
}

.tickets-page .event-item .thumb .price span em {
    font-size: 22px;
}

.tickets-page .event-item .down-content ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .tickets-page .event-item .down-content ul li i {
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
        border-radius: 50%;
        background: rgba(239, 90, 40, 0.12);
        color: rgb(0, 45, 114);
    }

.tickets-page .event-item:hover .thumb img {
    transform: scale(1.04);
    transition: transform 0.4s ease;
}

.tickets-page .event-item .thumb img {
    transition: transform 0.4s ease;
}

.tickets-page .event-item .down-content .main-dark-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sub-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.sub-footer .social-links ul {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    padding: 0;
    margin: 12px 0 0;
}

.sub-footer .social-links ul li {
    display: inline-block;
    margin: 0;
}

.sub-footer .social-links ul li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
}


@media (min-width: 768px) {
    .header-area .main-nav.nav-expanded {
        gap: 24px;
    }

    .header-area .main-nav.nav-expanded .nav-right {
        justify-content: flex-end;
        gap: 24px;
    }
}