/* ==========================================
   FESTIVAL ABOUT SECTION STYLES (FULL WIDTH)
   ========================================== */

.festival-about-section {
    padding: 10px 0 20px; /* Было 60px 0 20px */
}

/* Заголовок выравнен по левому краю */
.festival-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text-main, #111111);
    text-align: left;
    margin-bottom: 2rem;
    width: 100%;
}

/* Текст на всю ширину родительского контейнера */
.about-content-card {
    width: 100%;
    max-width: 100%; /* Убрали ограничение 820px */
    margin: 0 0 3rem 0;
    padding: 0; /* Убрали боковые паддинги, чтобы встать ровно по сетке */
    text-align: left;
}

.about-content-card .lead-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--color-text-main, #111111);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.about-content-card .secondary-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted, #555555);
    margin: 0;
}

/* ==========================================
   FESTIVAL 2026 SCHEDULE STYLES
   ========================================== */

.schedule-section {
    padding: 20px 0 80px;
    background-color: var(--color-bg-light, #ffffff);
}

.schedule-section .page-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-text-main, #111111);
    margin-top: 0;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

/* ==========================================
   FESTIVAL 2026 SCHEDULE STYLES (FIXED PADDING)
   ========================================== */

.schedule-section {
    padding: 50px 0 80px;
    background-color: var(--color-bg-light, #ffffff);
}

.schedule-section .page-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-text-main, #111111);
    margin-top: 0;
    margin-bottom: 2.5rem; /* Отступ от заголовка до таблицы */
    text-align: center;
    letter-spacing: -0.02em;
}

.schedule-intro {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-muted, #666666);
}

/* Обертка для таблицы с горизонтальным скроллом на мобилках */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

/* Таблица */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
    min-width: 650px; /* Предотвращает сплющивание на маленьких экранах */
}

