/* GENEL RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #222;
    background: #f5f5f5;
    transition: background 1s ease;
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* GENEL YAPI */
section {
    position: relative;
    padding: 100px 20px;
    min-height: 80vh;
    z-index: 2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* SABİT GLASS HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    padding: 8px 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-weight: 600;
    font-size: 17px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
}

.nav a {
    position: relative;
    padding-bottom: 3px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ff0066;
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-phone {
    font-weight: 600;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.8);
}

/* MOBİL HEADER BASİT */
@media (max-width: 900px) {
    .nav {
        display: none;
    }
    .header {
        padding: 8px 16px;
    }
}

/* ARKA PLAN BLOBLARI */
/* ARKA PLAN BLOBLARI */
.bg-blob,
.bg-blob2 {
    position: fixed;
    border-radius: 45%;
    filter: blur(70px);
    z-index: -2; /* ESKİSİ: 0. YENİSİ: -2 (En arka katman) */
    opacity: 0.95;
    pointer-events: none;
    transition: background 1s ease, transform 1s ease, opacity 1s ease;
}

/* Pozisyon */
.bg-blob {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -120px;
}
.bg-blob2 {
    width: 700px;
    height: 700px;
    bottom: -220px;
    right: -160px;
}

/* Varsayılan tema */
body.theme-default .bg-blob {
    background: radial-gradient(circle, rgba(255,0,102,0.35), rgba(255,0,102,0));
}
body.theme-default .bg-blob2 {
    background: radial-gradient(circle, rgba(0,153,255,0.28), rgba(0,153,255,0));
}

/* Müzik teması */
body.theme-muzik .bg-blob {
    background: radial-gradient(circle, rgba(195,0,255,0.4), rgba(195,0,255,0));
}
body.theme-muzik .bg-blob2 {
    background: radial-gradient(circle, rgba(0,204,255,0.35), rgba(0,204,255,0));
}

/* Dans teması */
body.theme-dans .bg-blob {
    background: radial-gradient(circle, rgba(255,140,0,0.4), rgba(255,140,0,0));
}
body.theme-dans .bg-blob2 {
    background: radial-gradient(circle, rgba(255,20,147,0.32), rgba(255,20,147,0));
}

/* Resim teması */
body.theme-resim .bg-blob {
    background: radial-gradient(circle, rgba(70,130,180,0.4), rgba(70,130,180,0));
}
body.theme-resim .bg-blob2 {
    background: radial-gradient(circle, rgba(255,215,0,0.35), rgba(255,215,0,0));
}

/* Tiyatro teması */
body.theme-tiyatro .bg-blob {
    background: radial-gradient(circle, rgba(75,0,130,0.5), rgba(75,0,130,0));
}
body.theme-tiyatro .bg-blob2 {
    background: radial-gradient(circle, rgba(139,0,0,0.35), rgba(139,0,0,0));
}

/* SANATSAL DEKOR KATLARI */
.decor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
}

/* Müzik notaları */
.decor-muzik .note {
    position: absolute;
    font-size: 26px;
    color: rgba(0,0,0,0.18);
    animation: floatNote 6s linear infinite;
}

.decor-muzik .note:nth-child(1) { left: 15%; bottom: 10%; animation-delay: 0s;}
.decor-muzik .note:nth-child(2) { left: 35%; bottom: 15%; animation-delay: 1.5s;}
.decor-muzik .note:nth-child(3) { right: 20%; bottom: 12%; animation-delay: 3s;}
.decor-muzik .note:nth-child(4) { right: 35%; bottom: 5%; animation-delay: 4.5s;}

@keyframes floatNote {
    0%   { transform: translateY(0) scale(0.9); opacity: 0; }
    20%  { opacity: 0.6; }
    80%  { opacity: 0.2; }
    100% { transform: translateY(-120px) scale(1.1); opacity: 0; }
}

/* Resim: soyut fırça darbeleri */
.decor-resim .brush {
    position: absolute;
    border-radius: 999px;
    opacity: 0.18;
    filter: blur(1px);
    animation: brushMove 14s ease-in-out infinite;
}

