/* ============================================= */
/* TEMEL VE GENEL STİLLER - MAVİ/TURKUAZ PALET */
/* ============================================= */
:root {
    /* YENİ RENK PALETİ (PROFESYONEL VE SAKİN) */
    --first-color: #2c3e50;      /* Koyu Lacivert/Kurşun (Admin Butonu) */
    --second-color: #4DB6AC;     /* Canlı Turkuaz (Ana Vurgu, Butonlar) */
    --third-color: #81C784;      /* Yumuşak Yeşil (İkonlar) */
    --fourth-color: #B2DFDB;     /* Çok Açık Turkuaz/Mint (Etiket) */

    /* Sabit Renkler */
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
    --card-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --primary-color: var(--first-color); /* Ana renk olarak atandı */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #fff;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Header & Navigasyon - Modernize Edildi */
.main-header {
    display: flex;
    justify-content: center; /* Menüyü ortala */
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap; /* MOBİL KAYMA DÜZELTMESİ - 1 */
    justify-content: center; /* MOBİL KAYMA DÜZELTMESİ - 2 */
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--second-color); /* YENİ PALET */
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--second-color); /* YENİ PALET */
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.admin-link {
    background-color: var(--first-color); /* YENİ PALET */
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3); /* YENİ PALET GÖLGE */
}
.admin-link:hover {
    background-color: #1a252f; /* YENİ PALET HOVER */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 62, 80, 0.4); /* YENİ PALET GÖLGE */
}
.admin-link::after { display: none; }

/* MOBİL KAYMA DÜZELTMESİ (Ekstra Dar Ekranlar İçin) */
@media (max-width: 768px) {
    .main-nav {
        gap: 1rem; /* Boşlukları azalt */
    }
    .nav-link {
        font-size: 0.85rem; /* Yazıyı küçült */
    }
    .admin-link {
        padding: 0.5rem 1rem;
    }
}


/* === MOBİL ORTALAMA DÜZELTMESİ === */
.content-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    flex-grow: 1;
    /* width: 100%; <-- Bu satır mobil kayma yaptığı için kaldırıldı */
    box-sizing: border-box;
}

/* Animasyonlar */
.fade-in { animation: fadeIn 0.6s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

/* Genel Buton Stili - Modernize Edildi */
.buton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: var(--second-color); /* YENİ PALET */
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(77, 182, 172, 0.2); /* YENİ PALET GÖLGE */
}
.buton:hover {
    background-color: #3aa398; /* YENİ PALET HOVER */
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(77, 182, 172, 0.3); /* YENİ PALET GÖLGE */
}
.buton.tam-genislik { width: 100%; }

/* Footer */
.main-footer {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #222;
    color: #aaa;
    margin-top: 4rem;
}

/* Ortak Kart Stili (Modern Card) */
.modern-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}
.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(0,0,0,0.0);
}

/* === DÜZELTME (Animasyon Yumuşatma 1) === */
.ikon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--ikon-renk, var(--second-color)); /* Varsayılan renk (YENİ PALET) */
    transition: all 0.4s ease-in-out; /* 'var(--transition)' yerine bu geldi */
}

/* İkon Animasyonları (Yüzme Efekti) - TÜM KARTLARA UYGULANDI */
.erisim-karti .ikon-wrapper,
.misyon-vizyon-karti .ikon-wrapper,
.uye-kayit-karti .ikon-wrapper {
    animation: float 3s ease-in-out infinite;
}

/* === DÜZELTME (Animasyon Yumuşatma 2) === */
.erisim-karti:hover .ikon-wrapper,
.misyon-vizyon-karti:hover .ikon-wrapper,
.uye-kayit-karti:hover .ikon-wrapper,
.login-container:hover .ikon-wrapper { /* Admin kilit ikonu eklendi */
    transform: scale(1.1) rotate(10deg); /* 15deg -> 10deg olarak değişti */
    background-color: var(--ikon-renk, var(--second-color)); /* YENİ PALET */
    color: white;
    animation: none; /* Hover sırasında yüzme animasyonunu durdur */
}


/* Çizgili Başlık (Ortalanmış) - GÜNCELLENDİ */
.cizgili-baslik {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cizgili-baslik h1,
.cizgili-baslik h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}
.cizgili-baslik h1::after,
.cizgili-baslik h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--second-color); /* YENİ PALET */
    margin: 1rem auto 0;
    border-radius: 2px;
}
.cizgili-baslik p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}


