/*
Theme Name: CoCBuild Pro Theme
Theme URI: http://cocbuild.com
Author: Senin Adın
Description: Clash of Clans Base Layout Pro Tema
Version: 1.0
Text Domain: cocbuild-pro
*/

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin:0; padding:0;
}

a{ text-decoration:none;color:#333;}

header, footer{
    background:#1e1e1e;
    color:#fff;
    padding:15px 30px;
}

header h1{
    margin:0;
    font-size:28px;
}

nav ul{
    list-style:none;
    padding:0;
    margin:10px 0 0 0;
    display:flex;
    gap:15px;
}

nav ul li a{
    color:#fff;
    font-weight:bold;
}

.coc-layouts-grid{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    padding:20px;
    justify-content:center;
}

.coc-layout-item{
    width:calc(33.33% - 10px);
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
    text-align:center;
    transition:transform 0.2s;
}

.coc-layout-item img{
    width:100%;
    height:auto;
    display:block;
    cursor:pointer;
}

.coc-layout-item h4{
    padding:10px;
    font-size:16px;
    color:#333;
}

.coc-layout-item:hover{
    transform:translateY(-5px);
}

.sidebar{
    padding:20px;
    background:#fff;
    border-radius:6px;
    margin:20px 0;
}

.th-filter{
    margin:20px;
    text-align:center;
}

.th-filter button{
    margin:0 5px;
    padding:8px 15px;
    border:none;
    border-radius:4px;
    background:#ff9800;
    color:#fff;
    cursor:pointer;
}

.th-filter button.active{
    background:#f57c00;
}

@media(max-width:1024px){
    .coc-layout-item{width:calc(50% - 10px);}
}

@media(max-width:768px){
    .coc-layout-item{width:calc(50% - 10px);} /* Mobilde 2 kolon */
}