/* =============================================
   SeStie.ro — CSS Suplimentar
   (se incarca dupa main.css)
   ============================================= */

/* --- LOGO SeStie.ro --- */
.logo-sestie {
    display: flex;
    align-items: baseline;
    gap: 0;
    line-height: 1;
}
.logo-se {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 22px;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.logo-stie {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 22px;
    background: var(--accent);
    color: #fff;
    padding: 2px 7px 3px;
    border-radius: 3px;
    letter-spacing: -0.5px;
    margin-left: 1px;
}
.logo-dot-ro {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    letter-spacing: 0.5px;
    margin-left: 2px;
    align-self: flex-end;
    padding-bottom: 2px;
}

/* --- SECTION HEADER (titlu sectiune cu linie) --- */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.section-label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-700);
    flex-shrink: 0;
}
.section-line {
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}
.section-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    transition: opacity .15s;
}
.section-more:hover { opacity: .75; }

/* --- HERO badge variants --- */
.hero-thumb-wrap {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #111;
}
.hero-thumb-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.hero-thumb-wrap:hover img { transform: scale(1.02); }

.badge-exclusiv { background: var(--accent) !important; }
.badge-breaking  { background: var(--red-badge) !important; }
.badge-video     { background: var(--red) !important; }
.badge-live      { background: var(--red-badge) !important; }

/* --- SHOW SECTION fix --- */
#show-section {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    padding: 32px 0;
}
.show-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #0d0d0d;
    aspect-ratio: 16/9;
}
.show-main > a img { width:100%; height:100%; object-fit:cover; display:block; }
.show-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 40%, transparent 68%);
    pointer-events: none;
    z-index: 2;
}
.show-logo-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 11px;
    border-radius: var(--radius-sm);
    z-index: 3;
    letter-spacing: .3px;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform .2s, background .15s;
}
.play-btn:hover { background: #fff; transform: translate(-50%,-50%) scale(1.08); }
.play-btn svg { width: 20px; height: 20px; margin-left: 3px; }
.show-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    z-index: 3;
}
.show-cat-label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    display: block;
    margin-bottom: 5px;
}
.show-title {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}
.show-title a { color: #fff; }
.show-title a:hover { opacity: .85; }

.show-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 18px;
    margin-bottom: 20px;
}
.show-sidebar { display: flex; flex-direction: column; gap: 10px; }
.show-side-item {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .15s;
    text-decoration: none;
}
.show-side-item:hover { box-shadow: var(--shadow-md); }
.show-side-thumb {
    position: relative;
    aspect-ratio: 4/3;
    background: #ccc;
    overflow: hidden;
}
.show-side-thumb img { width:100%; height:100%; object-fit:cover; }
.thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.32);
}
.show-side-info {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}
.show-side-cat {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: var(--accent);
}
.show-side-title {
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.38;
    color: var(--black);
}
.show-side-time { font-size: 11px; color: var(--gray-400); }

/* --- EXTERN SECTION fix --- */
#extern-section {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-100);
}
.extern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.extern-featured {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111;
    min-height: 340px;
    text-decoration: none;
}
.extern-featured img { width:100%; height:100%; object-fit:cover; display:block; }
.extern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.88) 42%, transparent 70%);
}
.livetext-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--red-badge);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}
.livetext-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: blink 1.2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.extern-featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}
.extern-cat {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 7px;
}
.extern-date { color: rgba(255,255,255,.45); margin-left: 7px; }
.extern-featured-title {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.38;
    color: #fff;
}
.extern-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}
.extern-card {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: box-shadow .15s;
}
.extern-card:hover { box-shadow: var(--shadow-md); }
.extern-card-thumb {
    display: block;
    aspect-ratio: 16/9;
    background: #eee;
    overflow: hidden;
}
.extern-card-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .3s; }
.extern-card:hover .extern-card-thumb img { transform: scale(1.04); }
.extern-card-body { padding: 11px; flex: 1; }
.extern-card-meta {
    font-size: 10.5px;
    color: var(--gray-400);
    margin-bottom: 5px;
    display: flex;
    gap: 7px;
}
.extern-card-cat { color: var(--accent); font-weight: 700; }
.extern-card-title { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--black); }
.extern-card-title a:hover { color: var(--accent); }

