/* =====================================
   ZËRI KRYEQYTETIT
   STYLE.CSS
===================================== */

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

:root{
    --primary:#d90429;
    --secondary:#111827;
    --background:#f5f5f5;
    --white:#ffffff;
    --text:#1f2937;
    --gray:#6b7280;
    --shadow:0 10px 30px rgba(0,0,0,.12);
    --radius:16px;
    --transition:.3s ease;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--background);
    color:var(--text);
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    cursor:pointer;
    border:none;
    transition:var(--transition);
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}
/* =====================================
   HEADER
===================================== */

#header{
    width:100%;
    background:var(--white);
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    left:0;
    z-index:1000;
}

.top-bar{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    gap:30px;
}

.logo img{
    height:55px;
    width:auto;
}

/* ==========================
   NAVIGATION
========================== */

nav{
    flex:1;
}

nav ul{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

nav ul li a{
    color:var(--text);
    font-size:15px;
    font-weight:600;
    position:relative;
    transition:.3s;
    padding:6px 0;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:3px;
    background:var(--primary);
    transition:.3s;
    border-radius:10px;
}

nav ul li a:hover{
    color:var(--primary);
}

nav ul li a:hover::after{
    width:100%;
}

/* ==========================
   HEADER ACTIONS
========================== */

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-actions button{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f3f4f6;
    font-size:18px;
    transition:.3s;
}

.header-actions button:hover{
    background:var(--primary);
    color:#fff;
    transform:scale(1.08);
}

/* ==========================
   RESPONSIVE HEADER
========================== */

@media(max-width:992px){

.top-bar{
    flex-direction:column;
    gap:20px;
}

nav ul{
    gap:16px;
}

}

@media(max-width:768px){

nav ul{
    flex-direction:column;
    gap:14px;
}

.logo img{
    height:45px;
}

.header-actions{
    justify-content:center;
}

}
/* =====================================
   HERO SECTION
===================================== */

#hero{
    width:90%;
    max-width:1400px;
    margin:40px auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.hero-left{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow);
}

.hero-left img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.4s;
}

.hero-left:hover img{
    transform:scale(1.05);
}

.hero-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:40px;
    background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.15));
    color:#fff;
}

.hero-content .category{
    display:inline-block;
    background:var(--primary);
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:38px;
    margin-bottom:15px;
    line-height:1.2;
}

.hero-content p{
    font-size:16px;
    color:#e5e7eb;
    margin-bottom:20px;
}

.hero-content button{
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    font-weight:700;
}

.hero-content button:hover{
    background:#b10320;
}

/* SIDEBAR */

.hero-right{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:var(--shadow);
}

.hero-right h2{
    margin-bottom:25px;
}

.mini-news{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    align-items:center;
    cursor:pointer;
}

.mini-news img{
    width:100px;
    height:75px;
    object-fit:cover;
    border-radius:10px;
}

.mini-news h4{
    font-size:16px;
    margin-bottom:6px;
}

.mini-news span{
    color:var(--gray);
    font-size:13px;
}

/* RESPONSIVE */

@media(max-width:992px){

#hero{
    grid-template-columns:1fr;
}

.hero-left img{
    height:400px;
}

}

@media(max-width:768px){

.hero-content{
    padding:25px;
}

.hero-content h1{
    font-size:28px;
}

.hero-left img{
    height:300px;
}

}
/* =====================================
   BREAKING NEWS
===================================== */

#breaking-news{
    width:90%;
    max-width:1400px;
    margin:40px auto;
}

#breaking-news h2{
    margin-bottom:15px;
    color:var(--primary);
    font-size:28px;
}

.breaking-container{
    background:var(--secondary);
    color:#fff;
    padding:16px 20px;
    border-radius:12px;
    box-shadow:var(--shadow);
    overflow:hidden;
}

/* =====================================
   LATEST NEWS
===================================== */

#latest-news{
    width:90%;
    max-width:1400px;
    margin:50px auto;
}

#latest-news h2{
    font-size:32px;
    margin-bottom:30px;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* =====================================
   NEWS CARD
===================================== */

.card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.35s;
}

.card:hover img{
    transform:scale(1.08);
}

.card h3{
    font-size:21px;
    padding:18px 18px 10px;
    line-height:1.4;
}

.card p{
    padding:0 18px 20px;
    color:var(--gray);
    line-height:1.7;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:768px){

.news-grid{
    grid-template-columns:1fr;
}

#latest-news h2,
#breaking-news h2{
    font-size:24px;
}

.card img{
    height:200px;
}

}
/* =====================================
   POPULAR NEWS
===================================== */

#popular-news{
    width:90%;
    max-width:1400px;
    margin:60px auto;
}

#popular-news h2{
    font-size:32px;
    margin-bottom:30px;
}

.popular-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.popular-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:all .3s ease;
    cursor:pointer;
}

.popular-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.popular-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:.4s;
}

.popular-card:hover img{
    transform:scale(1.08);
}

.popular-card h3{
    padding:18px;
    font-size:20px;
    line-height:1.5;
}

.popular-card span{
    display:block;
    padding:0 18px 20px;
    color:var(--gray);
    font-size:14px;
}

/* =====================================
   VIDEOS
===================================== */

