/* Ana Container - Ana sayfa genişliği ile aynı */
.concerts-page {
    padding: 0;
    background: var(--light-color);
    min-height: calc(100vh - 200px);
    margin-top: 0;
    /* Header fixed olduğu için üstten boşluk ekle */
    padding-top: 120px !important;
}

/* Main content padding'ini override et */
.main-content .concerts-page {
    padding-top: 120px !important;
    margin-top: 0 !important;
}

body:has(.concerts-page) .main-content {
    padding-top: 0 !important;
}

.concerts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 40px;
    background: var(--light-color);
}

.konserler-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1a237e;
    margin-bottom: 2rem;
}

/* Yakında (veri yok) */
.konserler-yakinda {
    padding: 3rem 1rem;
}
.konserler-yakinda-card {
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(26, 35, 126, 0.06);
}
.konserler-yakinda-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(145deg, #1a237e 0%, #3949ab 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(26, 35, 126, 0.35);
}
.konserler-yakinda-icon i {
    font-size: 2rem;
    color: #fff;
}
.konserler-yakinda-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
    margin: 0 0 0.75rem;
}
.konserler-yakinda-card p {
    font-size: 1.05rem;
    color: #5c6bc0;
    line-height: 1.6;
    margin: 0 0 0.25rem;
}
.konserler-yakinda-sub {
    font-weight: 600;
    color: #3949ab !important;
    margin-top: 0.5rem !important;
}
.konserler-yakinda-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 126, 0.15), transparent);
    margin: 1.5rem 0;
}
.konserler-yakinda-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(145deg, #1a237e, #3949ab);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(26, 35, 126, 0.3);
}
.konserler-yakinda-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.35);
    color: #fff !important;
}

/* Ana Başlık Stilleri */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin: 3rem auto;
    position: relative;
    color: transparent;
    background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), #FF6B6B, #4ECDC4);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradient 5s ease infinite;
    padding: 0.5rem 1rem;
    display: inline-block;
    width: fit-content;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    animation: width-animation 3s infinite;
}

/* Grup Kartları */
.concert-group {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.group-title, .performer-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradient 5s ease infinite;
}

/* Konser Detay Kartı */
.concert-details {
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.concert-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.info-item i {
    color: var(--primary-color);
}

/* Üye Kartları Grid */
.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.four-members {
    justify-content: space-evenly;
    max-width: 1200px;
    margin: 0 auto;
}

.five-members {
    justify-content: space-evenly;
    max-width: 1400px;
    margin: 0 auto;
}

.member-card {
    flex: 0 1 calc(20% - 1.5rem);
    min-width: 200px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.four-members .member-card {
    flex: 0 1 calc(25% - 1.5rem);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Fotoğraf Alanı */
.member-photo {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.member-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-photo img {
    transform: scale(1.1);
}

/* Bilgi Alanı */
.member-info {
    padding: 1rem;
    text-align: center;
    background: white;
}

.member-name {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.member-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0.5rem 0 0;
}

/* Minderli Sahne Stilleri */
.mindful-stage {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 4rem;
}

.performer-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Solistler Grid */
.soloists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999999 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    padding: 2rem;
    overflow-y: auto;
    /* Flexbox ile içeriği ortala */
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex !important;
    flex-direction: column;
}

body.modal-open .site-header {
    z-index: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 10000000 !important;
    /* Sayfa ortasında olması için */
    align-self: center;
}

.close-button {
    position: fixed;
    right: 2rem;
    top: 2rem;
    color: #333;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000001 !important;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-button:hover {
    background: #e30a17;
    transform: rotate(90deg);
    color: #fff;
}

/* Animasyonlar */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes width-animation {
    0% { width: 50px; opacity: 0.5; }
    50% { width: 150px; opacity: 1; }
    100% { width: 50px; opacity: 0.5; }
}

/* Responsive Tasarım */
@media (max-width: 1400px) {
    .concerts-container {
        padding: 2rem 40px;
    }
    
    .five-members .member-card {
        flex: 0 1 calc(25% - 1.5rem);
    }
}

@media (max-width: 1200px) {
    .concerts-container {
        padding: 2rem 30px;
    }
    
    .member-card {
        flex: 0 1 calc(33.333% - 1.5rem);
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .concerts-container {
        padding: 2rem 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    .group-title, .performer-title {
        font-size: 2rem;
    }
    .member-card {
        flex: 0 1 calc(50% - 1.5rem);
    }
    .concert-info {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .concerts-container {
        padding: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .concert-group {
        padding: 1rem;
    }
    .concert-info {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .member-card {
        flex: 0 1 calc(100% - 1rem);
    }
    .section-title {
        font-size: 1.8rem;
    }
    .group-title, .performer-title {
        font-size: 1.6rem;
    }
    .modal {
        padding: 1rem;
    }
}

