/* Version CONTROL: 2026-06-04 21:14:00 */
:root {
    --primary-color: #2c5d63; /* Derin Mavi/Yeşil */
    --secondary-color: #a8896c; /* Sıcak Toprak Tonu */
    --bg-color: #f4f7f6; /* Yumuşak Arkaplan */
    --text-color: #334244;
    --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; }
header { background-color: var(--primary-color); color: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 100; }
.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; }
nav ul li { margin-left: 20px; }
nav ul li a { color: var(--white); text-decoration: none; font-weight: 500; }
nav ul li a:hover { color: var(--secondary-color); }
.hero { background: linear-gradient(rgba(44, 93, 99, 0.8), rgba(168, 137, 108, 0.4)), url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?q=80&w=1200') no-repeat center/cover; color: var(--white); padding: 100px 0; text-align: center; }
.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; }
.btn:hover { background-color: var(--primary-color); }
section { padding: 60px 0; }
.section-title { text-align: center; font-size: 28px; color: var(--primary-color); margin-bottom: 40px; }
.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 3px 10px rgba(0,0,0,0.05); }
.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; }
.form-control { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; }
footer { background-color: #1e3d41; color: var(--white); padding: 40px 0; text-align: center; font-size: 14px; }
.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; }

/* MENÜ LİNKLERİ İÇİN SAYFA İÇİ ÜST BOŞLUK (BANNER ALTINDA KALMA SORUNUNUN ÇÖZÜMÜ) */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* Sabit header yüksekliği düşünülerek artırıldı */
}