/* ---------- Карточки мероприятий ---------- */

.event-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(34, 63, 121, 0.04);
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 900px) {
    .event-grid {
        grid-template-columns: 380px 1fr;
    }
}

.event-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    aspect-ratio: 3 / 4;
}

@media (min-width: 900px) {
    .event-image-wrapper {
        height: 100%;
        aspect-ratio: auto;
    }
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.event-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--logo-cyan);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-content h1,
.event-header-center h1 {
    color: var(--logo-navy);
    margin-bottom: 16px;
}

.event-content h2 {
    color: var(--logo-navy);
    font-size: var(--fs-h3);
    margin: 24px 0 12px;
}

.event-content p {
    color: var(--color-text-main);
    margin-bottom: 16px;
}

/* ---------- Мета-информация (дата и место) ---------- */

.event-meta-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--color-bg-light);
    border-left: 4px solid var(--logo-cyan);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
}

.event-meta-box.center-meta {
    border-left: none;
    border-top: 4px solid var(--logo-cyan);
    align-items: center;
    text-align: center;
    margin: 24px auto;
    max-width: 800px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--logo-navy);
    font-size: 0.95rem;
}

.meta-item svg {
    color: var(--logo-cyan);
    flex-shrink: 0;
}

/* ---------- Уведомления ---------- */

.info-notice {
    background: rgba(37, 165, 222, 0.05);
    border: 1px solid rgba(37, 165, 222, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.notice-title {
    font-weight: 700;
    color: var(--logo-navy);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.info-notice p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.mt-4 {
    margin-top: 24px;
}

/* ---------- Секция концертов (Friday Night / Inauguration) ---------- */

.event-header-center {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 30px;
}

.badge-cyan {
    display: inline-block;
    background: var(--logo-cyan);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.subtitle-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .content-columns {
        grid-template-columns: 1fr 1fr;
    }
}

.artists-heading {
    color: var(--logo-navy);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

/* ---------- Siatka artystów ---------- */

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.artist-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.artist-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 20%;
}

.artist-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.artist-info h3 {
    font-size: 1.1rem;
    color: var(--logo-navy);
    margin-bottom: 4px;
}

.artist-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0 0 10px 0;
}

.artist-link {
    color: var(--logo-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 4px;
    display: inline-block;
}

.artist-link:hover {
    text-decoration: underline;
}

/* ---------- Blok "Paco de Lucía" (pamięci) ---------- */

.legacy-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    align-items: center;
}

@media (min-width: 640px) {
    .legacy-card {
        grid-template-columns: 220px 1fr;
    }
}

.legacy-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    aspect-ratio: 3 / 4;
}

@media (min-width: 640px) {
    .legacy-image-wrapper {
        height: 100%;
        aspect-ratio: auto;
    }
}

.legacy-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    filter: grayscale(15%);
}

.legacy-info h3 {
    color: var(--logo-navy);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.legacy-years {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 1rem;
}

.legacy-info p {
    color: var(--color-text-main);
    margin: 0;
}

/* ---------- Blok rezerwacji ---------- */

.reservation-box {
    background: var(--color-bg-light);
    border: 2px dashed var(--color-border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .reservation-box {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.reservation-box h3 {
    color: var(--logo-navy);
    margin-bottom: 6px;
}

.reservation-box p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

