/* ====================================================================
   FANTASTIK GLOBAL CSS
   Utility system similar Tailwind (fără build), culori HSL,
   reset CSS și layout global tabloid profesional.
   ==================================================================== */

/* ---------------------- RESET CSS CLEAN ---------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: hsl(0 0% 95%);
    font-family: 'Noto Sans', sans-serif;
    color: hsl(0 0% 5%);
    line-height: 1.6;
}

/* ---------------------- COLOR VARIABLES ---------------------- */
:root {
    --primary: 50 100% 50%;            /* Galben */
    --secondary: 0 0% 8%;              /* Negru foarte inchis */
    --background: 0 0% 95%;            /* Gri foarte deschis */
    --foreground: 0 0% 5%;             /* Negru */
    --card: 0 0% 100%;                 /* Alb */
    --border: 0 0% 80%;                /* Gri border */

    --breaking: 0 100% 50%;            /* Rosu pur */
    --scandal: 330 100% 50%;           /* Magenta */
    --hot: 35 100% 50%;                /* Portocaliu */
    --crimson: 348 83% 47%;            /* Rosu închis */
}

/* ---------------------- TYPOGRAPHY ---------------------- */
.font-bebas {
    font-family: 'Bebas Neue', sans-serif;
}
.font-noto {
    font-family: 'Noto Sans', sans-serif;
}

.uppercase { text-transform: uppercase; }
.font-black { font-weight: 900; }

/* Title sizes (Tailwind-like) */
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 4rem; }

@media (min-width: 768px) {
    .text-5xl { font-size: 3.5rem; }
    .text-6xl { font-size: 4.5rem; }
}

/* ---------------------- LAYOUT ---------------------- */
.container {
    max-width: 1500px; /* lățime profesională, tabloid modern */
    margin: 0 auto;
    padding: 0 12px;   /* padding mic → site-ul pare mai în față */
}


.grid { display: grid; }

/* GAP între carduri (premium spacing) */
.gap-4 { gap: 24px; }

/* Spacing vertical pentru secțiuni */
.py-16 {
    padding-top: 30px;
    padding-bottom: 30px;
}
@media(max-width: 768px) {
    .py-16 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}








/* Padding lateral adaptiv */
.px-4 {
    padding-left: 12px;
    padding-right: 12px;
}
@media(min-width: 1024px) {
    .px-4 {
        padding-left: 20px;
        padding-right: 20px;
    }
}



/* ---------------------- CARDS ---------------------- */
.card {
    background: hsl(var(--card));
    border: 2px solid hsl(var(--border));
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ---------------------- IMAGES ---------------------- */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay gradient */
.overlay-dark {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.4), transparent);
}

/* ---------------------- BADGES ---------------------- */
.badge {
    padding: 4px 12px;
    font-size: 0.75rem;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
}

.badge-breaking { background: hsl(var(--breaking)); }
.badge-scandal  { background: hsl(var(--scandal)); }
.badge-hot      { background: hsl(var(--hot)); }
.badge-yellow   { background: hsl(var(--primary)); color: black; }

/* ---------------------- TITLURI ARTICOLE ---------------------- */
.article-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

/* ---------------------- SECTION HEADERS ---------------------- */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.section-icon-box {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-right: 8px;
}




/* ---------------------- MENU ---------------------- */
.fantastik-menu {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
}

.fantastik-menu a {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
    text-decoration: none;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .fantastik-menu {
        flex-wrap: wrap;
        gap: 12px;
    }
}













/* ============ SCANDALURI ============ */

@media (max-width: 1024px) {
    .scandal-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .scandal-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}



/* ============ VEDETE GRID ============ */

@media (max-width: 900px) {
    .vedete-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============ VIDEO GRID ============ */

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr !important;
    }
}














/* ============ FOOTER ============ */

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Noto Sans';
}

.footer-menu a:hover {
    color: white; /* unicul loc unde avem hover permis */
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}








/* NEW HEADER MENU */

.fantastik-main-menu {
    display:flex;
    gap:24px;
    list-style:none;
}

.fantastik-main-menu a {
    color:white;
    text-transform:uppercase;
    font-weight:700;
    font-family:'Noto Sans';
    font-size:14px;
    text-decoration:none;
}

@media(max-width:768px) {
    .fantastik-main-menu {
        flex-wrap:wrap;
        gap:12px;
    }
}







/* ====================== HERO SLIDER V3 — EXTREM (TMZ STYLE) ======================= */

.fantastik-slider {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    border: 10px solid hsl(var(--primary)); /* border galben mai gros */
    overflow: hidden;
    margin-top: 0; /* lipit de meniu */
}

.slide-track {
    display: flex;
    transition: transform .7s cubic-bezier(.25,.8,.25,1);
}