.decor-resim .brush-1 {
    width: 280px;
    height: 80px;
    left: -40px;
    top: 25%;
    background: linear-gradient(90deg, #ff9a3b, #ffd54f);
}
.decor-resim .brush-2 {
    width: 260px;
    height: 70px;
    right: -60px;
    bottom: 18%;
    background: linear-gradient(90deg, #5b8def, #b388ff);
    animation-delay: 4s;
}

@keyframes brushMove {
    0%   { transform: translateX(0) rotate(-6deg); }
    50%  { transform: translateX(40px) rotate(2deg); }
    100% { transform: translateX(0) rotate(-6deg); }
}

/* Dans: tüy/ışık partikülleri */
.decor-dans .particle {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0));
    opacity: 0.6;
    animation: floatParticle 9s ease-in-out infinite;
}

.decor-dans .particle:nth-child(1) { left: 15%; bottom: 5%; animation-delay: 0s;}
.decor-dans .particle:nth-child(2) { left: 40%; bottom: 10%; animation-delay: 2s;}
.decor-dans .particle:nth-child(3) { right: 25%; bottom: 7%; animation-delay: 4s;}
.decor-dans .particle:nth-child(4) { right: 10%; bottom: 3%; animation-delay: 6s;}

@keyframes floatParticle {
    0%   { transform: translate(0,0) scale(0.9); opacity: 0.5; }
    50%  { transform: translate(-20px,-80px) scale(1.1); opacity: 0.9; }
    100% { transform: translate(10px,-150px) scale(0.8); opacity: 0; }
}

/* Tiyatro: spot ışığı + sis */
.decor-tiyatro .spot {
    position: absolute;
    top: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle at top, rgba(255,255,255,0.72), rgba(255,255,255,0) 70%);
    opacity: 0.25;
    mix-blend-mode: screen;
    animation: spotMove 14s ease-in-out infinite;
}
.decor-tiyatro .spot-left {
    left: -5%;
    transform: rotate(18deg);
}
.decor-tiyatro .spot-right {
    right: -5%;
    transform: rotate(-18deg);
    animation-delay: 4s;
}
.decor-tiyatro .mist {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: radial-gradient(circle at bottom, rgba(255,255,255,0.3), rgba(255,255,255,0));
    opacity: 0.35;
}

@keyframes spotMove {
    0%   { transform: translateX(0) rotate(18deg); }
    50%  { transform: translateX(20px) rotate(14deg); }
    100% { transform: translateX(0) rotate(18deg); }
}

/* TEMA-AKTİF DURUMLARI */
body.theme-muzik .decor-muzik { opacity: 1; }
body.theme-resim .decor-resim { opacity: 1; }
body.theme-dans .decor-dans   { opacity: 1; }
body.theme-tiyatro .decor-tiyatro { opacity: 1; }

/* HERO */
#hero {
    padding-top: 140px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
/* HERO BÖLÜMÜ - ANIMASYON İÇİN DÜZELTME */

.hero-inner {
    /* ... diğer stiller ... */
    min-height: 500px; /* İçeriğin kaymasını engeller */
    align-items: center; 
    /* ... diğer stiller ... */
}

/* Sağ sütun (Animasyon) - YÜKSEKLİK VE ORTALAMA AYARLARI */
.hero-right {
    flex: 1 1 320px; 
    
    /* Bu, div'in boş kalsa bile belirli bir alana yayılmasını sağlar */
    height: 100%; 
    min-height: 480px; /* Görseldeki genişliği zorlar */
    
    display: flex;
    justify-content: center; /* Animasyonu ortalar */
    align-items: center; 
    
    flex-grow: 1.5; 
}

/* Animasyon Kapsayıcısı - Yüksekliği Doldurmasını Sağla */
#sanatAnimasyonu {
    width: 100%;
    max-width: 600px; 
    height: 100%;
    max-height: 550px; 
}


/* Animasyon Kapsayıcısı */
#sanatAnimasyonu {
    width: 100%;
    max-width: 600px; /* Yeterli büyüklük */
    height: 100%;
    max-height: 550px; 
}
/* Animasyon Ana Kapsayıcısı - style.css'e ekle */
#animasyon-ana-kapsayici {
    width: 100%;
    max-width: 600px; /* Maksimum genişliği koru */
    height: 100%;
    max-height: 550px; /* Maksimum yüksekliği koru */
    
    /* Bu, kapsayıcının Hero alanını doldurmasını sağlar */
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Mobil cihazlar için */
@media (max-width: 768px) {
    .hero-right {
        order: -1; /* Mobil'de animasyonu metnin üstüne taşıyabiliriz (isteğe bağlı) */
        min-height: 300px;
    }
}


