/*
Theme Name: Asya Fanatikleri PRO CORE
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET */
*{
    box-sizing:border-box;
}

body{
    margin:0;
    background:#181818;
    color:#fff;
    font-family:'Poppins',sans-serif;
}

/* =========================
   LAYOUT SYSTEM
========================= */
.container{
    max-width:1140px;
    margin:0 auto;
    padding:0 20px;
}

/* LINKS */
a{
    color:#fff;
    text-decoration:none;
    transition:0.2s;
}
a:hover{
    color:#c60008;
}

/* =========================
   HEADER
========================= */
.header{
    width:100%;
    background:#c60008;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
}

/* logo */
.logo img{
    height:38px;
}

/* menu */
.nav ul{
    display:flex;
    gap:18px;
    list-style:none;
    margin:0;
    padding:0;
}

/* right */
.header-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.search input{
    padding:6px 10px;
    border:none;
    border-radius:4px;
    outline:none;
    width:150px;
}

.btn{
    background:#fff;
    color:#c60008 !important;
    padding:6px 10px;
    border-radius:4px;
    font-weight:600;
    font-size:13px;
}

/* =========================
   CATEGORY BAR
========================= */
.category{
    background:#111;
    border-bottom:1px solid #2a2a2a;
}

.category ul{
    display:flex;
    gap:12px;
    list-style:none;
    padding:12px 0;
    margin:0;
}

/* =========================
   SLIDER
========================= */
.slider{
    height:320px;
    background:#222;
    border-radius:10px;
    margin:20px 0;
}

/* =========================
   SECTION TITLE
========================= */
.section-title{
    margin:20px 0 10px;
    font-size:18px;
    font-weight:600;
}

/* =========================
   GRID
========================= */
.grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
    margin-bottom:30px;
}

.card{
    background:#222;
    height:200px;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.2s;
}
.card:hover{
    transform:scale(1.03);
}

/* FOOTER */
.footer{
    background:#111;
    padding:20px 0;
    margin-top:40px;
    text-align:center;
    color:#aaa;
}

/* RESPONSIVE */
@media(max-width:1024px){
    .grid{grid-template-columns:repeat(3,1fr);}
}

@media(max-width:768px){
    .header-inner{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

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