.slide {
    min-width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* zoom pentru efect dramatic */
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.2) 100%
    );
}

/* Black title bar — MULT mai agresiv */
.slide-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 40px;

    /* ✨ FUMURIU PROFESIONAL (ca în poza ta) */
    background: rgba(0,0,0,0.45); /* 45% opac, NU 95% */
    backdrop-filter: blur(4px);  /* efect de sticlă fumurie – super premium */

    /* un gradient subtil pentru profunzime */
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.60) 0%,
        rgba(0,0,0,0.40) 40%,
        rgba(0,0,0,0.10) 100%
    );
}

.slide-title {
    font-family: 'Bebas Neue', sans-serif;
    color: hsl(var(--primary));
    font-size: 72px;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 0 8px black;
}

@media(max-width: 768px) {
    .slide {
        height: 450px;
    }
    .slide-title {
        font-size: 48px;
    }
}

/* Săgeți AGRESIVE */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: hsl(var(--primary));
    color: black;
    font-size: 40px;
    font-weight: 900;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    cursor:pointer;
    z-index:20;
}

.slide-arrow.left { left: 20px; }
.slide-arrow.right { right: 20px; }

/* Indicatori IMPUNĂTORI */
.slide-dots {
    position:absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display:flex;
    gap:14px;
}

.slide-dots div {
    width: 45px;
    height: 6px;
    background: rgba(255,255,255,0.3);
}

.slide-dots .active {
    background: hsl(var(--primary));
}




.slide-title {
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}






/* ======================= HEADER LOGO IMPUNĂTOR (POZA 2) ======================= */

.fantastik-header {
    background: #ffffff;
    border-bottom: 8px solid hsl(var(--primary)); /* mai gros, ca mockup */
    padding: 26px 0 14px; /* respiratie corecta */
    box-shadow: 0 2px 0 rgba(0,0,0,0.04); /* ridica headerul vizual */
}


.fantastik-logo-wrap {
    text-align: center;
    padding: 0;
}


/* ========== LOGO SUBȚIRE, PREMIUM, IDENTIC CU POZA ========== */

.fantastik-logo {
    font-size: 110px !important;
    line-height: 0.85 !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    transform: scaleY(1.15); 
}





.logo-main {
    color: hsl(var(--primary));
    font-weight: 400; /* nu bold */
}

.logo-ext {
    color: #111;       /* negru mai soft, nu cărbune */
    font-weight: 400;  /* eliminăm bold */
}


/* TAGLINE */
.fantastik-tagline {
    color: #222;
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .fantastik-logo {
        font-size: 56px;
    }
    .fantastik-tagline {
        font-size: 14px;
    }
}























/* ============================================================
   BREAKING NEWS V8 — PREMIUM / LANDSCAPE / CLEAN / TMZ STYLE
   ============================================================ */

.breaking-wrap {
    margin-top: 40px;
    margin-bottom: 60px;
}

/* HEADER */
.breaking-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.breaking-title {
    background: #d40000;
    color: white;
    padding: 8px 18px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 15px;
}

.breaking-line {
    flex: 1;
    height: 3px;
    background: #d40000;
}

/* GRID: LEFT BIG + RIGHT ITEMS */
.breaking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* ====================== BIG ARTICLE LEFT ====================== */
.breaking-big {
    position: relative;
    height: 470px;
    overflow: hidden;
    border: 2px solid #eee;
    background: #000;
}

.breaking-big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breaking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
}

.breaking-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d40000;
    color: white;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 20;
}

.breaking-big-title {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;

    background: rgba(0,0,0,0.55);
    padding: 12px 16px;

    color: white;
    font-weight: 900;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 1.2;
    z-index: 20;
}

/* ====================== RIGHT — 3 LANDSCAPE ITEMS ====================== */

.breaking-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 470px; /* SAME HEIGHT AS BIG ARTICLE */
}

.breaking-side-item {
    display: grid;
    grid-template-columns: 150px auto;
    gap: 12px;
    padding: 12px;
    height: 31%;
    border: 2px solid #eee;
    background: white;
    transition: 0.2s ease;
    text-decoration: none;
    color: black;
    align-items: center;
}

.breaking-side-item:hover {
    background: #f8f8f8;
    border-color: #d40000;
}

.breaking-side-img {
    width: 100%;
    height: 100%;
}

.breaking-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 4px;
}

.breaking-side-info h3 {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.25;
}

.breaking-side-info h3:hover {
    color: #d40000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .breaking-grid {
        grid-template-columns: 1fr;
    }
    .breaking-big {
        height: 330px;
    }
    .breaking-side {
        height: auto;
        gap: 20px;
    }
    .breaking-side-item {
        height: auto;
        grid-template-columns: 130px auto;
    }
}