.hero-inner {
    display: flex;
    /* ... diğer stiller ... */
    gap: 60px; /* Boşluğu artırdık (örneğin 40px yerine 60px) */
}

.hero-left {
    flex: 1 1 320px;
}

.hero-logo-big {
    width: 220px;
    height: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.8));
}

.hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 14px;
}
.hero-title span {
    color: #ff0066;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 22px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #ff0066, #ff7b00);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.btn-outline {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.8);
    cursor: pointer;
}

.hero-right {
    flex: 1 1 320px;
    font-size: 14px;
    opacity: 0.9;
}

/* GENEL BÖLÜM BAŞLIKLARI */
/* GENEL BÖLÜM BAŞLIKLARI - DÜZELTİLMİŞ */
.section-title {
    font-size: 28px;
    /* ESKİSİ: margin-bottom: 10px; */
    margin-bottom: 5px; /* Daha az boşluk */
}
.section-subtitle {
    font-size: 15px;
    opacity: 0.7;
    /* ESKİSİ: margin-bottom: 28px; */
    margin-bottom: 15px; /* Daha az boşluk */
}

/* KURSLARIMIZ */
#kurslar {
    padding-top: 120px;
}

.kurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.kurs-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 18px 18px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kurs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.kurs-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.tagline {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.kurs-card ul {
    list-style: none;
    font-size: 14px;
}
.kurs-card ul li::before {
    content: "• ";
    color: #ff0066;
}

/* AKADEMİ HAZIRLIK */
#akademi {
    padding-top: 120px;
}

/* AKADEMİ HAZIRLIK - Grid Oranı Düzeltmesi */
.two-column {
    display: grid;
    /* ESKİSİ: 1.4fr 1fr idi. YENİSİ: 1fr 1.2fr yapıyoruz. */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); 
    gap: 30px;
    align-items: start;
}
.two-column p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* AKADEMİ HAZIRLIK KUTUCUĞU - Genişlik Düzeltmesi */
.akademi-box {
    background: rgba(255,255,255,0.96);
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    font-size: 16px;
    
    width: 100%;
    /* ESKİSİ: 380px idi. YENİSİ: 450px yapalım. */
    max-width: 500px; 
    margin-left: auto; 
}
/* ... diğer stiller ... */

.akademi-box ul {
    margin-top: 8px;
    padding-left: 18px;
    list-style-position: inside; /* Mermi işaretlerinin kutu içinde kalmasını sağlar */
}

/* KURSLARIMIZDAN KARELER */
#kurs-galeri {
    padding-top: 120px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    background: #ddd;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.small-gallery-link {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}
.small-gallery-link a {
    color: #ff0066;
}

/* ETKİNLİKLER */
#etkinlikler {
    padding-top: 120px;
}
/* Etkinlik kartının temel stili */
/* ETKİNLİKLER - YATAY ÜÇLÜ KART VE GÖRSEL YERLEŞİMİ */

.event-list {
    display: grid;
    /* 3 kartı yan yana sığdırmak için grid kullanıyoruz */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 20px; 
    margin-top: 25px;
}

.event-card {
    background: rgba(255,255,255,0.96);
    /* İçerik için üstte boşluk bırakmıyoruz, padding content'e verildi */
    padding: 0; 
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    overflow: hidden; /* Görsel taşmasını engelle */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%; /* Kartların eşit yüksekliğe sahip olmasına yardımcı olur */
    display: flex;
    flex-direction: column;
}

/* Afiş görselini içeren kısım */
/* Afiş görselini içeren kısım - YÜKSEKLİK ARTTIRILDI */
.event-poster {
    width: 100%; 
    height: 300px; /* ESKİSİ: 180px veya farklı bir değerdi. Bunu 200px yapalım. */
    overflow: hidden;
    flex-shrink: 0; 
}

/* Afiş görselinin kendisi */
.event-poster img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
}

