/* ==========================================================
   SEMIBOLA - STYLE.CSS
   Part 1
   Author : SEMIBOLA
   Version: 1.0
========================================================== */

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#212529;
    line-height:1.7;
    overflow-x:hidden;
}

/* ==========================================================
   ROOT
========================================================== */

:root{

    --primary:#f4b400;
    --secondary:#111827;
    --dark:#0f172a;
    --light:#ffffff;
    --gray:#6b7280;
    --border:#e5e7eb;
    --success:#22c55e;
    --danger:#ef4444;

    --radius:18px;

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);

    --shadow-md:0 10px 25px rgba(0,0,0,.12);

    --shadow-lg:0 20px 45px rgba(0,0,0,.15);

    --transition:.35s ease;

}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:700;
    color:var(--secondary);

}

p{

    color:var(--gray);

}

a{

    text-decoration:none;
    transition:var(--transition);

}

img{

    max-width:100%;
    display:block;

}

/* ==========================================================
   SECTION
========================================================== */

section{

    position:relative;
    padding:80px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:2.3rem;
    margin-bottom:15px;

}

.section-title p{

    max-width:700px;
    margin:auto;

}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar{

    background:rgba(15,23,42,.95)!important;

    backdrop-filter:blur(12px);

    transition:.4s;

    padding:16px 0;

    box-shadow:var(--shadow-sm);

}

.navbar-brand{

    font-size:2rem;

    font-weight:800;

    letter-spacing:1px;

}

.navbar-brand span{

    color:var(--primary);

}