/* --- SHOW5 SECTION fix --- */
#show5-section {
    background: var(--gray-50);
    padding: 32px 0 40px;
}
.show5-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.show5-title {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-700);
}
.show5-view-all {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    transition: opacity .15s;
}
.show5-view-all:hover { opacity: .75; }
.show5-main-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.show5-featured {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: #111;
    position: relative;
    aspect-ratio: 4/3;
    text-decoration: none;
}
.show5-featured img { width:100%; height:100%; object-fit:cover; display:block; }
.show5-feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8) 38%, transparent 68%);
}
.show5-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,.88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform .2s, background .15s;
}
.show5-play-btn:hover { background: #fff; transform: translate(-50%,-50%) scale(1.08); }
.show5-feat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    z-index: 2;
}
.show5-feat-cat {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.62);
    margin-bottom: 6px;
    display: block;
}
.show5-feat-date { color: rgba(255,255,255,.4); margin-left: 6px; }
.show5-feat-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}
.show5-list { display: flex; flex-direction: column; }
.show5-list-item {
    padding: 11px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.show5-list-item:first-child { padding-top: 0; }
.show5-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.show5-list-cat {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: var(--accent);
}
.show5-list-date { color: var(--gray-400); margin-left: 5px; font-weight: 400; text-transform: none; }
.show5-list-title { font-size: 13.5px; font-weight: 600; line-height: 1.42; color: var(--black); }
.show5-list-title a:hover { color: var(--accent); }
.show5-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.show5-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    transition: box-shadow .15s, transform .15s;
    display: flex;
    flex-direction: column;
}
.show5-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.show5-card-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    background: #ccc;
    overflow: hidden;
}
.show5-card-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .3s; }
.show5-card:hover .show5-card-thumb img { transform: scale(1.04); }
.show5-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.3);
    opacity: 0;
    transition: opacity .2s;
}
.show5-card:hover .show5-card-play { opacity: 1; }
.show5-card-body { padding: 11px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.show5-card-meta { font-size: 10px; color: var(--gray-400); display: flex; gap: 7px; }
.show5-card-section { font-weight: 800; color: var(--accent); font-size: 10px; letter-spacing: .8px; text-transform: uppercase; }
.show5-card-title { font-size: 13px; font-weight: 700; line-height: 1.42; color: var(--black); }
.show5-card-title a:hover { color: var(--accent); }

/* --- RESPONSIVE EXTRA --- */
@media (max-width: 1000px) {
    .show-grid { grid-template-columns: 1fr; }
    .show5-main-grid { grid-template-columns: 1fr; }
    .extern-grid { grid-template-columns: 1fr; }
    .extern-right { grid-template-columns: 1fr 1fr; }
    .show5-bottom-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
    .show5-bottom-grid { grid-template-columns: 1fr; }
    .articles-small-grid { grid-template-columns: 1fr; }
    .extern-right { grid-template-columns: 1fr; }
    .logo-se, .logo-stie { font-size: 18px; }
}

/* =============================================
   FOOTER - SeStie.ro
   ============================================= */
#site-footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 0;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Top: logo + tagline centrat ---- */
.footer-top-band {
    padding: 52px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
    gap: 14px;
}
.footer-logo-big {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    text-decoration: none;
    line-height: 1;
}
.flb-se   { font-family: var(--font-serif); font-weight: 900; font-size: 28px; color: #fff; letter-spacing: -.5px; }
.flb-stie { font-family: var(--font-serif); font-weight: 900; font-size: 28px; background: var(--accent); color: #fff; padding: 1px 9px 3px; border-radius: 4px; margin-left: 1px; letter-spacing: -.5px; }
.flb-ro   { font-family: var(--font-sans); font-size: 13px; font-weight: 700; color: rgba(255,255,255,.25); margin-left: 3px; padding-bottom: 3px; }

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,.35);
    line-height: 1.6;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.fsoc {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    text-decoration: none;
}
.fsoc:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---- Middle: 3 coloane linkuri ---- */
.footer-links-band {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-col-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 16px;
    display: block;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,.36);
    transition: color .15s;
    text-decoration: none;
    line-height: 1;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }

/* ---- Bottom bar ---- */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.2);
}
.footer-bottom-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.footer-bottom-nav a { color: rgba(255,255,255,.26); transition: color .15s; text-decoration: none; }
.footer-bottom-nav a:hover { color: rgba(255,255,255,.7); }
.footer-bottom-nav span { color: rgba(255,255,255,.12); }

/* ---- Responsive ---- */
@media (max-width: 700px) {
    .footer-links-band { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
    .footer-links { align-items: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