.schedule-table th {
    background-color: #f8f9fa;
    color: var(--color-text-main, #111111);
    font-weight: 700;
    padding: 1.2rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.schedule-table td {
    padding: 1.2rem 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #333333;
}

/* Ячейка дня недели */
.day-cell {
    background-color: #fbfbfb;
    border-right: 2px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.4;
    white-space: nowrap;
}

.day-cell strong {
    font-size: 1.1rem;
    color: var(--color-accent, #000000);
}

/* Перерывы */
.break-row td {
    background-color: #fcfcfc;
    color: #888888;
    font-style: italic;
    padding: 0.8rem 1.5rem;
}

/* Концерты и вечерние события */
.event-row {
    background-color: rgba(240, 244, 248, 0.5);
}

.event-row td {
    font-size: 1rem;
}

.event-row strong {
    color: var(--color-text-main, #000000);
}

/* Выделение финала (Суббота) */
.highlight-row {
    background-color: rgba(255, 248, 230, 0.7);
}

/* Разделитель между днями */
.day-divider {
    border-top: 3px solid rgba(0, 0, 0, 0.08);
}

/* Дисклеймер внизу таблицы */
.schedule-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #777777;
    font-style: italic;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0 0 0; /* Привязали к левому краю */
    text-align: left;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .schedule-section {
        padding: 90px 0 50px;
    }

    .schedule-table th, 
    .schedule-table td {
        padding: 1rem;
    }
}


/* ==========================================================================
   SEKCJA ARTYŚCI (FESTIVAL 2026)
   ========================================================================== */

.artists-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
}

/* Использование Grid с выравниванием по центру контейнера */
.artist-row-card {
    display: grid;
    /* Левая колонка строго под аватар, правая занимает всё свободное место */
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    /* Увеличиваем ширину блока, чтобы текст вытянулся в ширину */
    max-width: 1000px;
}

.artist-row-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Возвращаем полноценный аватар */
.artist-avatar-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.artist-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Для дуэта */
.artist-avatar-wrap--duo {
    display: flex;
    gap: 10px;
    width: auto;
    border: none;
    border-radius: 0;
}

.artist-avatar-wrap--duo img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    object-fit: cover;
}

/* Текстовый блок разворачивается во всю доступную ширину */
.artist-info {
    text-align: left;
    width: 100%;
}

.artist-info .artist-name {
    font-size: var(--fs-h3);
    color: var(--color-text-main);
    margin-bottom: 0.4rem;
}

.artist-info .artist-desc {
    font-size: var(--fs-body);
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
    /* Запрещает некрасивые переносы и держит текст широким */
    max-width: 100%;
}

/* Оранжевые бэджи ролей */
.artist-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ff6b00; /* Оранжевый акцент */
    background: rgba(255, 107, 0, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
    .artist-row-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .artist-info {
        text-align: center;
    }

    .artist-avatar-wrap {
        width: 140px;
        height: 140px;
    }

    .artist-avatar-wrap--duo img {
        width: 100px;
        height: 100px;
    }
}

/* ==========================================================================
   Informacje Praktyczne
   ========================================================================== */

.practical-info-section {
    padding-top: 5rem 0;
    background-color: #f8fafc;
}

.practical-info-section .section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3.5rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Подсекции (Bilety, Noclegi, Gastronomia) --- */
.practical-subsection {
    background: transparent;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: #ff6b00;
    border-radius: 2px;
}

.section-intro-text {
    color: #64748b;
    font-size: 0.975rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* --- Bilety i Wstęp --- */
.tickets-notice-box {
    background: #ffffff;
    border-left: 4px solid #ff6b00;
    padding: 1.25rem 1.5rem;
    border-radius: 0 10px 10px 0;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.tickets-notice-box p {
    margin: 0;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}

.notice-badge {
    display: inline-block;
    background: #ff6b00;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.info-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.5;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list li::before {
    content: "•";
    color: #ff6b00;
    font-size: 1.4rem;
    position: absolute;
    left: 0.25rem;
    top: -0.2rem;
}

/* --- Noclegi i Zakwaterowanie --- */
.lodging-featured-card {
    background: #ffffff;
    border: 2px solid #ff6b00;
    border-radius: 12px;
    padding: 2rem 1.75rem 1.75rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.06);
}

.lodging-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ff6b00;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.lodging-info h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.lodging-address {
    color: #ff6b00;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.lodging-desc {
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.lodging-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.lodging-features li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #334155;
}

.lodging-features li::before {
    content: "✓";
    color: #ff6b00;
    font-weight: 800;
    position: absolute;
    left: 0;
}

.lodging-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #334155;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    background: #ffffff;
    transition: all 0.2s ease;
}

.btn-outline-sm:hover {
    border-color: #ff6b00;
    color: #ff6b00;
    background: rgba(255, 107, 0, 0.04);
}

/* --- Gastronomia --- */
.gastro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gastro-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.gastro-card:hover {
    transform: translateY(-2px);
    border-color: #ff6b00;
}

.gastro-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.gastro-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.gastro-address {
    color: #ff6b00;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.gastro-desc {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* Аккуратная синяя полоса-хедер */
.site-header-stripe,
header {
    background-color: var(--logo-navy);
    height: 40px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
}

.breadcrumbs {
    margin-top: 40px; /* Отступ от синего хедера */
    margin-bottom: 0px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--logo-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .practical-info-section {
        padding: 3.5rem 0;
    }

    .practical-info-section .section-title {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
    }

    .info-grid {
        gap: 2.5rem;
    }

    .lodging-featured-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .lodging-actions {
        flex-direction: column;
    }

    .btn-outline-sm {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================
   PRZYCISK
   ========================================== */



/* ==========================================
   SEKCJA CTA: KONCERTY I BILETY
   ========================================== */

.tickets-cta-section {
    padding: 30px 0 60px 0;
}

.tickets-cta-card {
    background: linear-gradient(135deg, var(--logo-navy) 0%, var(--color-primary-dark) 100%);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 12px 30px rgba(34, 63, 121, 0.15);
    position: relative;
    overflow: hidden;
}

/* Декоративный голубой акцент на фоне */
.tickets-cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, color-mix(in srgb, var(--logo-cyan) 25%, transparent) 0%, transparent 70%);
    pointer-events: none;
}

.tickets-cta-content {
    max-width: 620px;
    z-index: 1;
}

.tickets-cta-content h2 {
    color: #ffffff;
    font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem);
    margin-bottom: 10px;
}

.tickets-cta-content p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.tickets-cta-action {
    z-index: 1;
    flex-shrink: 0;
}

/* Адаптив для планшетов и телефонов */
@media (max-width: 992px) {
    .tickets-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        gap: 24px;
    }

    .tickets-cta-action {
        width: 100%;
    }

    .tickets-cta-action .orange-rectangle-btn {
        width: 100%;
    }
}