/* ============================================
   ARTKOLKHI — პროგრამის გვერდი
   ლაივი ზემოთ დიდი, პროგრამა ქვემოთ ქარდებით
   ============================================ */

/* ============================================
   LIVE HERO — მუქი ფონი, ლაივი მთავარი
   ============================================ */
.live-hero {
    margin-top: var(--header-height);
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #3D1A10 50%, #4A1A1A 100%);
    padding: 50px 0 60px;
}

.live-hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.live-hero-badge {
    display: inline-block;
    background: #E53E3E;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 5px 20px;
    border-radius: 4px;
    margin-bottom: 16px;
    animation: livePulse 2s infinite;
}

.live-hero-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-bg);
    margin-bottom: 8px;
}

.live-hero-subtitle {
    font-size: 16px;
    color: var(--color-gold-light);
    letter-spacing: 1px;
}

/* Grid: ვიდეო + sidebar */
.live-hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

/* ვიდეო პლეიერი */
.live-player-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
}

.live-active-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #E53E3E;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.live-active-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-white);
    animation: liveDot 1.5s infinite;
}

.live-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.live-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Placeholder — ლაივის მოლოდინი */
.live-waiting {
    padding: 80px 40px;
    text-align: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.live-waiting-icon {
    color: var(--color-gold-light);
    margin-bottom: 24px;
    opacity: 0.5;
}

.live-waiting-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-bg);
    margin-bottom: 12px;
}

.live-waiting-text {
    font-size: 16px;
    color: rgba(250, 247, 241, 0.5);
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}

/* Sidebar ინფო */
.live-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
}

.info-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-bg);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-card-desc {
    font-size: 13px;
    color: rgba(250,247,241,0.5);
    line-height: 1.7;
    margin: 0;
}

.info-card-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(250,247,241,0.7);
}

.info-card-row svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.info-card-row a {
    color: rgba(250,247,241,0.7);
    transition: color 0.3s;
}

.info-card-row a:hover {
    color: var(--color-gold-light);
}

/* პროგრამის მინი ჩამონათვალი */
.pm-list {
    display: flex;
    flex-direction: column;
}

.pm-day {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pm-day:last-child {
    border-bottom: none;
}

.pm-date {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold-light);
    font-style: italic;
    margin-bottom: 4px;
}

.pm-ev {
    font-size: 13px;
    color: rgba(250,247,241,0.5);
    padding-left: 12px;
    line-height: 1.6;
}

.pm-ev.hl {
    color: var(--color-bg);
    font-weight: 500;
}

/* ============================================
   PROGRAM SECTION — ქარდების grid
   ============================================ */
.program-section {
    padding: 70px 0 80px;
    background-color: var(--color-bg);
}

.program-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.program-section-header .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* 3x2 grid */
.program-days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ერთი დღის ქარდი */
.day-card {
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.day-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.08);
}

.day-card.featured {
    border-color: var(--color-gold-light);
}

.day-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.day-card.featured .day-card-header {
    background: linear-gradient(135deg, #FFF9F0, #FFF5E6);
}

.day-card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}

.day-card-badge.featured {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: var(--color-white);
}

.day-card-date {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0;
    font-style: italic;
}

.day-card-weekday {
    font-size: 12px;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ღონისძიებები */
.day-card-events {
    padding: 16px 24px 20px;
}

.ev-row {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    align-items: baseline;
}

.ev-row:last-child {
    border-bottom: none;
}

.ev-row.highlight {
    background: linear-gradient(90deg, #FFF9F0, transparent);
    margin: 0 -24px;
    padding: 12px 24px;
    border-left: 3px solid var(--color-gold);
}

.ev-time {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-burgundy);
    min-width: 50px;
}

.ev-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 2px;
}

.ev-loc {
    font-size: 12px;
    color: var(--color-text-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes liveDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .live-hero-grid {
        grid-template-columns: 1fr 300px;
    }

    .program-days-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .live-hero {
        padding: 30px 0 40px;
    }

    .live-hero-title {
        font-size: 28px;
    }

    .live-hero-grid {
        grid-template-columns: 1fr;
    }

    .live-waiting {
        padding: 50px 24px;
        min-height: 300px;
    }

    .live-waiting-title {
        font-size: 24px;
    }

    .program-section {
        padding: 40px 0 50px;
    }

    .program-days-grid {
        grid-template-columns: 1fr;
    }

    .day-card-header {
        padding: 16px 20px;
    }

    .day-card-events {
        padding: 12px 20px 16px;
    }

    .ev-row.highlight {
        margin: 0 -20px;
        padding: 12px 20px;
    }
}