/* Genel Ayarlar ve Tipografi */
body {
    font-family: 'Inter', sans-serif;
    color: #4e4e4e;
    background-color: #fcfcfc;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
    color: #1e1e1e;
}

/* Üst Menü (Navbar) Tasarımı */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.custom-navbar .navbar-brand {
    color: #4f573e;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.custom-navbar .nav-link {
    color: #4e4e4e;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover, 
.custom-navbar .nav-link.active {
    color: #63675b;
}

/* Bize Ulaşın Butonu (Menüdeki) */
.btn-contact {
    background-color: #4f573e;
    color: #ffffff !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #63675b;
    transform: translateY(-2px);
}

/* Ana Karşılama Ekranı (Hero Section) */
.hero-section {
    height: 100vh;
    background-image: url('img/önbanner.webp'); /* Senin klasöründeki resim */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0.7), rgba(79, 87, 62, 0.6));
    z-index: 1;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-weight: 300;
    letter-spacing: 1px;
}

/* Ortak Bölüm Başlıkları ve Ayırıcı Çizgi */
.section-title {
    color: #1e1e1e;
    font-weight: 700;
    font-size: 2.5rem;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: #4f573e; /* Ana zeytin yeşili rengimiz */
    border-radius: 2px;
}

/* Hakkımızda Kartı */
.about-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05) !important;
}

/* Hizmet Kartları */
.service-card {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Animasyonu - Temaya uygun yeşil gölge efekti */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(79, 87, 62, 0.15); 
    border-color: #4f573e;
    background-color: #4f573e; /* Üzerine gelince arkaplan yeşil olur */
}

.service-card .service-title {
    color: #4f573e;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif; /* Okunabilirliği artırmak için */
}

/* Kutu üzerine gelindiğinde yazı rengi beyaza döner */
.service-card:hover .service-title {
    color: #ffffff;
}
/* Kurucularımız Kartları */
.lawyer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.lawyer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
}

/* Fotoğraf yerine geçecek şık Monogram Dairesi */
.lawyer-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4f573e, #63675b); /* Temamızın zeytin yeşili geçişi */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(79, 87, 62, 0.3);
}

.lawyer-name {
    color: #1e1e1e;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.lawyer-title {
    color: #63675b;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.lawyer-history {
    font-size: 0.95rem;
    line-height: 1.7;
}
/* İletişim Bölümü */
.map-container {
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info {
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-icon {
    font-size: 1.5rem;
    line-height: 1;
}

/* Footer (Alt Bilgi) */
.footer {
    background-color: #1a1c18; /* Çok koyu zeytin yeşili / Siyah tonu */
    border-top: 4px solid #4f573e; /* Ana tema rengimizle bir çizgi */
}
/* Mikro Etkileşim: Buton Parlaması */
.btn-outline-light:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* SSS Akordiyon Tasarımı ve Mikro Etkileşimleri */
.custom-accordion .accordion-button {
    color: #4e4e4e;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #dae0cd; /* Açık yeşil tonumuz */
    color: #4f573e; /* Koyu zeytin yeşili */
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.custom-accordion .accordion-item {
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    transform: translateX(5px); /* Fareyle üzerine gelince çok zarif bir şekilde sağa kayar */
}

/* Yayınlarımız (Makaleler) Tasarımı */
.article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
}

.article-date {
    background-color: #1a1c18 !important; /* Kurumsal siyah/koyu yeşil ton */
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.read-more {
    color: #63675b;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #4f573e;
}

.fs-7 {
    font-size: 0.85rem;
}
/* Swiper Carousel Özelleştirmeleri */
.yayinlarSwiper {
    padding-bottom: 60px !important; /* Alt noktalar için boşluk */
}
.swiper-button-next, .swiper-button-prev {
    color: #4f573e !important; /* Okları kurumsal yeşil yapıyoruz */
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}
.swiper-pagination-bullet-active {
    background-color: #4f573e !important; /* Aktif noktayı yeşil yapıyoruz */
}
.about-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görselin bozulmadan kutuya tam oturmasını sağlar */
    min-height: 300px;
}