#concert-event {
    padding: 70px 20px;
    background: white;
    border-top: 1px solid var(--lighthumanima-color);
}

.concert-event-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1250px;
    margin: 0 auto;
}

.concert-event-poster {
    flex: 0 1 430px;
}

.concert-event-poster img {
    display: block;
    width: 100%;
    height: auto;
}

.concert-event-info {
    flex: 1;
}

.concert-event-info h1 {
    margin-top: 0;
}

.concert-event-info h2 {
    margin-bottom: 25px;
}

.concert-event-info p {
    line-height: 1.6;
}

.concert-event-programme {
    margin: 25px 0;
}

.concert-event-programme p {
    margin: 8px 0;
}

.concert-event-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.concert-event-contact {
    color: inherit;
    font-weight: bold;
}

.concert-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.concert-popup[hidden] {
    display: none;
}

.concert-popup-background {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.concert-popup-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 15px;
    background: white;
}

.concert-popup-content img {
    display: block;
    width: 100%;
    height: auto;
}

.concert-popup-close {
    position: absolute;
    top: 5px;
    right: 8px;
    z-index: 2;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: white;
    color: #333;
    font-size: 34px;
    line-height: 38px;
    cursor: pointer;
}

.concert-popup-actions {
    padding-top: 15px;
    text-align: center;
}

@media (max-width: 750px) {
    #concert-event {
        padding: 40px 20px;
    }

    .concert-event-container {
        flex-direction: column;
        gap: 30px;
    }

    .concert-event-poster {
        flex: none;
        width: 100%;
        max-width: 450px;
    }

    .concert-event-info {
        width: 100%;
    }

    .concert-event-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .concert-popup {
        padding: 10px;
    }

    .concert-popup-content {
        padding: 10px;
    }
}