/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/* Konser Kartları */
.konser-listesi, .sanatci-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.konser-karti, .sanatci-karti {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.konser-karti:hover, .sanatci-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.konser-resim, .sanatci-resim {
    height: 200px;
    overflow: hidden;
}

.konser-resim img, .sanatci-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.konser-bilgi, .sanatci-karti h3 {
    padding: 15px;
}

/* Konser Detay Sayfası */
.konser-detay {
    max-width: 1200px;
    margin: 0 auto;
}

.konser-detay img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.konser-bilgileri {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bilet-buton {
    display: inline-block;
    background: #ff5722;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.konser-haritasi {
    height: 400px;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

/* Filtre Butonları */
.konser-filtre button {
    background: #f0f0f0;
    border: none;
    padding: 8px 15px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.konser-filtre button.aktif {
    background: #3f51b5;
    color: white;
}

/* Sayfalama */
.konser-sayfalama, .sanatci-sayfalama {
    margin-top: 30px;
    text-align: center;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pagination .current {
    background: #3f51b5;
    color: white;
    border-color: #3f51b5;
}