/* Tarih ve Başlığın bulunduğu metin içeriği */
.event-content {
    padding: 16px 18px; /* Metinlere iç boşluk veriyoruz */
    flex-grow: 1; /* Kalan dikey alanı kapla */
}

/* Etkinlik tarih ve başlığı stilleri */
.event-date {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 4px;
}

.event-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* HAKKIMIZDA */
/* --- HAKKIMIZDA BÖLÜMÜ ÖZEL STİLLERİ --- */

/* Başlık ve Görsel Yerleşimi için Grid */
.about-header-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); /* Metin solda, resimler sağda */
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

/* Ana Başlık Stili */
.main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.main-title-part1 {
    color: #222;
}

.main-title-part2 {
    color: #008080; /* Yeşil/Turkuaz Vurgu Rengi */
    border-bottom: 3px solid #008080;
    padding-bottom: 5px;
}

/* Metin Paragrafları */
.about-lead-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-detail-text {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}


/* --- GÖRSEL KOLAJ STİLİ --- */
.about-image-collage {
    position: relative;
    height: 450px; /* Görsel alanının genel yüksekliği */
}

.img-box {
    position: absolute;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sol alt büyük resim */
/* --- GÖRSEL KOLAJ STİLİ --- */
/* ... diğer stiller ... */

/* Sol alt büyük resim (Gitar) - DÜZELTİLMİŞ */
.bottom-left-img {
    width: 60%;
    height: 65%;
    left: 0;
    /* ESKİSİ: bottom: 0; */
    top: 25%; /* YENİ: Bu değeri deneyelim. Gerekirse yukarı çekmek için düşürün (örn: 20%, 15%) */
    /* Veya daha da yukarı çekmek isterseniz: top: 15%; gibi */
}

/* ... diğer stiller ... */

/* Sağ üst küçük resim */
.top-right-img {
    width: 40%;
    height: 45%;
    top: 0;
    right: 0;
}

/* Sağ alt resim (Dikey) */
.bottom-right-img {
    width: 35%;
    height: 55%;
    bottom: 0;
    right: 5%;
}


/* --- MİSYON VİZYON KUTUCUKLARI --- */
.about-mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.mv-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}


}

.mv-icon-wrapper i {
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 0, 102, 0.1);
}

.mv-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mv-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

/* RESPONSIVE DÜZENLEME */
@media (max-width: 900px) {
    .about-header-grid {
        grid-template-columns: 1fr; /* Mobil'de alt alta */
        gap: 20px;
    }
    .about-image-collage {
        height: 350px; /* Mobil'de görsel kolajı küçült */
    }
    .about-mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 28px;
    }
}

/* İLETİŞİM */
/* İLETİŞİM BÖLÜMÜ İÇİN YENİ STİLLER (style.css'e ekle) */
/* Sadece İletişim Bölümündeki (id="iletisim") Başlık Boşluklarını Sıfırla */
.contact-map-wrapper {
    /* Haritanın kare olmasını sağlamak için bir yükseklik veriyoruz */
    height: 350px; 
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-map-wrapper iframe {
    border: none !important;
}

/* contact-info stiline başlık eklendi */
.contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff0066; /* Tema renginiz */
}

/* contact-form ile ilgili tüm kuralları kaldırabilirsiniz, örneğin: */
/*
.contact-form {
    display: none; 
}
*/

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 26px;
}

.contact-info {
    font-size: 14px;
    line-height: 1.7;
}
.contact-info p span {
    font-weight: 600;
}
/* İLETİŞİM BÖLÜMÜ - Paragraf Altı Boşluk Düzeltmesi */
.contact-info p {
    /* İletişim altındaki tüm paragrafları hedef alıyor */
    margin-bottom: 10px; 
}

/* En alttaki paragrafı hedef alarak alt boşluğu kaldırabiliriz */
.contact-info p:last-child {
    margin-bottom: 0; /* En alttaki paragrafın altındaki boşluğu kaldır */
}
.contact-form {
    background: rgba(255,255,255,0.98);
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    font-size: 14px;
}
.contact-form label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    font-family: inherit;
}
.contact-form button {
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #ff0066, #ff7b00);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    section {
        padding: 90px 16px;
    }
    #hero {
        padding-top: 120px;
    }
}
/* ================================
   UÇUŞAN NOTALAR - PROFESYONEL EFEKT
   ================================ */

