/* Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Body loading durumunda scroll kilitleme düzeltildi */
body.loading {
    overflow: hidden;
}

.konteyner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Yükleme Ekranı */
.yukleyici {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c1810, #8b4513);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.tiyatro-perdesi {
    position: relative;
    width: 200px;
    height: 150px;
    margin-bottom: 2rem;
}

.perde-sol, .perde-sag {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, #8b0000, #dc143c);
    border-radius: 0 0 20px 20px;
}

.perde-sol {
    left: 0;
    animation: perdeAcilmaSol 2s ease-in-out infinite alternate;
}

.perde-sag {
    right: 0;
    animation: perdeAcilmaSag 2s ease-in-out infinite alternate;
}

@keyframes perdeAcilmaSol {
    0% { transform: translateX(0); }
    100% { transform: translateX(-20px); }
}

@keyframes perdeAcilmaSag {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

.yukleme-metni {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    animation: parlama 1.5s ease-in-out infinite alternate;
}

@keyframes parlama {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Başlık - Header düzeltmeleri */
.baslik {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.baslik.scrolled {
    background: rgba(44, 24, 16, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
}

.nav-kapsayici {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 60px; /* Sabit yükseklik */
}

/* Logo düzeltmeleri */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    min-width: fit-content;
}

.logo i {
    font-size: 2rem;
    animation: logoHareket 3s ease-in-out infinite;
}

@keyframes logoHareket {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

/* Navigasyon menü hizalaması düzeltildi */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: #ffd700;
}


.mobil-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobil-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Ana Banner - Slider içerik ortalama düzeltmeleri */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.aktif {
    opacity: 1;
}

.slide-arka-plan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-arka-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.8), rgba(139, 69, 19, 0.6));
}