/* ============================================= */
/* ANA SAYFA (index.html) - MODERNİZE EDİLDİ */
/* ============================================= */
.welcome-section {
    padding: 4rem 0;
}
.welcome-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.banner-container {
    width: 100%;
    max-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 5rem;
    box-shadow: var(--hover-shadow);
}
.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hizli-erisim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}
.erisim-karti {
    text-align: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}
.erisim-karti h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
.erisim-karti p {
    color: var(--text-light);
}

/* Sosyal Medya Akış Bölümü */
.sosyal-medya-akisi {
    margin-bottom: 3rem;
}
.akis-placeholder {
    padding: 3rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-size: 1.2rem;
    color: var(--text-light);
}
.akis-placeholder i {
    color: #E1306C; /* Instagram Rengi */
    font-size: 2rem;
    margin-right: 1rem;
    vertical-align: middle;
}


/* ============================================= */
/* BİZ KİMİZ (biz-kimiz.html) - MODERNİZE EDİLDİ */
/* ============================================= */
.misyon-vizyon-grid {
    display: grid;
    /* === MOBİL ORTALAMA DÜZELTMESİ (Biz Kimiz) === */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 350px -> 300px */
    gap: 3rem;
    margin-top: 4rem;
}
.misyon-vizyon-karti {
    text-align: center;
    align-items: center;
    padding: 3rem 2.5rem;
}
.misyon-vizyon-karti h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
/* === DÜZELTME (Biz Kimiz Metin Ortalama) === */
.misyon-vizyon-karti p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center; /* Sola dayalı metin sorununu çözer */
}

/* ============================================= */
/* ETKİNLİKLER (etkinlikler.html) - MODERNİZE EDİLDİ */
/* ============================================= */
.etkinlik-grid-modern {
    display: grid;
    gap: 3rem;
}

.modern-etkinlik-karti {
    display: grid;
    grid-template-columns: 1.2fr 2fr; /* Görsel biraz daha dar */
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.modern-etkinlik-karti:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}
@media (max-width: 900px) {
    .modern-etkinlik-karti { grid-template-columns: 1fr; }
    .kart-gorsel-alani { height: 250px; }
}