.decor-muzik {
    opacity: 1 !important;
    z-index: -1; /* ESKİSİ: 10. YENİSİ: -1 */
}
.decor-muzik .note {
    position: absolute;
    font-size: 48px;              /* daha büyük görünüm */
    color: rgba(255, 0, 120, 0.45); /* pembe yumuşak bir görünüm */
    animation: flyNote 10s linear infinite;
    pointer-events: none;
    user-select: none;
}

/* başlangıç konumları */


/* yukarı doğru uçma animasyonu */
@keyframes flyNote {
    0%   { transform: translateY(0) rotate(0deg);   opacity: 0.8; }
    50%  { transform: translateY(-120px) rotate(10deg); opacity: 0.9; }
    100% { transform: translateY(-240px) rotate(-15deg); opacity: 0; }
}
/* ================================
   RESİM TEMASI – Fırça darbeleri
   ================================ */

.decor-resim {
    opacity: 1;
    z-index: -1; /* ESKİSİ: 10. YENİSİ: -1 */
}

.decor-resim .brush {
    position: absolute;
    font-size: 54px;
    animation: floatBrush 13s linear infinite;
    opacity: 0.6;
}



@keyframes floatBrush {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    50%  { transform: translateY(-150px) rotate(12deg); opacity: 1; }
    100% { transform: translateY(-300px) rotate(-10deg); opacity: 0; }
}
/* ================================
   TİYATRO TEMASI – Maske animasyonu
   ================================ */

.decor-tiyatro {
    opacity: 1;
    z-index: -1; /* ESKİSİ: 10. YENİSİ: -1 */
}

.decor-tiyatro .mask {
    position: absolute;
    font-size: 60px;
    color: rgba(255, 215, 0, 0.55); /* altın sarısı */
    animation: floatMask 12s ease-in-out infinite;
}


@keyframes floatMask {
    0%   { transform: translateY(0) rotate(-5deg); opacity: 0.8; }
    50%  { transform: translateY(-120px) rotate(8deg); opacity: 1; }
    100% { transform: translateY(-260px) rotate(-10deg); opacity: 0; }
}
/* ================================
   DANS TEMASI – Babet uçuşma
   ================================ */

.decor-dans {
    opacity: 1;
    z-index: -1; /* ESKİSİ: 10. YENİSİ: -1 */
}

/* ================================
  DANS TEMASI – Babet uçuşma (DÜZELTİLMİŞ)
  ================================ */

.decor-dans .dance {
    position: absolute;
    font-size: 50px;
    
    /* YENİ: Rengi daha soluk bir gri tonuna çevirelim veya şeffaflığı azaltalım */
    color: rgba(100, 100, 100, 0.15); /* Çok açık, yumuşak gri tonu (rgba(R,G,B,A)) */
    
    animation: floatDance 11s ease-in-out infinite;
    
    /* ESKİ Opacity: 0.7 idi. Bunu daha da düşürüp animasyonda kontrol edeceğiz. */
    opacity: 0; /* Başlangıç opaklığını animasyon kontrol etsin diye 0 yaptık */
}


@keyframes floatDance {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.2; } /* Başlangıçta çok soluk */
    50% { transform: translateY(-140px) rotate(12deg); opacity: 0.3; } /* Zirvede hafif görünüyor */
    100% { transform: translateY(-280px) rotate(-10deg); opacity: 0; }
}



@keyframes floatDance {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50%  { transform: translateY(-140px) rotate(12deg); opacity: 1; }
    100% { transform: translateY(-280px) rotate(-10deg); opacity: 0; }
}
/* ==================================================
   TÜM EKRANA DAĞILAN SANAT EFEKTLERİ
   ================================================== */

.decor span {
    position: absolute;
    font-size: 48px;
    opacity: 0.7;
    animation: floatRandom 12s linear infinite;
}

/* Ekrana rastgele yerleştir */
.decor span {
    left: calc(100% * var(--x));
    top: calc(100% * var(--y));
}

/* Uçma animasyonu */
@keyframes floatRandom {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-150px) rotate(10deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-350px) rotate(-10deg);
        opacity: 0;
    }
}
/* ======================================
   TÜM UÇUŞAN SANAT İKONLARI – SOFT FADE
   ====================================== */

