/* TV haber / yayın estetiği — ilk sürüm */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
    --haber-red: #cc0000;
    --haber-red-dark: #8b0000;
    --haber-black: #0a0a0a;
    --haber-white: #f8f8f8;
    --haber-bar: #111;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.haber-site {
    font-family: 'Source Sans 3', system-ui, sans-serif;
    background: var(--haber-black);
    color: var(--haber-white);
    min-height: 100vh;
    overflow-x: hidden;
}

.haber-site a {
    color: inherit;
    text-decoration: none;
}

/* Üst kırmızı şerit + saat */
.haber-top-bar {
    background: linear-gradient(90deg, var(--haber-red-dark), var(--haber-red));
    padding: 0.45rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.haber-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-live 1.2s ease infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

.haber-clock {
    font-variant-numeric: tabular-nums;
    opacity: 0.95;
}

/* Kayan bant */
.haber-ticker-wrap {
    background: var(--haber-bar);
    border-bottom: 2px solid var(--haber-red);
    overflow: hidden;
    height: 2.25rem;
    display: flex;
    align-items: center;
}

.haber-ticker-label {
    flex-shrink: 0;
    background: var(--haber-red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    z-index: 2;
}

.haber-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.haber-ticker-inner {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 40s linear infinite;
    font-size: 0.95rem;
    line-height: 2.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.haber-ticker-inner:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Nav */
.haber-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #141414;
    border-bottom: 1px solid #2a2a2a;
}

.haber-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    letter-spacing: 0.06em;
    color: #fff;
}

.haber-logo span {
    color: var(--haber-red);
}

.haber-nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.haber-nav-links a:hover {
    color: var(--haber-red);
}

@media (max-width: 640px) {
    .haber-nav-links { display: none; }
}

/* Ana yayın alanı */
.haber-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
}

.haber-broadcast {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: 72vh;
    margin: 0 auto;
    background: #000;
    border: 3px solid #222;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.haber-broadcast-bg {
    position: absolute;
    inset: 0;
    background: center / cover no-repeat url('../../public/images/broadcast-hero.png');
    filter: blur(14px) brightness(0.45);
    transform: scale(1.08);
}

.haber-broadcast-photo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.haber-broadcast-photo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

/* Sol üst isim plakası */
.haber-name-plate {
    position: absolute;
    top: 6%;
    left: 3%;
    background: rgba(0, 0, 0, 0.92);
    color: #fff;
    padding: 0.55rem 1rem 0.65rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    line-height: 1.15;
    border-left: 4px solid var(--haber-red);
    z-index: 5;
    max-width: min(90%, 280px);
}

.haber-name-plate .line1 {
    font-weight: 800;
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    letter-spacing: 0.04em;
}

.haber-name-plate .line2 {
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    opacity: 0.88;
    margin-top: 0.2rem;
    letter-spacing: 0.06em;
}

/* Alt bant: kırmızı eğik + beyaz alan (lower third) */
.haber-lower-third {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: clamp(56px, 14vw, 88px);
    display: flex;
    align-items: stretch;
    z-index: 5;
}

.haber-lt-red {
    width: 18%;
    min-width: 72px;
    background: var(--haber-red);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(0.65rem, 2vw, 0.85rem);
    letter-spacing: 0.1em;
    color: #fff;
    padding-right: 8%;
}

.haber-lt-white {
    flex: 1;
    background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    padding-left: clamp(0.5rem, 2vw, 1.25rem);
    margin-left: -6%;
}

.haber-lt-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 5vw, 2.75rem);
    letter-spacing: 0.02em;
    color: var(--haber-red);
    text-transform: uppercase;
    line-height: 1;
}

/* Metin sütunu */
.haber-article {
    max-width: 720px;
    margin: 2.5rem auto 0;
    padding: 0 0.5rem 2rem;
}

.haber-article h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.haber-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.haber-article p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

/* Alt kartlar */
.haber-side-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding: 0 0.5rem 3rem;
}

.haber-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}

.haber-card:hover {
    border-color: var(--haber-red);
}

.haber-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.haber-card-body {
    padding: 1rem;
}

.haber-card-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.haber-card-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.haber-footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid #222;
}

.haber-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: underline;
}

.haber-footer a:hover {
    color: var(--haber-red);
}
