/* ============================================================
   NORTH WOLLO RADIO — LIGHT THEME PATCH
   Ethiopian Reporter-inspired editorial newspaper style
   Add this AFTER your main index.css
   ============================================================ */

/* ── Typography import ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Ethiopic:wdth,wght@75,400;75,700;100,400;100,700&family=Playfair+Display:wght@700;900&family=Source+Sans+3:wght@400;600;700&display=swap');

/* ── Root overrides for light theme ── */
body.light-theme {
    --bg-deep:            #f2f2f0;          /* warm newsprint off-white */
    --bg-card:            #ffffff;
    --bg-card-hover:      #fafafa;
    --accent:             #c0392b;          /* reporter-red */
    --accent-hover:       #a93226;
    --accent-light:       rgba(192,57,43,0.10);
    --text-main:          #111111;
    --text-dim:           #555555;
    --glass:              rgba(255,255,255,0.97);
    --border-color:       #d8d8d8;
    --border-color-light: #ebebeb;
    --input-bg:           #ffffff;
    --input-border:       #cccccc;
    --shadow-sm:          0 1px 4px rgba(0,0,0,0.07);
    --shadow-md:          0 3px 12px rgba(0,0,0,0.09);
    --shadow-lg:          0 8px 28px rgba(0,0,0,0.12);
    --card-bg:            #ffffff;
    --modal-bg:           #ffffff;
    --ticker-bg:          linear-gradient(90deg, #c0392b, #e74c3c);
    --section-bg:         #ffffff;
    --icon-bg:            #f5f5f3;
    --icon-color:         #c0392b;
    --gradient-card:      linear-gradient(145deg, #ffffff, #f8f8f6);
}

/* ── Body: clean newsprint background, no weird radial blob ── */
body.light-theme {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    background-color: #e8e8e6;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 28px,
            rgba(0,0,0,0.018) 28px,
            rgba(0,0,0,0.018) 29px
        );
    background-attachment: local;
    color: #111111;
}

/* ── Container: max-width newspaper column feel ── */
body.light-theme .container {
    max-width: 1280px;
    padding: 0 18px 2rem;
    background: transparent;
}

/* ════════════════════════════════
   HEADER  — top-bar newspaper style
   ════════════════════════════════ */
body.light-theme header {
    background: #ffffff;
    border-bottom: none;
    border-top: 4px solid var(--accent);
    box-shadow: none;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.light-theme header::before {
    display: none;
}

body.light-theme .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    letter-spacing: -0.5px;
}

body.light-theme nav ul {
    gap: 0.5rem;
    align-items: center;
}

body.light-theme nav a {
    color: #222222;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

body.light-theme nav a:hover,
body.light-theme nav a.active {
    color: var(--accent);
    border-bottom-color: transparent;
    transform: none;
}

/* ════════════════════════════════
   HERO — keep the background photo, darken overlay less
   ════════════════════════════════ */
body.light-theme .hero {
    background:
        linear-gradient(
            to right,
            rgba(10, 10, 10, 0.72) 0%,
            rgba(10, 10, 10, 0.35) 60%,
            rgba(10, 10, 10, 0.12) 100%
        ),
        url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 0 0;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    padding: 4rem 5% 3.5rem;
}

body.light-theme .hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    font-family: 'Playfair Display', serif;
}

body.light-theme .hero p {
    color: rgba(255,255,255,0.88) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

body.light-theme .live-indicator {
    background: rgba(192,57,43,0.85);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

body.light-theme .play-btn-hero {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(192,57,43,0.4);
}

body.light-theme .play-btn-hero:hover {
    background: var(--accent-hover);
    color: #ffffff;
}

/* ════════════════════════════════
   NEWS TICKER STRIP  (below hero)
   ════════════════════════════════ */
body.light-theme .news-ticker {
    background: var(--accent);
    color: #ffffff;
    border-radius: 0;
    font-size: 0.9rem;
    margin: 0 -18px 0;           /* full-bleed inside container */
    padding: 0.55rem 18px;
    box-shadow: none;
    border-bottom: 3px solid #8e1c12;
    letter-spacing: 0.3px;
}

/* ════════════════════════════════
   GENRE / CATEGORY ROW
   ════════════════════════════════ */
body.light-theme .genre-row {
    background: #ffffff;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    padding: 0.6rem 0;
    margin: 0 -18px 1.5rem;
    padding-left: 18px;
    padding-right: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

body.light-theme .genre-item {
    background: transparent;
    border: none;
    border-radius: 0;
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.4rem 0.9rem;
    border-right: 1px solid #e0e0e0;
    transition: color 0.2s;
    box-shadow: none;
}

body.light-theme .genre-item:hover {
    color: var(--accent);
    background: transparent;
    border-right-color: #e0e0e0;
    transform: none;
    box-shadow: none;
}

body.light-theme .genre-item.active {
    background: var(--accent);
    color: #ffffff;
    border-radius: 4px;
    box-shadow: none;
    border-right: none;
}

/* ════════════════════════════════
   CARDS — clean editorial white
   ════════════════════════════════ */
body.light-theme .main-feature-card,
body.light-theme .sidebar-card,
body.light-theme .program-card,
body.light-theme .bento-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

body.light-theme .main-feature-card:hover,
body.light-theme .sidebar-card:hover,
body.light-theme .program-card:hover,
body.light-theme .bento-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(192,57,43,0.12);
    transform: translateY(-2px);
}

/* Sidebar card headings — Reporter-style section labels */
body.light-theme .sidebar-card h3 {
    color: #111111;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ════════════════════════════════
   VIDEO / FEATURE AREA
   ════════════════════════════════ */
body.light-theme .video-embed-container {
    background: #111;
    border-radius: 4px 4px 0 0;
}

body.light-theme .feature-content {
    background: #ffffff;
    border-top: 3px solid var(--accent);
    padding: 1.2rem 1.4rem !important;
}

body.light-theme .feature-content h2 {
    color: #111111 !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem !important;
    line-height: 1.3;
}

body.light-theme .feature-category {
    background: var(--accent);
    color: #ffffff;
    font-size: 0.75rem;
    border-radius: 2px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

body.light-theme .feature-excerpt {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

body.light-theme .feature-meta {
    color: #777;
    font-size: 0.85rem;
}

body.light-theme .audio-badge {
    background: #f5f5f3;
    color: #444;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

/* ════════════════════════════════
   PROGRAM GRID (recent/historical)
   ════════════════════════════════ */
body.light-theme .program-grid {
    gap: 1.5rem 1.2rem;
}

body.light-theme .program-thumb {
    background: #f5f5f3;
    border-radius: 3px;
}

body.light-theme .program-title {
    color: #111111;
    font-family: 'Playfair Display', serif;
    font-size: 1rem !important;
    font-weight: 700;
    line-height: 1.35;
}

body.light-theme .program-meta {
    color: #777;
    font-size: 0.82rem;
    border-top: 1px solid #ebebeb;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    justify-content: flex-start;
    gap: 1rem;
}

body.light-theme .program-info {
    padding: 0.8rem 0.6rem 0.4rem;
}

/* ════════════════════════════════
   TEXT NEWS ITEMS
   ════════════════════════════════ */
body.light-theme .text-news-item {
    border-bottom: 1px solid #f0f0ee;
    margin: 0;
    padding: 0.75rem 0.5rem;
    border-radius: 0;
}

body.light-theme .text-news-item:hover {
    background: #fafaf8;
}

body.light-theme .text-news-item p {
    color: #111111;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.4;
}

body.light-theme .text-news-item small {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
}

body.light-theme .news-icon {
    background: #f5f5f3;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    color: var(--accent);
}

body.light-theme .text-news-item:hover .news-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ════════════════════════════════
   MARKET WIDGET
   ════════════════════════════════ */
body.light-theme .market-widget {
    padding: 0;
}

body.light-theme .market-widget li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f0f0ee;
    color: #333;
    font-size: 0.88rem;
}

body.light-theme .market-widget li span:last-child {
    font-weight: 700;
    color: #155724;
    background: #d4edda;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.82rem;
}

/* ════════════════════════════════
   POLL CARD
   ════════════════════════════════ */
body.light-theme .poll-card {
    background: #ffffff;
    border: 1px solid #e0e0e0 !important;
    border-top: 3px solid var(--accent) !important;
    border-radius: 4px;
}

body.light-theme .poll-option {
    background: #f5f5f3;
    border-radius: 3px;
}

body.light-theme .poll-option:hover {
    background: rgba(192,57,43,0.08);
}

body.light-theme .poll-fill {
    background: rgba(192,57,43,0.15);
}

body.light-theme .poll-text {
    color: #222;
}

/* ════════════════════════════════
   SHOUTOUTS / COMMENTS
   ════════════════════════════════ */
body.light-theme .shoutout-msg {
    background: #f8f8f6;
    color: #444;
    border-left: 3px solid var(--accent);
    border-radius: 3px;
}

body.light-theme .comment-section {
    background: #fafaf8;
    border: 1px solid #e8e8e6;
    border-left: 3px solid var(--accent);
    border-radius: 3px;
}

body.light-theme .comment-section p {
    color: #444;
}

/* ════════════════════════════════
   PODCAST / FAVORITES CARD
   ════════════════════════════════ */
body.light-theme .podcast-highlights-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-top: 3px solid var(--accent) !important;
    border-radius: 4px;
}

body.light-theme .podcast-highlights-card h3 {
    color: #111111 !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

body.light-theme .podcast-desc {
    color: #333;
}

body.light-theme .podcast-subtitle {
    color: #888;
}

body.light-theme .podcast-chips span {
    background: #f5f5f3;
    border-color: #e0e0e0;
    color: #555;
}

body.light-theme .podcast-play-btn {
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    border-radius: 3px;
    box-shadow: none;
}

body.light-theme .podcast-play-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 3px 10px rgba(192,57,43,0.3);
}

/* ════════════════════════════════
   TABS
   ════════════════════════════════ */
body.light-theme .program-tabs {
    border-bottom: 2px solid #e0e0e0;
}

body.light-theme .tab-btn {
    color: #555;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
}

body.light-theme .tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

body.light-theme .tab-btn:hover {
    color: var(--accent);
}

/* ════════════════════════════════
   SECTION TITLE
   ════════════════════════════════ */
body.light-theme .section-title {
    background: none;
    border-left: 5px solid var(--accent);
    border-radius: 0;
    padding: 0 0 0 1rem;
    box-shadow: none;
    color: #111111;
    font-family: 'Playfair Display', serif;
    margin: 2rem 0 1.2rem;
}

/* ════════════════════════════════
   LOCAL STATIONS STRIP
   ════════════════════════════════ */
body.light-theme .local-stations {
    background: #f5f5f3;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: none;
}

body.light-theme .station-list {
    color: #555;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
body.light-theme .footer {
    border-top: 2px solid #222222;
    background: #222222;
    color: #aaaaaa;
    padding: 1.5rem 18px;
    margin: 3rem -18px 0;
}

body.light-theme .footer-links a,
body.light-theme .footer-links span {
    color: #aaaaaa;
}

body.light-theme .footer-links a:hover {
    color: #ffffff;
}

/* ════════════════════════════════
   STICKY PLAYER BAR
   ════════════════════════════════ */
body.light-theme .player-bar {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 3px solid var(--accent);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
    border-radius: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

body.light-theme .track-meta b  { color: #111111; }
body.light-theme .track-meta span { color: #777; }

body.light-theme .play-btn {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(192,57,43,0.35);
}

body.light-theme .play-btn:hover {
    background: var(--accent-hover);
    color: #ffffff;
}

/* ════════════════════════════════
   DROPDOWN
   ════════════════════════════════ */
body.light-theme .dropdown-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    border-radius: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

body.light-theme .dropdown-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

body.light-theme .dropdown-content {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

body.light-theme .dropdown-content span {
    color: #333;
    border-bottom-color: #f5f5f3;
    font-size: 0.88rem;
}

body.light-theme .dropdown-content span:hover {
    background: #fafaf8;
    color: var(--accent);
    padding-left: 20px;
}

body.light-theme .dropdown-content span.active {
    background: var(--accent);
    color: #ffffff;
}

/* ════════════════════════════════
   SCHEDULE SECTION
   ════════════════════════════════ */
body.light-theme .schedule-scroll-container {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

body.light-theme .schedule-table th {
    background: #f5f5f3;
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.light-theme .schedule-table td {
    color: #333;
    border-bottom-color: #f0f0ee;
    font-size: 0.88rem;
}

body.light-theme .schedule-table tr:hover {
    background: #fafaf8;
}

body.light-theme .schedule-table td:nth-child(2) { color: #777; }
body.light-theme .schedule-table td:nth-child(3) { color: var(--accent); }
body.light-theme .schedule-table td:nth-child(4) { color: #111; }

body.light-theme .day-header {
    background: var(--accent);
    color: #ffffff;
}

body.light-theme .schedule-item {
    background: #fafaf8;
}

body.light-theme .schedule-item:hover {
    background: rgba(192,57,43,0.06);
}

body.light-theme .schedule-program { color: #222; }
body.light-theme .schedule-host    { color: #777; }

body.light-theme .today-schedule {
    background: linear-gradient(135deg, rgba(192,57,43,0.08), rgba(255,255,255,0.98));
    border: 1px solid rgba(192,57,43,0.25);
    border-radius: 4px;
}

body.light-theme .today-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-radius: 4px;
}

body.light-theme .today-time    { color: var(--accent); }
body.light-theme .today-program { color: #111111; }
body.light-theme .today-host    { color: #777; }

body.light-theme .day-column {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

body.light-theme .daily-schedule {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

body.light-theme .daily-item {
    background: #fafaf8;
    border-radius: 3px;
}

body.light-theme .daily-item:hover {
    background: rgba(192,57,43,0.06);
}

body.light-theme .daily-program    { color: #111111; }
body.light-theme .daily-program-en { color: #777; }
body.light-theme .daily-host       { color: #777; }

body.light-theme .view-btn {
    background: #fff;
    color: #555;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

body.light-theme .view-btn.active {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

body.light-theme .view-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: none;
}

body.light-theme .day-btn {
    background: #fff;
    color: #555;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

body.light-theme .day-btn.active {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

body.light-theme .day-btn:hover {
    border-color: var(--accent);
}

body.light-theme .schedule-tab-bar {
    background: #f5f5f3;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--accent);
    border-radius: 4px;
}

body.light-theme .schedule-tab-bar h2 {
    color: #111111;
    font-family: 'Playfair Display', serif;
}

body.light-theme .schedule-tab-bar i {
    color: var(--accent);
}

body.light-theme .schedule-badge {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #555;
}

/* ════════════════════════════════
   MODALS
   ════════════════════════════════ */
body.light-theme .news-modal-content {
    background: #ffffff;
    color: #111111;
    border: 1px solid #e0e0e0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    border-radius: 6px;
}

body.light-theme #modalNewsTitle  { color: #111111; font-family: 'Playfair Display', serif; }
body.light-theme #modalNewsTime   { color: #777; }
body.light-theme #modalNewsContent { color: #444; line-height: 1.7; }

/* ════════════════════════════════
   REACTION / FEATURE EXTRAS
   ════════════════════════════════ */
body.light-theme .reaction-btn {
    background: #f5f5f3;
    border: 1px solid #e0e0e0;
    color: #333;
    border-radius: 3px;
}

body.light-theme .reaction-btn:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

body.light-theme .feature-tag {
    background: #f5f5f3;
    border: 1px solid #e0e0e0;
    color: #555;
    border-radius: 2px;
}

/* ════════════════════════════════
   PROGRAM CREATIVE CHIPS
   ════════════════════════════════ */
body.light-theme .program-creative-fill span {
    background: #f5f5f3;
    border-color: #e0e0e0;
    color: #555;
}

/* ════════════════════════════════
   HIGHLIGHT / THEME HELPER CLASSES
   ════════════════════════════════ */
body.light-theme .highlight-item {
    background: #f8f8f6 !important;
    border: 1px solid #e0e0e0 !important;
}

body.light-theme .theme-card  { background: #fafaf8; border-color: #e0e0e0; }
body.light-theme .theme-text  { color: #111111; }
body.light-theme .theme-text-dim { color: #777; }

body.light-theme .theme-input {
    background: #ffffff;
    border: 1px solid #cccccc;
    color: #111111;
}

/* ════════════════════════════════
   COMMENT INPUT
   ════════════════════════════════ */
body.light-theme .comment-input-row input {
    background: #ffffff;
    border-color: #e0e0e0;
    color: #111111;
    border-radius: 3px;
}

body.light-theme .comment-input-row input::placeholder { color: #aaa; }

body.light-theme .comment-input-row button {
    background: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: none;
}

body.light-theme .comment-input-row button:hover {
    background: var(--accent-hover);
    box-shadow: 0 3px 10px rgba(192,57,43,0.3);
    transform: translateY(-1px);
}

/* ════════════════════════════════
   SAFEGUARDING BUTTON
   ════════════════════════════════ */
body.light-theme .safeguarding-btn {
    background: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

/* ════════════════════════════════
   SCROLLBAR  (webkit)
   ════════════════════════════════ */
body.light-theme ::-webkit-scrollbar { width: 6px; height: 6px; }
body.light-theme ::-webkit-scrollbar-track { background: #f0f0ee; }
body.light-theme ::-webkit-scrollbar-thumb { background: #c8c8c6; border-radius: 3px; }
body.light-theme ::-webkit-scrollbar-thumb:hover { background: var(--accent); }
