/* --- EKİNCİ HUKUK MODERN TASARIM (STYLE.CSS) --- */

/* SIFIRLAMA & TEMEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #1a1a1a;      /* Koyu Gri Arkaplan */
    --bg-light: #f4f4f4;     /* Çok Açık Gri */
    --text-dark: #111111;    /* Siyah Metin */
    --text-light: #cccccc;   /* Açık Gri Metin */
    --accent: #7a7a7a;       /* Vurgu Rengi */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* NAVBAR (MENÜ) */
.navbar {
    height: 80px;
    background: rgba(255, 255, 255, 0.98); /* Hafif şeffaf beyaz */
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    top: 0; left: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-contact {
    border: 1px solid var(--text-dark);
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--text-dark);
    color: var(--white) !important;
}

/* HERO (GİRİŞ) BÖLÜMÜ */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5)); /* Fotoğrafı karartır */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.subtitle {
    letter-spacing: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ddd;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: var(--white);
    color: var(--text-dark);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 2px;
}

.btn-secondary {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 2px;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

/* HAKKIMDA BÖLÜMÜ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 5px;
    filter: grayscale(100%); /* Fotoğraf Siyah Beyaz */
    transition: 0.5s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img img:hover {
    filter: grayscale(0%); /* Üzerine gelince renkli */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--text-dark);
}

.intro {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #555;
}

.education-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px;
    border-left: 3px solid var(--text-dark);
    min-width: 200px;
}

.badge i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* UZMANLIK ALANLARI */
.bg-light {
    background-color: #f8f8f8;
}

.text-center {
    text-align: center;
    margin-bottom: 60px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.card:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-10px);
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #555;
}

.card:hover i {
    color: var(--white);
}

/* MOTTO */
.motto {
    background: var(--bg-dark);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.motto h3 {
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

/* İLETİŞİM */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
}

.info-box i {
    font-size: 1.2rem;
    background: var(--text-dark);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* FORM TASARIMI */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--text-dark);
    background: #fff;
}

.btn-submit {
    background: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #333;
}

/* FOOTER */
footer {
    background: #111;
    color: #555;
    padding: 40px 0;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    text-align: center;
}

/* MOBİL MENÜ VE RESPONSIVE */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 80px;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }
    .burger {
        display: block;
    }
    .nav-active {
        transform: translateX(0%);
    }
    .nav-active li {
        animation: navLinkFade 0.5s ease forwards 0.3s;
        opacity: 1;
    }
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
}

@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0px); }
}
/* --- BLOG VE MAKALE SAYFASI TASARIMI (EN ALTA EKLE) --- */

/* Makaleler Listesi (Grid) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #111; /* Hoverda siyah çerçeve */
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
    line-height: 1.3;
}

.blog-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.read-more {
    color: #111;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    transition: 0.3s;
}

.read-more:hover {
    color: #555;
    border-color: #555;
}

/* Tekil Makale Sayfası */
.article-container {
    max-width: 800px;
    margin: 140px auto 80px; /* Navbar payı */
    padding: 0 20px;
}

.article-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #111;
}

.article-meta {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 0.9rem;
}

.article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #111;
}

.article-body strong {
    font-weight: 600;
    color: #000;
}
/* --- GÜNCELLENMİŞ MENÜ AYARLARI (SIĞDIRMA) --- */

/* 1. Kapsayıcıyı biraz genişletelim ki yer açılsın */
.container {
    max-width: 1250px; 
    padding: 0 15px;
}

/* 2. Linklerin arasını kısalım ve ortalayalım */
.nav-links {
    display: flex;
    gap: 15px; /* Eskiden 30px idi, düşürdük */
    align-items: center;
}

/* 3. Yazı boyutunu kibarlaştıralım */
.nav-links a {
    font-size: 0.8rem; /* 0.9rem'den küçülttük */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Yazıların alt satıra kaymasını engeller */
}

/* 4. Butonu da biraz küçültelim */
.btn-contact {
    padding: 8px 18px;
    font-size: 0.8rem;
    border: 1px solid #333;
    white-space: nowrap;
}
/* --- GENİŞ VE FERAH MENÜ AYARLARI --- */

/* 1. Sitenin çerçevesini genişletelim (Kenarlara yayalım) */
.container {
    max-width: 1450px; /* Alanı 1250'den 1450'ye çıkardık */
    padding: 0 40px;   /* Kenarlardan biraz boşluk bıraktık */
}

/* 2. Menü linklerinin arasını açalım */
.nav-links {
    display: flex;
    gap: 35px; /* Aradaki boşluğu artırdık (Ferah görünüm) */
    align-items: center;
}

/* 3. Yazı boyutunu ve stilini düzeltelim */
.nav-links a {
    font-size: 0.9rem; /* İdeal okuma boyutu */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px; /* Harf aralarını biraz açtık */
    white-space: nowrap; /* Yazıların alt satıra kaymasını engeller */
}

/* 4. 'Randevu Al' butonunu düzeltelim */
.btn-contact {
    padding: 10px 25px;
    font-size: 0.9rem;
    border: 1px solid #111;
    white-space: nowrap;
}

/* 5. Logo ile menü arasını dengeleyelim */
.nav-wrapper {
    justify-content: space-between; /* Sağa ve sola yasla */
    width: 100%;
}
/* =========================================
   MOBİL CİHAZLAR İÇİN DÜZELTMELER (GÜNCEL)
   (Bu kodları style.css'in en altına yapıştır)
========================================= */

@media screen and (max-width: 768px) {

    /* 1. SORUN: BUTONLARI EŞİTLEME */
    .hero-btns {
        flex-direction: column; /* Alt alta al */
        gap: 15px;
        width: 100%;
        max-width: 320px; /* Çok yayılmasın */
        margin: 0 auto;
    }

    /* Her iki butonu da kutu gibi sabitleyip yazıyı tam ortalıyoruz */
    .btn-primary, 
    .btn-secondary {
        display: flex; /* Esnek kutu */
        align-items: center; /* Dikey ortalama (Hakkımızda'yı düzelten bu) */
        justify-content: center; /* Yatay ortalama */
        width: 100%;
        height: 55px; /* İkisine de sabit yükseklik verdim, eşitlendiler */
        padding: 0; /* İç boşluğu sıfırladım, flex ile ortaladım */
        font-size: 1rem;
        box-sizing: border-box;
    }
    
    /* Hakkımızda butonundaki kaymayı sıfırlıyoruz */
    .btn-secondary {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }


    /* 2. SORUN: ONLINE İŞLEMLER BAŞLIĞINI SIĞDIRMA */
    .online-header {
        padding: 130px 15px 50px; /* Kenar boşluklarını daralttım (sığsın diye) */
        width: 100%;
        box-sizing: border-box; /* Taşmayı engeller */
        overflow-x: hidden; /* Yanlara taşarsa gizle */
    }

    .online-header h1 {
        font-size: 2rem; /* Başlığı biraz küçülttüm ki tek parça dursun */
        line-height: 1.2;
        margin-bottom: 15px;
        width: 100%;
        word-wrap: break-word; /* Uzun kelime varsa aşağı at */
    }

    .online-header p {
        font-size: 0.95rem;
        line-height: 1.5;
        width: 100%;
        padding: 0 5px;
    }

    /* Rozet ayarı */
    .free-badge {
        font-size: 0.8rem;
        padding: 10px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}