.varsayilan-arkaplan {
    background: linear-gradient(135deg, #2c1810, #8b4513),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="theater" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="30" fill="rgba(255,215,0,0.1)"/><rect x="20" y="20" width="60" height="40" fill="rgba(255,215,0,0.05)" rx="5"/><path d="M30,70 Q50,60 70,70" stroke="rgba(255,215,0,0.1)" stroke-width="2" fill="none"/></pattern></defs><rect width="1200" height="800" fill="url(%23theater)"/></svg>');
    background-size: cover, 200px 200px;
    background-position: center, center;
    background-repeat: no-repeat, repeat;
}

/* Slider içerik ortalama - düzeltildi */
.slide-icerik {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.slide-baslik {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: slideInUp 1s ease-out;
    line-height: 1.2;
}

.slide-aciklama {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
    max-width: 600px;
    line-height: 1.6;
}

.cta-butonlari {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-ana {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #2c1810;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-ana:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-ikincil {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-ikincil:hover {
    background: white;
    color: #2c1810;
    transform: translateY(-3px);
}

.btn-detay {
    background: linear-gradient(45deg, #8b4513, #a0522d);
    color: white;
}

.btn-detay:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(160, 82, 45, 0.4);
}

.btn-kucuk {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    display: block;
}

/* Slider Kontrolleri */
.slider-kontrolleri {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-oku {
    background: rgba(255, 215, 0, 0.8);
    border: none;
    color: #2c1810;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-oku:hover {
    background: #ffd700;
    transform: scale(1.1);
}

.slider-noktalar {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.nokta {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.nokta.aktif {
    background: #ffd700;
    transform: scale(1.2);
}

/* Animasyonlar */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bölüm Stilleri */
section {
    padding: 5rem 0;
    position: relative;
}

.bolum-baslik {
    text-align: center;
    margin-bottom: 3rem;
}

.bolum-baslik h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
    position: relative;
}

.baslik-cizgisi {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.bolum-baslik p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.bolum-alt {
    text-align: center;
    margin-top: 3rem;
}

/* Hakkımızda Bölümü */
.hakkimizda-bolumu {
    background: #f8f9fa;
}

.hakkimizda-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.icerik-sol h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.icerik-sol p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.ozellikler {
    display: grid;
    gap: 1.5rem;
}

.ozellik {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ozellik i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.ozellik h4 {
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.ozellik p {
    color: #666;
    margin: 0;
}

.icerik-sag {
    position: relative;
}

.hakkimizda-resim {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.varsayilan-resim {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2c1810, #8b4513);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.varsayilan-resim::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="2"/><path d="M20,50 Q50,20 80,50 Q50,80 20,50" fill="rgba(255,215,0,0.05)"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
    top: -50%;
    left: -50%;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

/* Oyunlar Bölümü */
.oyunlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.oyun-karti {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.oyun-karti:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.oyun-resim {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.oyun-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.oyun-karti:hover .oyun-resim img {
    transform: scale(1.1);
}

.varsayilan-oyun-resim {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c1810, #8b4513);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.varsayilan-oyun-resim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="none" width="400" height="300"/><g opacity="0.1"><circle cx="100" cy="80" r="30" fill="%23ffd700"/><circle cx="300" cy="80" r="30" fill="%23ffd700"/><path d="M50,150 Q200,120 350,150 Q200,180 50,150" fill="%23ffd700"/><rect x="150" y="200" width="100" height="60" rx="10" fill="%23ffd700"/></g></svg>');
    background-size: cover;
    background-position: center;
}

.oyun-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.oyun-karti:hover .oyun-overlay {
    opacity: 1;
}

.detay-btn {
    background: #ffd700;
    color: #2c1810;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detay-btn:hover {
    transform: scale(1.05);
}

.oyun-bilgi {
    padding: 1.5rem;
}

.oyun-bilgi h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.oyun-kategori {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.oyun-aciklama {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.oyun-detaylar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detay-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.detay-item i {
    color: #8b4513;
    width: 16px;
}

/* Etkinlikler Bölümü */
.etkinlikler-bolumu {
    background: #f8f9fa;
}

.etkinlikler-listesi {
    display: grid;
    gap: 1.5rem;
}

.etkinlik-karti {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.etkinlik-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.etkinlik-tarih {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #2c1810;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
}

.etkinlik-tarih .gun {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.etkinlik-tarih .ay {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.etkinlik-icerik h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.etkinlik-aciklama {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.etkinlik-bilgiler {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.etkinlik-bilgiler span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #555;
}

.etkinlik-bilgiler i {
    color: #8b4513;
}

.ucretsiz {
    color: #28a745 !important;
    font-weight: 600;
}

.fiyat {
    color: #dc3545 !important;
    font-weight: 600;
}

/* Galeri Bölümü */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.galeri-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.galeri-item:hover {
    transform: scale(1.05);
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeri-item:hover img {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
    padding: 1rem;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

.galeri-overlay i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.galeri-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.kategori-tag {
    background: rgba(255, 215, 0, 0.8);
    color: #2c1810;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* İletişim Bölümü */
.iletisim-bolumu {
    background: #f8f9fa;
}

.iletisim-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.iletisim-bilgileri h3,
.iletisim-formu h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c1810;
    margin-bottom: 2rem;
}

.iletisim-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.iletisim-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.iletisim-item h4 {
    color: #2c1810;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.iletisim-item p {
    color: #666;
    margin: 0;
}

.iletisim-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.iletisim-item a:hover {
    color: #ffd700;
}

.sosyal-medya h4 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sosyal-linkler {
    display: flex;
    gap: 1rem;
}

.sosyal-linkler a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #2c1810;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.sosyal-linkler a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Form Stilleri */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-grup {
    margin-bottom: 1.5rem;
}

.form-grup label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c1810;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-grup label.required::after {
    content: '*';
    color: #dc3545;
}

.form-grup input,
.form-grup textarea,
.form-grup select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-grup input:focus,
.form-grup textarea:focus,
.form-grup select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-grup textarea {
    resize: vertical;
    min-height: 120px;
}

.form-help {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
}

.form-gizlilik {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Alt Bilgi - Footer düzeltmeleri ve logo eklenmesi */
.alt-bilgi {
    background: #2c1810;
    color: white;
    padding: 3rem 0 1rem;
}

.alt-bilgi-icerik {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.alt-bilgi-sol {
    display: flex;
    flex-direction: column;
}

/* Footer Logo - Kare tasarım */
.alt-bilgi .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.alt-bilgi .logo:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.alt-bilgi .logo i {
    font-size: 2.5rem;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.alt-bilgi .logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.alt-bilgi-sol p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.copyright-mobile {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.alt-bilgi h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.alt-bilgi ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alt-bilgi ul li {
    margin-bottom: 0.8rem;
}

.alt-bilgi ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alt-bilgi ul a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.alt-bilgi-sag address {
    font-style: normal;
}

.alt-bilgi-sag p {
    color: #ccc;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.alt-bilgi-sag i {
    color: #ffd700;
    width: 18px;
    text-align: center;
}

.alt-bilgi-sag a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alt-bilgi-sag a:hover {
    color: #ffd700;
}

.alt-bilgi-alt {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
}

.developer-info a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-info a:hover {
    color: #ffd700;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-icerik {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideInUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-kapat {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-kapat:hover {
    color: #000;
    background: #f0f0f0;
}

/* Resim Modal */
.resim-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-resim {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    animation: slideInUp 0.3s ease;
}

.resim-baslik {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: white;
    padding: 1rem 0;
    font-size: 1.2rem;
}

.resim-kontroller {
    text-align: center;
    margin-top: 1rem;
}

/* Boş İçerik - Bos durumları için iyileştirilmiş stiller */
.bos-icerik {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bos-icerik i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.bos-icerik h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    font-family: 'Playfair Display', serif;
}

.bos-icerik p {
    font-size: 1.1rem;
    color: #777;
    max-width: 400px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Placeholder resimler için stiller */
.slide-arka-plan[style*="placeholder"], 
.slide-arka-plan:not([style*="http"]):not([style*="uploads/"]) {
    background: linear-gradient(135deg, 
        rgba(44, 24, 16, 0.9), 
        rgba(139, 69, 19, 0.8), 
        rgba(255, 215, 0, 0.1)
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f4f4f4" width="1200" height="600"/><g transform="translate(600,300)"><circle r="100" fill="none" stroke="%23ddd" stroke-width="3"/><path d="M-70,-20 Q0,-60 70,-20 Q0,20 -70,-20" fill="%23e0e0e0"/><circle cx="-30" cy="-10" r="8" fill="%23ccc"/><circle cx="30" cy="-10" r="8" fill="%23ccc"/><path d="M-40,20 Q0,40 40,20" stroke="%23ccc" stroke-width="3" fill="none"/></g><text x="600" y="500" text-anchor="middle" font-family="Arial" font-size="24" fill="%23999">Tiyatro Sahne Sanatları</text></svg>') !important;
    background-size: cover;
    animation: slideBackground 15s ease-in-out infinite;
}

@keyframes slideBackground {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Loading state için resimler */
img {
    transition: opacity 0.3s ease;
}

img[src*="placeholder"] {
    opacity: 0.7;
    filter: blur(0.5px);
}

/* Progress bar stili (resim yüklenirken) */
.image-loading {
    position: relative;
    overflow: hidden;
}

.image-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scroll animasyonları */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* JS yüklenmezse bölümler gizli kalmasın */
.no-js .animate-on-scroll,
.animate-on-scroll:not(.js-ready) {
    opacity: 1;
    transform: translateY(0);
}

/* Hero sonrası bölümler için margin */
.hakkimizda-bolumu {
    margin-top: 0;
    padding-top: 6rem;
    background: #f8f9fa;
    z-index: 1;
    position: relative;
}

.oyunlar-bolumu {
    background: white;
    z-index: 1;
    position: relative;
}

.etkinlikler-bolumu {
    background: #f8f9fa;
    z-index: 1;
    position: relative;
}

.galeri-bolumu {
    background: white;
    z-index: 1;
    position: relative;
}

.iletisim-bolumu {
    background: #f8f9fa;
    z-index: 1;
    position: relative;
}

/* Yükleme Tamamlandı */
.yukleyici.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Navbar scrolled durumu */
.baslik.scrolled .logo {
    font-size: 1.6rem;
}

.baslik.scrolled .nav-menu a {
    padding: 0.6rem 0;
}

/* Hover efektleri */
.oyun-karti,
.etkinlik-karti,
.galeri-item {
    will-change: transform;
}

.oyun-karti:hover .varsayilan-oyun-resim i {
    transform: rotate(360deg);
    transition: transform 0.8s ease;
}

/* Form validasyon stilleri */
.form-grup input.error,
.form-grup textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-grup input.success,
.form-grup textarea.success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.success-message {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Bildiri container */
#bildirim-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
    max-width: 400px;
}

.bildirim {
    background: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007bff;
    animation: slideInRight 0.3s ease;
    position: relative;
}

.bildirim.basarili {
    border-left-color: #28a745;
    background: #f8fff9;
}

.bildirim.hata {
    border-left-color: #dc3545;
    background: #fff8f8;
}

.bildirim.uyari {
    border-left-color: #ffc107;
    background: #fffdf5;
}

.bildirim.bilgi {
    border-left-color: #17a2b8;
    background: #f8ffff;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Accessibility iyileştirmeleri */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ffd700;
    color: #2c1810;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 100000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
.btn:focus,
.nav-menu a:focus,
.oyun-karti:focus,
.galeri-item:focus,
.form-grup input:focus,
.form-grup textarea:focus {
    outline: 3px solid rgba(255, 215, 0, 0.6);
    outline-offset: 2px;
}

/* Screen reader announcements */
#screen-reader-announcements {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Utility classes */
.d-none {
    display: none !important;
}

.d-md-none {
    display: none !important;
}

.d-lg-none {
    display: none !important;
}

.d-md-block {
    display: block !important;
}

.d-lg-inline {
    display: inline !important;
}

.text-center {
    text-align: center !important;
}

/* Responsif Tasarım */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .slide-baslik {
        font-size: 3rem;
    }
    
    .hakkimizda-icerik,
    .iletisim-icerik {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .alt-bilgi-icerik {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .alt-bilgi-alt {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .oyunlar-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .konteyner {
        padding: 0 1rem;
    }
    
    .nav-kapsayici {
        padding: 0 1rem;
        height: auto;
        min-height: 60px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(44, 24, 16, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .nav-menu.aktif {
        display: flex;
    }
    
    .mobil-menu-toggle {
        display: flex;
    }
    
    .mobil-menu-toggle.aktif span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobil-menu-toggle.aktif span:nth-child(2) {
        opacity: 0;
    }
    
    .mobil-menu-toggle.aktif span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .d-md-none {
        display: block !important;
    }
    
    .d-md-block {
        display: none !important;
    }
    
    .slide-baslik {
        font-size: 2.5rem;
    }
    
    .slide-aciklama {
        font-size: 1.2rem;
    }
    
    .cta-butonlari {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .oyunlar-grid {
        grid-template-columns: 1fr;
    }
    
    .etkinlik-karti {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .etkinlik-tarih {
        margin: 0 auto;
        width: fit-content;
    }
    
    .etkinlik-bilgiler {
        justify-content: center;
    }
    
    .galeri-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .slider-kontrolleri {
        padding: 0 1rem;
    }
    
    .slider-oku {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .bolum-baslik h2 {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .hakkimizda-bolumu {
        padding-top: 5rem;
    }
    
    #bildirim-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .slide-baslik {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .slide-aciklama {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .modal-icerik {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .modal-resim {
        width: 95%;
    }
    
    .resim-baslik {
        width: 95%;
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo i {
        font-size: 1.6rem;
    }
    
    .alt-bilgi .logo {
        padding: 0.8rem;
    }
    
    .alt-bilgi .logo i {
        font-size: 2rem;
        padding: 0.6rem;
    }
    
    .alt-bilgi .logo span {
        font-size: 1.1rem;
    }
    
    .d-lg-none {
        display: none !important;
    }
    
    .d-lg-inline {
        display: none !important;
    }
}

/* Print stilleri */
@media print {
    .yukleyici,
    .baslik,
    .btn,
    .modal,
    .slider-kontrolleri,
    .slider-noktalar,
    .mobil-menu-toggle,
    #bildirim-container {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
    }
    
    .hero {
        height: auto !important;
        padding: 2rem 0;
    }
    
    .slide-icerik {
        color: black !important;
    }
    
    .bolum-baslik h2 {
        color: black !important;
    }
    
    .alt-bilgi {
        background: white !important;
        color: black !important;
        border-top: 1px solid #ccc !important;
    }
}