/* ============================================================
   MOBILE PREMIUM MIX (BBC + TMZ STYLE)
   Activ automat sub 768px
   ============================================================ */
@media(max-width: 768px) {

    /* ==== RESET ==== */
    body {
        padding: 0;
        margin: 0;
        background: #f5f5f5;
        overflow-x: hidden;
    }

    .container {
        padding: 0 14px !important;
        max-width: 100% !important;
    }

    /* ============================================================
       HEADER PREMIUM
       ============================================================ */
    .fantastik-header {
        padding: 18px 0 !important;
        border-bottom: 3px solid black;
    }

    .fantastik-logo {
        font-size: 42px !important;
        letter-spacing: 0.5px !important;
    }

    .fantastik-tagline {
        font-size: 13px !important;
        margin-top: 4px;
    }

    /* ==== MENIU BURGER ==== */
    nav .container {
        padding: 10px 14px !important;
    }

    .fantastik-main-menu {
        display: none !important;
    }



    /* ============================================================
       HERO SLIDER MOBILE
       ============================================================ */
    .fantastik-slider {
        height: 380px !important;
        border-width: 6px !important;
    }

    .slide {
        height: 380px !important;
    }

    .slide-title {
        font-size: 32px !important;
        padding-right: 20px;
    }

    .slide-title-bar {
        padding: 22px !important;
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.25),
            transparent
        ) !important;
    }

    /* ============================================================
       BREAKING SECTION MOBILE
       ============================================================ */

    .breaking-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .breaking-item {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px;
        border-radius: 12px;
        padding: 12px;
        background: white;
    }

    .breaking-item img {
        width: 120px !important;
        height: 100px !important;
        border-radius: 8px;
        object-fit: cover;
    }

    .breaking-title {
        font-size: 17px !important;
        line-height: 1.3;
    }

    /* ============================================================
       SECTION LISTS (Scandaluri, Vedete, Video)
       ============================================================ */
    .section-title {
        font-size: 32px !important;
        margin-bottom: 12px !important;
    }

    .scandal-grid,
    .vedete-grid,
    .video-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .card {
        border-radius: 14px !important;
        overflow: hidden;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .card img {
        height: 220px !important;
        object-fit: cover;
        width: 100% !important;
    }

    .card h2,
    .card h3 {
        font-size: 20px !important;
        padding: 12px !important;
        line-height: 1.3;
    }

  
  
  
  
  
  

 
 
 
/* ============================================================
   HERO SLIDER — MOBILE PREMIUM CLEAN (text mai sus + overlay subtire)
   ============================================================ */
@media(max-width: 768px) {

    /* Imagine */
    .slide-img {
        width: 100%;
        height: 360px !important;
        object-fit: cover;
        display: block;
    }

    /* Eliminăm overlay-urile vechi */
    .slide-overlay {
        display: none !important;
    }

    /* Bara neagră nouă, subțire și premium */
    .slide-title-bar {
        position: absolute;
        bottom: 34px; /* mutat titlul MAI SUS */
        left: 0;
        width: 100%;
        padding: 12px 16px; /* subtire */
        background: rgba(0,0,0,0.45); /* mai fin */
        backdrop-filter: blur(3px);
    }

    /* Text HERO */
    .slide-title {
        font-size: 20px !important;
        font-weight: 800;
        letter-spacing: -0.3px;
        line-height: 1.25;
        margin: 0;
        padding: 0;
        color: #fff;
        text-shadow: 0 0 6px rgba(0,0,0,0.6);
    }

    /* Eliminăm cardurile și elementele inutile */
    .slide-title-card {
        display: none !important;
    }

    /* Săgeți — pot rămâne sau ascunde */
    .slide-arrow {
        width: 38px !important;
        height: 38px !important;
        font-size: 20px !important;
    }
}




















/* ============================================================
   BREAKING TITLE – PREMIUM CLEAN (FĂRĂ CUTIE NEAGRĂ)
============================================================ */
@media(max-width: 768px) {

    /* Eliminăm complet cutia neagră */
    .breaking-big-title {
        background: none !important;
        padding: 0 !important;
        margin: 0 !important;

        font-size: 22px !important;
        font-weight: 800;
        line-height: 1.28;
        color: #fff;

        position: absolute;
        bottom: 18px;
        left: 14px;
        right: 14px;
        z-index: 20;

        /* umbră premium ca BBC */
        text-shadow: 0 3px 12px rgba(0,0,0,0.55);
        text-wrap: balance;
    }

    /* Overlay ultra-subțire, abia vizibil */
    .breaking-overlay {
        height: 75%;
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.15),
            transparent
        ) !important;
    }
}








@media(max-width: 768px) {
    section {
        margin-bottom: 10px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}












