/* Version CONTROL: 2026-06-05 - Ferah Premium Lavender Menü Tasarımı */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Segoe+UI:wght@400;500;600&display=swap');

:root {
    --primary-color: #366A67;     /* Kararlaştırdığımız Kurumsal Koyu Yeşil */
    --secondary-color: #A385E0;   /* İki Ton Koyulaştırdığımız Özel Lavanta Moru */
    --bg-color: #fcfbf9;          /* Yumuşak, Göz Yormayan Arkaplan */
    --text-color: #3e3a36;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }

/* 🌟 ÜST MENÜ ALANI: Koyu bant kaldırıldı, tamamen şeffaf ve ferah eski tasarıma dönüldü */
header { 
    background-color: transparent; 
    color: var(--text-color); 
    padding: 25px 0; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    border-bottom: 1px solid rgba(54, 106, 103, 0.08); /* Hafif ve zarif bir sınır çizgisi */
    backdrop-filter: blur(8px); /* Sayfa kayarken arkasının hafif bulanıklaşması için premium efekt */
    -webkit-backdrop-filter: blur(8px);
}

.container { width: 85%; max-width: 1200px; margin: 0 auto; }
nav { display: flex; justify-content: space-between; align-items: center; }
nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 20px; }

/* Menü linkleri artık beyaz değil, kararlaştırdığımız asil koyu yeşil */
nav ul li a { 
    color: var(--primary-color); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 15px; 
    transition: color 0.3s, transform 0.2s; 
}
nav ul li a:hover { 
    color: var(--secondary-color); /* Üzerine gelince zarif lavanta moru */
}

/* 🌟 Özel El Yazısı Logo Alanı (Tamamen eski tasarımdaki renk ve font büyüklüğünde) */
.nav-logo {
    font-family: 'Great Vibes', cursive !important;
    font-size: 3.2rem !important;
    color: var(--secondary-color); /* İsminiz artık o asil iki ton koyu lavanta moru */
    font-weight: normal !important;
    line-height: 1;
}

/* Koyu Yeşil ve Lavanta Moru Degrade Hero Alanı Overlay */
.hero { 
    background: linear-gradient(rgba(54, 106, 103, 0.85), rgba(163, 133, 224, 0.45)), url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?q=80&w=1200') no-repeat center/cover; 
    color: var(--white); 
    padding: 110px 0; 
    text-align: center; 
}
.hero h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 600; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.95; }

.btn { display: inline-block; background-color: var(--secondary-color); color: var(--white); padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; border: none; cursor: pointer; transition: background-color 0.3s, transform 0.2s; }
.btn:hover { background-color: var(--primary-color); transform: translateY(-1px); }
section { padding: 80px 0; }
.section-title { text-align: center; font-size: 28px; color: var(--primary-color); margin-bottom: 45px; position: relative; padding-bottom: 12px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 3px; background-color: var(--secondary-color); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.timeline { border-left: 3px solid var(--secondary-color); padding-left: 20px; }
.timeline-item { margin-bottom: 25px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -27px; top: 5px; width: 12px; height: 12px; background-color: var(--primary-color); border-radius: 50%; }
.timeline-date { font-weight: bold; color: var(--secondary-color); }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--white); padding: 25px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid #f3eff9; }
.faq-item { background: var(--white); margin-bottom: 15px; padding: 20px; border-radius: 5px; border-left: 4px solid var(--primary-color); }
.faq-question { font-weight: 600; color: var(--primary-color); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; color: var(--text-color); }
.form-control { width: 100%; padding: 12px; border: 1px solid #dddcd8; border-radius: 5px; background-color: var(--white); font-size: 14px; }
.form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(54, 106, 103, 0.1); }

footer { background-color: #162625; color: var(--white); padding: 40px 0; text-align: center; font-size: 14px; letter-spacing: 0.5px; opacity: 0.95; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.admin-table th, .admin-table td { padding: 12px; border: 1px solid #ddd; text-align: left; }
.admin-table th { background-color: var(--primary-color); color: var(--white); }
.btn-danger { background-color: #c94c4c; padding: 5px 10px; color: white; text-decoration: none; border-radius: 3px; font-size: 12px; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; 
}