#videos{
    width:90%;
    max-width:1400px;
    margin:60px auto;
}

#videos h2{
    font-size:32px;
    margin-bottom:30px;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.video-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:var(--shadow);
}

.video-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.video-card button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(217,4,41,.9);
    color:#fff;
    font-size:28px;
}

.video-card button:hover{
    transform:translate(-50%,-50%) scale(1.15);
}

.video-card h3{
    padding:18px;
    font-size:20px;
}

/* =====================================
   ADS
===================================== */

#ad-section,
#ads{
    width:90%;
    max-width:1400px;
    margin:70px auto;
}

.ad-banner{
    background:linear-gradient(135deg,#111827,#1f2937);
    color:#fff;
    border-radius:20px;
    padding:60px 30px;
    text-align:center;
    font-size:28px;
    font-weight:700;
    box-shadow:var(--shadow);
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:768px){

.popular-grid,
.video-grid{
    grid-template-columns:1fr;
}

#popular-news h2,
#videos h2{
    font-size:26px;
}

.ad-banner{
    font-size:20px;
    padding:40px 20px;
}

}
/* =====================================
   FOOTER PREMIUM
===================================== */

#footer{
    background:#0f172a;
    color:#fff;
    margin-top:80px;
    padding:70px 8% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-about img{
    width:180px;
    margin-bottom:20px;
}

.footer-about p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:15px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3{
    margin-bottom:20px;
    font-size:20px;
    color:#fff;
}

.footer-links ul{
    padding:0;
}

.footer-links li{
    margin:12px 0;
}

.footer-links a{
    color:#cbd5e1;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--primary);
    padding-left:8px;
}

.footer-contact p{
    color:#cbd5e1;
    margin:10px 0;
}

.footer-social a{
    display:block;
    color:#cbd5e1;
    margin:10px 0;
    transition:.3s;
}

.footer-social a:hover{
    color:var(--primary);
    transform:translateX(8px);
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
}

.footer-bottom p{
    color:#94a3b8;
    font-size:14px;
}

/* =====================================
   RESPONSIVE FOOTER
===================================== */

@media(max-width:1000px){

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

}

@media(max-width:700px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-links a:hover{
padding-left:0;
}

.footer-social a:hover{
transform:none;
}

}
/* =====================================
   DARK MODE
===================================== */

body.dark-mode{
    background:#0f172a;
    color:#f8fafc;
}

body.dark-mode #header,
body.dark-mode .card,
body.dark-mode .popular-card,
body.dark-mode .video-card,
body.dark-mode .hero-right{
    background:#1e293b;
    color:#fff;
}

body.dark-mode p,
body.dark-mode span,
body.dark-mode a{
    color:#cbd5e1;
}

body.dark-mode .ad-banner{
    background:linear-gradient(135deg,#020617,#1e293b);
}

/* =====================================
   SCROLL TO TOP
===================================== */

#scrollTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    cursor:pointer;
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

#scrollTop.show{
    opacity:1;
    visibility:visible;
}

#scrollTop:hover{
    transform:translateY(-5px);
}

/* =====================================
   LOADING
===================================== */

.loader{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader::after{
    content:"";
    width:60px;
    height:60px;
    border:6px solid #ddd;
    border-top:6px solid var(--primary);
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

/* =====================================
   FADE ANIMATION
===================================== */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* =====================================
   HOVER EFFECTS
===================================== */

.card,
.popular-card,
.video-card,
.hero-left{
    transition:all .35s ease;
}

.card:hover,
.popular-card:hover,
.video-card:hover,
.hero-left:hover{
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}
/* =====================================
   MOBILE MENU
===================================== */

#menuToggle{
    display:none;
}

#mobileMenu{
    position:fixed;
    top:85px;
    left:-100%;
    width:280px;
    height:100vh;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
    transition:.35s;
    z-index:999;
    padding:30px;
}

#mobileMenu.active{
    left:0;
}

#mobileMenu a{
    display:block;
    padding:15px 0;
    border-bottom:1px solid #eee;
    font-weight:600;
}

#mobileMenu a:hover{
    color:var(--primary);
}

@media(max-width:900px){

nav{
display:none;
}

#menuToggle{
display:block;
}

}
/* =====================================
   LIVE DATE & TIME
===================================== */

.live-info{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:5px;
    font-size:14px;
    font-weight:600;
}

#liveDate{
    color:var(--gray);
}

#liveTime{
    color:var(--primary);
    font-size:18px;
    font-weight:700;
}

@media(max-width:900px){

.live-info{
display:none;
}

}
/* =====================================
   SEARCH OVERLAY
===================================== */

#searchOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:100px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:5000;
}

#searchOverlay.active{
    opacity:1;
    visibility:visible;
}

.search-box{
    width:90%;
    max-width:700px;
    background:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    padding:20px;
    font-size:18px;
}

.search-box button{
    width:70px;
    height:64px;
    background:var(--primary);
    color:#fff;
    font-size:22px;
}

.search-box button:hover{
    background:#b10320;
}
/* =====================================
   HERO SLIDER
===================================== */

.hero-slide{
    animation:fadeHero .8s ease;
}

@keyframes fadeHero{

0%{
opacity:.2;
transform:scale(.98);
}

100%{
opacity:1;
transform:scale(1);
}

}
