/* ==========================================================================
    Страница Программы
   ========================================================================== */

.program-hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    padding: 100px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(17, 17, 16, 0.8) 0%, rgba(41, 40, 41, 0.2) 100%);
}

.program-hero__title {
    color: #E4AD2B;
    font-size: 150px;
    font-family: "A La Russ", sans-serif;
    font-weight: 500;
    line-height: 142.50px;
    text-shadow: 0px 5px 4px rgba(0, 0, 0, 0.81);
    margin: 0;
}

.program-hero__subtitle {
    color: white;
    font-size: 36px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 400;
    line-height: 50px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.81);
    margin: 20px 0 15px;
}

.program-hero__dates {
    color: #E4AD2B;
    font-size: 24px;
    font-family: "UNCAGE", sans-serif;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 2px;
}

/* ==========================================================================
    Дни программы
   ========================================================================== */

.festival-day {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.festival-day__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(228, 173, 43, 0.2) 0%, rgba(228, 173, 43, 0.05) 100%);
    border: 2px solid rgba(228, 173, 43, 0.4);
    border-radius: 15px;
    margin-bottom: 40px;
}

.festival-day__number {
    color: #E4AD2B;
    font-size: 42px;
    font-family: "UNCAGE", sans-serif;
    font-weight: 700;
    line-height: 45px;
}

.festival-day__date {
    color: white;
    font-size: 32px;
    font-family: "UNCAGE", sans-serif;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 3px;
}

/* ==========================================================================
    Таймлайн
   ========================================================================== */

.timeline {
    position: relative;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 43px;
    width: 4px;
    bottom: var(--timeline-bottom, 43px);
    background: linear-gradient(180deg, #E4AD2B 0%, rgba(228, 173, 43, 0.3) 100%);
    border-radius: 2px;
    z-index: 0;
}

.timeline__item {
    position: relative;
    padding: 25px 30px;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 2px solid rgba(228, 173, 43, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.timeline__item::before {
    content: "";
    position: absolute;
    left: -45px;
    top: 35px;
    width: 16px;
    height: 16px;
    background: #E4AD2B;
    border: 3px solid rgba(30, 30, 30, 1);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(228, 173, 43, 0.5);
    z-index: 1;
}

.timeline__item::after {
    display: none;
}

.timeline__item:hover {
    border-color: rgba(228, 173, 43, 0.7);
    box-shadow: 0 10px 30px rgba(228, 173, 43, 0.2);
}

.timeline__time {
    color: #E4AD2B;
    font-size: 20px;
    font-family: "UNCAGE", sans-serif;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(228, 173, 43, 0.1);
    border-radius: 8px;
}

.timeline__event-title {
    color: white;
    font-size: 28px;
    font-family: "UNCAGE", sans-serif;
    font-weight: 700;
    line-height: 32px;
    margin: 5px 0 10px 0;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline__event-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #E4AD2B;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.5));
}

.timeline__event-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 500;
    line-height: 22px;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline__event-location::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.timeline__event-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

/* ==========================================================================
    Примечание
   ========================================================================== */

.program-note {
    max-width: 700px;
    margin: 40px auto 60px;
    padding: 16px 24px;
    background: rgba(228, 173, 43, 0.07);
    border: 1px solid rgba(228, 173, 43, 0.2);
    border-radius: 10px;
    text-align: center;
}

.program-note p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: "Lucida Sans Unicode", sans-serif;
    line-height: 22px;
    margin: 6px 0;
}

.program-note__warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(228, 173, 43, 0.8) !important;
    font-weight: 600;
    font-size: 14px !important;
}

.program-note__warning svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: rgba(228, 173, 43, 0.8);
}

.program-note p:first-child {
    color: rgba(228, 173, 43, 0.8);
    font-weight: 600;
}

