/* Genel Ayarlar */
body {
    font-family: 'Roboto', sans-serif;
    padding-top: 70px; /* Navbar fixed olduğu için üstten boşluk */
}

/* Hover Efektleri */
.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
    cursor: pointer;
}

/* HERO SECTION (Giriş) */
.hero-section {
    /* Arka plana geçici olarak gri bir renk veya internetten bir fabrika görseli koyacağız */
    background: url('../img/hero-bg.jpg') no-repeat center center/cover;
    height: 90vh; /* Ekranın %90'ını kapla */
    position: relative;
    background-color: #333; /* Resim yüklenmezse görünecek renk */
}

/* Resim üzerine siyah perde çekme (yazı okunsun diye) */
.hero-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* %60 siyahlık */
}
/* Hakkımızda Bölümü Resim */
.img-fluid.rounded.shadow-lg {
    max-height: 500px;
    object-fit: cover;
}

/* Süreç Bölümü Ok İşaretleri */
@media (max-width: 768px) {
    /* Mobilde okları gizlemek için bootstrap d-none kullanıyoruz ama 
       ekstra garanti olsun diye buraya da yazabiliriz */
    .fa-arrow-right {
        display: none !important;
    }
}
/* --- ALT SAYFA BAŞLIKLARI (Page Header) --- */
.page-header {
    background: linear-gradient(rgba(25, 135, 84, 0.9), rgba(20, 20, 20, 0.8)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 50px 0;
    color: white;
    margin-bottom: 3rem;
}

.breadcrumb-item a {
    color: #a3cfbb; /* Açık yeşil link */
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Hizmetler Sayfası İkon Kutuları */
.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon-wrapper {
    background-color: #198754; /* Bootstrap success rengi */
    color: white !important;
}

.service-card:hover i {
    color: white !important;
}
/* Logo Ayarı */
.navbar-brand img {
    max-height: 50px; /* Maksimum yükseklik */
    width: auto;      /* Genişlik orantılı kalsın */
}

/* --- MOBİL DÜZENLEMELERİ --- */

/* 1. Ekran daralınca logoyu otomatik küçült */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 45px; /* Mobilde 70px yerine 45px olsun */
    }
}

/* 2. Sayfanın sağa-sola oynamasını (taşmayı) engelle */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}