.navbar-nav .nav-link{

    color:#fff!important;

    font-weight:500;

    margin-left:18px;

    position:relative;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    bottom:-5px;

    left:0;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar .btn{

    font-weight:600;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    background:linear-gradient(
    135deg,
    #0f172a,
    #111827);

    color:#fff;

    overflow:hidden;

    min-height:90vh;

    display:flex;

    align-items:center;

}

.hero h1{

    color:#fff;

    font-size:3.8rem;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    color:#d1d5db;

    font-size:1.1rem;

    max-width:620px;

}

.hero img{

    animation:float 5s ease infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/* ==========================================================
   BUTTON
========================================================== */

.btn-warning{

    background:var(--primary);

    border:none;

    color:#111;

    font-weight:700;

    border-radius:50px;

    padding:12px 30px;

    transition:var(--transition);

}

.btn-warning:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.btn-outline-light{

    border-radius:50px;

    padding:12px 30px;

}

/* ==========================================================
   BREAKING NEWS
========================================================== */

.breaking-news{

    background:var(--danger);

    color:#fff;

    overflow:hidden;

}

.breaking-news marquee{

    font-weight:500;

}

/* ==========================================================
   STATISTIC
========================================================== */

.stat-box{

    background:#fff;

    border-radius:var(--radius);

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.stat-box h2{

    color:var(--primary);

    font-size:2.5rem;

}

.stat-box p{

    margin-top:10px;

}

/* ==========================================================
   UTILITIES
========================================================== */

.rounded-xl{

    border-radius:var(--radius);

}

.shadow-custom{

    box-shadow:var(--shadow-md);

}

.bg-dark-custom{

    background:var(--secondary);

}

.text-primary-custom{

    color:var(--primary);

}

.py-100{

    padding-top:100px;

    padding-bottom:100px;

}

.mt-80{

    margin-top:80px;

}

.mb-80{

    margin-bottom:80px;

}

.transition{

    transition:var(--transition);

}


/* ==========================================================
   NEWS CARD
========================================================== */

.card{

    border:none;
    border-radius:var(--radius);
    overflow:hidden;
    transition:var(--transition);
    box-shadow:var(--shadow-sm);

}

.card:hover{

    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);

}

.card-img-top{

    height:240px;
    object-fit:cover;
    transition:.5s;

}

.card:hover .card-img-top{

    transform:scale(1.06);

}

.card-body{

    padding:25px;

}

.card-title{

    font-size:1.3rem;
    font-weight:700;
    line-height:1.4;
    margin-bottom:15px;

}

.card-text{

    color:var(--gray);

}

.badge{

    border-radius:30px;
    padding:8px 15px;
    font-size:.75rem;
    font-weight:600;

}

/* ==========================================================
   FEATURED IMAGE
========================================================== */

.featured-news{

    overflow:hidden;
    border-radius:var(--radius);

}

.featured-news img{

    transition:.6s;

}

.featured-news:hover img{

    transform:scale(1.08);

}

/* ==========================================================
   SIDEBAR
========================================================== */

.sidebar-widget{

    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    margin-bottom:30px;
    overflow:hidden;

}

.sidebar-widget h4{

    background:var(--secondary);
    color:#fff;
    padding:18px 25px;
    margin:0;
    font-size:1.1rem;

}

.sidebar-widget ul{

    list-style:none;
    padding:0;
    margin:0;

}

.sidebar-widget li{

    border-bottom:1px solid var(--border);

}

.sidebar-widget li:last-child{

    border-bottom:none;

}

.sidebar-widget a{

    display:block;
    padding:15px 20px;
    color:#333;

}

.sidebar-widget a:hover{

    background:#f7f7f7;
    color:var(--primary);
    padding-left:28px;

}

/* ==========================================================
   NEWSLETTER
========================================================== */

.newsletter{

    background:linear-gradient(135deg,#111827,#1f2937);
    color:#fff;
    border-radius:var(--radius);
    padding:35px;

}

.newsletter h3{

    color:#fff;

}

.newsletter input{

    height:55px;
    border-radius:40px;
    border:none;
    padding:0 20px;

}

.newsletter button{

    height:55px;
    border-radius:40px;
    font-weight:700;

}

/* ==========================================================
   CATEGORY
========================================================== */

.category-card{

    background:#fff;
    border-radius:var(--radius);
    text-align:center;
    padding:40px 25px;
    transition:var(--transition);
    box-shadow:var(--shadow-sm);
    height:100%;

}

.category-card:hover{

    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);

}

.category-card i{

    font-size:60px;
    color:var(--primary);
    margin-bottom:20px;

}

.category-card h4{

    margin-bottom:15px;

}

.category-card p{

    margin-bottom:0;

}

/* ==========================================================
   TRANSFER CENTER
========================================================== */

.transfer-section{

    background:linear-gradient(135deg,#0f172a,#1f2937);
    color:#fff;

}

.transfer-section h2{

    color:#fff;

}

.transfer-section p{

    color:#d1d5db;

}

.transfer-section img{

    animation:float 5s ease infinite;

}

/* ==========================================================
   MATCH TABLE
========================================================== */

.table{

    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow-sm);

}

.table thead{

    background:var(--secondary);
    color:#fff;

}

.table th{

    padding:18px;

    border:none;

}

.table td{

    padding:18px;
    vertical-align:middle;

}

.table tbody tr{

    transition:.25s;

}

.table tbody tr:hover{

    background:#fff8e1;

}

/* ==========================================================
   IMAGE EFFECT
========================================================== */

.zoom-image{

    overflow:hidden;
    border-radius:var(--radius);

}

.zoom-image img{

    transition:.6s;

}

.zoom-image:hover img{

    transform:scale(1.1);

}

/* ==========================================================
   BUTTON EFFECT
========================================================== */

.btn{

    transition:all .3s ease;

}

.btn:hover{

    transform:translateY(-3px);

}

/* ==========================================================
   LIST GROUP
========================================================== */

.list-group-item{

    border:none;
    border-bottom:1px solid var(--border);
    transition:.3s;

}

.list-group-item:hover{

    background:#fafafa;
    padding-left:25px;

}

/* ==========================================================
   ICON BOX
========================================================== */

.icon-box{

    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(244,180,0,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

}

.icon-box i{

    font-size:32px;
    color:var(--primary);

}

/* ==========================================================
   CARD ANIMATION
========================================================== */

.fade-up{

    opacity:0;
    transform:translateY(40px);
    transition:.6s;

}

.fade-up.show{

    opacity:1;
    transform:translateY(0);

}

/* ==========================================================
   ADVERTISEMENT
========================================================== */

.ads-box{

    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow-sm);

}

.ads-box img{

    width:100%;

}

/* ==========================================================
   TRENDING
========================================================== */

.trending-tag{

    display:inline-block;
    padding:8px 18px;
    background:#fff3cd;
    color:#856404;
    border-radius:30px;
    font-size:.8rem;
    margin:5px;

}

.trending-tag:hover{

    background:var(--primary);
    color:#111;

}

