﻿h1 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.blok-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.blok-bilgi {
    background-color: #eaeaea;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    width: 80%;
    max-width: 500px;
}

.blok-adi {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.blok-yon {
    font-size: 16px;
    color: #666;
}

.koltuklar-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Koltuk stilleri */
.koltuk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 5px;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    font-size:10px;
}

.sira-etiketi {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 5px;
    background-color: #07366a;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    font-size: 10px;
}

/* Sahne veya ekran alanı */
.sahne {
    width: 80%;
    height: 40px;
    /*background-color: #007bff;*/
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Farklı yönler için container stilleri - bunlar artık kullanılmıyor, koltuk-sira içinde uyguluyoruz */
.koltuklar-sag, .koltuklar-sol, .koltuklar-orta {
    /* Bu sınıflar yalnızca üst element olarak seçici amaçlı kullanılıyor */
}

.koltuk-sira {
    display: flex;
    width: 100%;
}

/* Koltuk satırlarının hizalanması */
.koltuklar-sag .koltuk-sira {
    justify-content: flex-end;
}

.koltuklar-sol .koltuk-sira {
    justify-content: flex-start;
}

.koltuklar-orta .koltuk-sira {
    justify-content: center;
}

/* Koltuk hover efekti */
.koltuk:hover {
    transform: scale(1.1);
    background-color: #218838;
}

/* Koltuk bilgi baloncuğu */
.koltuk-bilgi {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: none;
    z-index: 10;
}

.koltuk:hover .koltuk-bilgi {
    display: block;
}

.koltuk.held {
    background-color: orange !important;
    cursor: not-allowed;

}

.layout-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 auto !important;
    max-width: 100% !important;
}
.btnResimliBiletAl {
    background-image: url('/assets/images/GalaButon.png');
    background-size: cover;
    background-position: center;
    z-index:-1;
}

@font-face {
    font-family: 'poppins-light';
    src: url('../fonts/poppins-light.ttf') format('truetype');
}

/* Mobilde resim boyutunu küçültme */
@media (max-width: 768px) {
    .btnBlokSec img {
        width: 100%; /* Resimlerin genişliğini %100 yaparak tam olarak sığmalarını sağlıyoruz */
        height: auto; /* Yüksekliği orantılı olarak ayarlıyoruz */
    }

    /* Mobilde kolu küçültme ve yan yana sıralama */
    .col-4 {
        flex: 0 0 33.33%; /* 3 eşit kolon yaparak resimleri yan yana yerleştiriyoruz */
    }
}

.gosteri-gorsel {
    max-height: 560px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* === BİLET ÖZETİ: Varsayılan (büyük ekranlar için) === */
/*.sticky-side-div {
    position: sticky;
    top: 20px;
    z-index: 10;*/ /* Gerekirse diğer öğelerin üstünde dursun */
/*}*/

    /* Kartın içeriği ekranı taşmasın, taşarsa scroll açılsın */
    /*.sticky-side-div .card {
        max-height: calc(100vh - 40px);*/ /* 40px kadar boşluk bırak */
        /*overflow-y: auto;
    }*/

/* === Küçük ekranlar (mobil + tablet) için düzeltme === */
/*@media (max-width: 1024) {
    .sticky-side-div {
        position: static !important;*/ /* Sticky özelliğini kapat */
        /*top: auto;
    }

        .sticky-side-div .card {
            max-height: none;
            overflow: visible;
        }
}*/