.kart-gorsel-alani {
    position: relative;
    overflow: hidden;
}
.kart-gorsel-alani img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.modern-etkinlik-karti:hover .kart-gorsel-alani img {
    transform: scale(1.05);
}
.tarih-kutusu {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--text-dark);
    font-weight: bold;
    line-height: 1.2;
}
.tarih-kutusu .gun { font-size: 1.8rem; display: block; color: var(--second-color); } /* YENİ PALET */
.tarih-kutusu .ay { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.kart-icerik-alani {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}
.kart-header { margin-bottom: 1rem; }

/* DÜZELTME 1: Etkinlik etiketi (YENİ PALET) */
.kategori-etiketi {
    display: inline-flex; /* i ile hizalamak için */
    align-items: center;
    gap: 6px;
    background: var(--fourth-color); /* YENİ PALET */
    color: #00504a; /* YENİ PALET (Koyu Okunabilir Renk) */
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
/* Yıldız ikonu kaldırıldı, daha sade */

.kart-header h2 {
    font-size: 2rem;
    margin: 0;
    line-height: 1.3;
}
.kart-bilgi-satiri {
    display: flex;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.kart-bilgi-satiri i { color: var(--second-color); margin-right: 8px; } /* YENİ PALET */

/* YENİ DÜZENLEME: Kısa açıklama gizli bölüme taşındı */
.kisa-aciklama {
    color: var(--text-dark);
    font-size: 1.1rem;
    flex-grow: 1;
}

.kart-butonlar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.detay-goster-btn, .kayit-ol-btn, .takvim-btn { /* .takvim-btn EKLENDİ */
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none; /* Ortak özellik */
}
.detay-goster-btn, .takvim-btn { /* .takvim-btn EKLENDİ */
    background: var(--bg-light);
    color: var(--text-dark);
}
.detay-goster-btn:hover, .takvim-btn:hover { background: #eee; } /* .takvim-btn EKLENDİ */

.kayit-ol-btn {
    background: var(--second-color); /* YENİ PALET */
    color: white;
}
.kayit-ol-btn:hover { background: #3aa398; transform: translateY(-2px); } /* YENİ PALET HOVER */

/* Gizli Detaylar */
.gizli-detaylar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, margin-top 0.5s ease-in-out;
    opacity: 0;
    margin-top: 0;
}

/* === MOBİL BUTON KESİLME DÜZELTMESİ === */
.modern-etkinlik-karti.aktif .gizli-detaylar {
    max-height: 2500px; /* Butonların kesilmemesi için artırıldı (1000px -> 2500px) */
    opacity: 1;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}
/* === DÜZELTME SONU === */

.etkinlik-haritasi iframe {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    border: none;
    margin-top: 1rem;
}


/* ============================================= */
/* GALERİ (galeri.html) - MODERNİZE EDİLDİ */
/* ============================================= */
.galeri-grid {
    display: grid;
    /* === MOBİL ORTALAMA DÜZELTMESİ (Galeri) === */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 350px -> 300px */
    gap: 2rem;
}
.galeri-karti {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    aspect-ratio: 4/3; /* Sabit en-boy oranı */
    cursor: pointer;
}
.galeri-karti img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.galeri-karti:hover img {
    transform: scale(1.1);
}
.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.galeri-karti:hover .galeri-overlay {
    transform: translateY(0);
}
.galeri-overlay p {
    margin: 0;
    font-size: 1.1rem;
}


/* ============================================= */
/* ÜYE KAYIT (uye-kayit.html) - DİZİLİM DÜZELTİLDİ */
/* ============================================= */

/* DÜZELTME: 3'lü - 2'li Esnek Dizilim */
.uye-kayit-grid {
    display: flex; /* Flexbox'a geçiş */
    flex-wrap: wrap; /* Sığmazsa alt satıra at */
    justify-content: center; /* Yatayda ortala */
    gap: 2.5rem;
    margin-top: 4rem;
}
.uye-kayit-karti {
    flex: 0 1 300px; /* 300px genişliğinde, esnemeyen kartlar */
    text-align: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}
.uye-kayit-karti h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
.uye-kayit-karti p {
    color: var(--text-light);
}


/* ============================================= */
/* İLETİŞİM (iletisim.html) - MODERNİZE EDİLDİ */
/* ============================================= */

/* DÜZELTME: input taşması için box-sizing */
.iletisim-formu input,
.iletisim-formu textarea {
    box-sizing: border-box; 
}

.iletisim-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start; /* Hizalama */
}
@media (max-width: 900px) {
    .iletisim-grid-container { grid-template-columns: 1fr; }
}

.form-karti {
    padding: 2.5rem;
    border: 1px solid var(--border-color); /* Turuncu border yerine temiz kenarlık */
}

/* DÜZELTME 4: Form ikonları ve metin çakışması */
.iletisim-formu .form-grup {
    margin-bottom: 1.5rem;
}
.iletisim-formu label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
.input-ikonlu {
    position: relative;
}
.input-ikonlu i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

/* === DÜZELTME BURADA === */
/* Kuralı daha spesifik hale getirerek admin stilini ezmesini sağladık */
.iletisim-formu .input-ikonlu input {
    width: 100%;
    padding: 14px 15px 14px 45px !important; /* İkon için soldan boşluk (important eklendi) */
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}
/* === DÜZELTME BURADA BİTİYOR === */


.iletisim-formu textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    resize: vertical;
    font-family: inherit;
    transition: var(--transition);
    min-height: 120px;
}
.input-ikonlu input:focus,
.iletisim-formu textarea:focus {
    border-color: var(--second-color); /* YENİ PALET */
    outline: none;
}

.yonetici-listesi {
    text-align: center;
}
.yonetici-listesi h2 {
    margin-bottom: 2rem;
}
.iletisim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.yonetici-karti {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
}
.yonetici-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--second-color); /* YENİ PALET */
}
.yonetici-karti h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}
.yonetici-karti .unvan {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Hızlı İletişim Butonları */
.iletisim-butonlari {
    margin-top: 4rem; /* Düzeltme: Mesafe ayarı */
    text-align: center;
}
.iletisim-butonlari .buton-grubu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.mail-butonu { background-color: var(--second-color); } /* YENİ PALET */
.mail-butonu:hover { background-color: #3aa398; } /* YENİ PALET HOVER */
.whatsapp-butonu { background-color: #25D366; }
.whatsapp-butonu:hover { background-color: #1DA851; }

/* INSTAGRAM BUTONU (YENİ EKLENDİ) */
.instagram-butonu {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}
.instagram-butonu:hover {
    background: linear-gradient(45deg, #e08423 0%, #d6582c 25%, #cc1733 50%, #bB1356 75%, #ac0878 100%);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.4);
}


/* ============================================= */
/* ADMİN PANELİ (admin.html) - MODERNİZE EDİLDİ */
/* ============================================= */

/* Giriş Ekranı Düzeltmeleri */
.login-container {
    max-width: 450px;
    margin: 3rem auto;
    text-align: center;
    align-items: center;
}
.login-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.login-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.login-container .form-grup {
    margin-bottom: 1.5rem;
}

/* DÜZELTME: Admin giriş input ortalaması */
.login-container input {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    text-align: center; /* HEM YAZIYI HEM PLACEHOLDER'I ORTALA */
    transition: var(--transition);
    box-sizing: border-box; /* Tam genişlik için eklendi */
}
.login-container input:focus {
    border-color: var(--second-color); /* YENİ PALET */
    outline: none;
}
.login-container input::placeholder {
    text-align: center;
    opacity: 1; 
}

/* DÜZELTME 2 & 3: YEŞİL GİRİŞ BUTONU VE HOVER */
#admin-panel #login-wrapper #giris-btn {
    background-color: #25D366; /* YEŞİL BUTON */
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
#admin-panel #login-wrapper #giris-btn:hover {
    background-color: #1DA851; /* YEŞİL HOVER */
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* DÜZELTME 3: KİLİT ANİMASYONU */
.login-container:hover .ikon-wrapper {
    transform: scale(1.1) rotate(10deg); /* 10 dereceye düşürüldü */
    background-color: var(--first-color); /* YENİ PALET */
    color: white;
    animation: none;
}

/* Admin Sekmeler */
.admin-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.tab-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn i { margin-right: 0.5rem; }
.tab-btn.active {
    background: var(--first-color); /* YENİ PALET */
    color: white;
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3); /* YENİ PALET GÖLGE */
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 1000px) {
    .admin-grid { grid-template-columns: 1fr; }
}

.json-generator h2, .silme-paneli h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* DÜZELTME 5: Admin form çakışması */
.form-grup {
    margin-bottom: 1.5rem;
}
.form-grup label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-grup input[type="text"],
.form-grup input[type="url"],
.form-grup input[type="password"],
.form-grup input[type="datetime-local"],
.form-grup textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box; /* Çakışmayı ve taşmayı engeller */
}
.form-grup input:focus, .form-grup textarea:focus {
    border-color: var(--second-color); /* YENİ PALET */
    outline: none;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Silme Paneli */
.silinecek-liste {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}
.silinecek-oge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}
.silinecek-oge:last-child { border-bottom: none; }

/* DÜZENLEME BUTONLARI (YENİ) */
.buton-grup-admin {
    display: flex;
    gap: 0.5rem;
}
.sil-btn, .edit-btn {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.sil-btn {
    background: #fbebeb;
    color: #c0392b;
}
.sil-btn:hover { background: #c0392b; color: white; }
.edit-btn {
    background: #eaf2ff;
    color: #2980b9;
}
.edit-btn:hover { background: #2980b9; color: white; }

/* Galeri Silme/Düzenleme */
.galeri-sil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}
.silinecek-galeri-oge {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.silinecek-galeri-oge img {
    width: 100%; height: 100%; object-fit: cover;
}
.silinecek-galeri-oge p { /* Açıklamayı göster */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.8rem;
    padding: 5px;
    text-align: center;
    margin: 0;
}
.buton-grup-admin-kucuk {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
}
.sil-btn-kucuk, .edit-btn-kucuk {
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sil-btn-kucuk {
    background: rgba(192, 57, 43, 0.8);
    color: white;
}
.sil-btn-kucuk:hover { background: #c0392b; }
.edit-btn-kucuk {
    background: rgba(41, 128, 185, 0.8);
    color: white;
}
.edit-btn-kucuk:hover { background: #2980b9; }


.yenile-btn {
    margin-top: 1.5rem;
    background: var(--bg-light);
    color: var(--text-dark);
}
.yenile-btn:hover { background: #eee; }

/* Vazgeç Butonu (YENİ) */
.vazgec-btn {
    background: var(--text-light);
    color: white;
}
.vazgec-btn:hover {
    background: var(--text-dark);
}

/* Hata Mesajı */
.hata-mesaji {
    color: #c0392b;
    font-weight: bold;
}

/* ============================================= */
/* SSS SAYFASI (sss.html) - DÜZELTİLDİ */
/* ============================================= */
.sss-akordeon {
    max-width: 900px;
    margin: 4rem auto 0;
}
.sss-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
}
.sss-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}
.sss-soru {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s ease;
}
.sss-soru h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark);
}
.sss-icon {
    font-size: 1.2rem;
    color: var(--second-color); /* YENİ PALET */
    transition: transform 0.3s ease-in-out;
}
.sss-item.active .sss-icon {
    transform: rotate(45deg);
}

.sss-cevap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: var(--bg-light);
}
.sss-cevap p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    margin: 0;
}