.decor span {
    opacity: 0.25; /* Başlangıçta yarı saydam */
    animation: floatRandom 12s linear infinite;
}

/* Yumuşak görünürlük artışı */
@keyframes floatRandom {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.50; /* daha soluk başlar */
    }
    25% {
        opacity: 0.25;
    }
    50% {
        transform: translateY(-150px) rotate(10deg);
        opacity: 0.50; /* zirvede görünürlük */
    }
    100% {
        transform: translateY(-350px) rotate(-10deg);
        opacity: 0; /* kaybolarak yok olur */
    }
}
/* -----------------------------------------
   GENEL GALERİ STİLLERİ
----------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.small-gallery-link {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}

.small-gallery-link a {
    color: #ff0066;
}

/* ------------------------------- */
/* MODAL (BÜYÜK FOTOĞRAF GÖSTERME) - GELİŞTİRİLMİŞ VERSİYON */
/* ------------------------------- */
.modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    overflow: hidden;
    /* Geliştirilmiş merkezleme için flexbox kullan */
    display: flex; 
    justify-content: center;
    align-items: center; 
}

.modal-content {
    display: block;
    /* Geliştirilmiş Boyutlandırma */
    max-width: 90%; 
    max-height: 90vh; 
    width: auto; /* Genişliği içeriğe göre ayarla */
    height: auto; /* Yüksekliği içeriğe göre ayarla */
    transition: 0.3s ease;
    object-fit: contain; 
}

/* Fotoğrafın alt yazısı */
#caption {
    margin: 10px auto;
    text-align: center;
    color: #fff;
    font-size: 20px;
    position: absolute; /* Butonlarla çakışmaması için */
    bottom: 20px;
}

/* Kapatma butonu */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* İleri ve geri butonları - YENİ VE ESTETİK STİL */
button.prev, button.next {
    position: absolute;
    top: 50%;
    color: #FFFFFF; /* Beyaz ok rengi */
    font-size: 30px;
    font-weight: bold;
    
    /* Arka plan şeffaf, kenarlık zarif */
    background-color: transparent; 
    border: 2px solid rgba(255, 255, 255, 0.5); /* Yarı saydam beyaz çerçeve */
    
    border-radius: 4px; /* Hafif köşeli kare buton */
    padding: 8px 15px; 
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease; /* Hover efekti için yumuşak geçiş */
    transform: translateY(-50%); /* Dikey merkezleme */
}

button.prev {
    left: 20px;
}

button.next {
    right: 20px;
}

/* Butonun üzerine gelindiğinde (Hover) stil */
button.prev:hover, button.next:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Hafif beyaz arka plan görünür */
    border-color: #FFFFFF; /* Tam beyaz çerçeve */
    transform: translateY(-50%) scale(1.05); /* Hafif büyüme efekti */
}


/* SOSYAL MEDYA İKONLARI STİLİ - YAN YANA HİZALAMA İÇİN DÜZELTİLDİ */
.social-links {
    display: flex;
    flex-direction: row; /* DÜZELTME: İkonları yan yana sıralar */
    align-items: center; /* İkonları dikeyde ortalar */
    flex-wrap: wrap; /* Gerekirse alt satıra geçmesini sağlar */
}

/* Başlık stili */
.social-links h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ff0066;
    width: 100%; /* Başlığın kendi başına bir satır kaplamasını sağlar */
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    margin-top: 5px; /* Başlık ile ikonlar arasına biraz boşluk ekler */
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-icon {
    font-size: 36px;
    /* Renkler olduğu gibi kalır */
}
/* ... fa-instagram-square renk kuralı devam eder ... */

/* FOOTER - Stil Düzeltmesi */
footer {
background-color: rgba(0, 0, 0, 0.6); 
    
    color: #FFFFFF; 
    text-align: center; 
    padding: 30px 0 20px; 
    font-size: 0.9rem;
    
    /* Gerekirse ekstra boşluk ekleyelim (ikinci adımda detaylı ayar) */
}

footer p {
    margin: 0; /* Tarayıcıların varsayılan paragraf marjinlerini kaldırır */
}