/* Bu dosya assets/hobiso.css
  "Hobiso" marka sayfasına özel stiller.
  Ana Renk: #4b975f
  
  GÜNCELLEME V2: Şubelerimiz bölümü eklendi.
*/

/* Ana sayfa fontuyla tutarlılık */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

/* Sayfa Başlığı ve Breadcrumb stilleri
  'hakkimizda.css' dosyasından (zaten include ettik)
  .page-hero, .breadcrumb, .page-hero h1 stilleri ORADAN GELİYOR.
*/


/* Hobiso Tanıtım Alanı
*/
.hobiso-intro {
    padding: 5rem 0;
}

.intro-grid-hobiso {
    display: grid;
    /* Metin (1.2fr) Resimden (1fr) daha geniş */
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hobiso-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
}

.intro-content-hobiso .section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b975f;
    background-color: #e6f7eb;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.intro-content-hobiso h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.intro-content-hobiso p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-image-hobiso img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(75, 151, 95, 0.15);
}


/* "Efsane" Fotoğraf Galerisi
*/
.hobiso-gallery {
    padding: 5rem 0;
    background-color: #f8fdf9; /* Açık yeşil fon */
    border-top: 1px solid #e6f7eb;
    border-bottom: 1px solid #e6f7eb;
}

/* Başlık stilleri (weg-section-title'ı kullanıyoruz) */
.hobiso-gallery .weg-section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    text-align: center;
}
.hobiso-gallery .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 0.5rem; 
    margin-bottom: 4rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    /* Teknolojik grid (Mobilde 1, tablette 2, masaüstünde 4) */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 0; /* Resim altı boşluğu al */
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(75, 151, 95, 0.2);
}

.gallery-item a {
    display: block;
    height: 250px; /* Galerideki tüm resimler eşit yükseklikte */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resimleri kırparak sığdır */
}


/* KNAKACIM: YENİ "ŞUBELERİMİZ" BÖLÜMÜ STİLLERİ
*/
.hobiso-subeler {
    padding: 5rem 0;
    /* Galerinin açık yeşil fonuyla kontrast için beyaz */
    background-color: #ffffff; 
}

/* Başlık (weg-section-title'ı kullanıyoruz, stiller oradan gelir) */
.hobiso-subeler .weg-section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    text-align: center;
}
.hobiso-subeler .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 0.5rem; 
    margin-bottom: 4rem;
    text-align: center;
}

/* "Efsane" Şube Listesi */
.sube-listesi {
    list-style: none;
    padding: 0;
    margin: 0 auto; /* Listeyi ortala */
    max-width: 900px; /* Liste çok genişlemesin */
    
    display: grid;
    /* Mobilde 1, tablette 2, masaüstünde 3 sütun */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.sube-listesi li {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    background-color: #f8fdf9; /* Açık yeşil fon */
    border: 1px solid #e6f7eb;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sube-listesi li:hover {
     transform: translateY(-3px);
     box-shadow: 0 4px 15px rgba(75, 151, 95, 0.1);
}

.sube-listesi li i {
    color: #4b975f; /* Ana Renk */
    font-size: 1.2rem;
}


/* Başvuru Butonu Alanı (CTA)
*/
.hobiso-cta {
    padding: 5rem 0;
    text-align: center;
    /* Şubeler bölümüyle kontrast için yine açık yeşil */
    background-color: #f8fdf9;
    border-top: 1px solid #e6f7eb;
}

.hobiso-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.hobiso-cta p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* KNAKACIM: .hero-cta stilini slider.css'den kopyaladım
   Böylece bu sayfa 'slider.css'ye bağımlı kalmadı.
*/
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background-color: #009441;
    color: #ffffff !important; 
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 0.9rem 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 148, 65, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.hero-cta:hover {
    background-color: #007a36;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 148, 65, 0.5);
}
.hero-cta i {
    margin-right: 0.3rem;
}


/* --- MOBİL UYUMLULUK --- */

@media (max-width: 992px) {
    .intro-grid-hobiso {
        grid-template-columns: 1fr; /* Tablette 1 sütun */
    }
    .intro-image-hobiso {
        /* Metinden sonra gelsin */
        order: 2;
        margin-top: 2rem;
    }
    .intro-content-hobiso {
        order: 1;
        text-align: center; /* Mobilde ortala */
    }
    .hobiso-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hobiso-intro, .hobiso-gallery, .hobiso-cta, .hobiso-subeler {
        padding: 3rem 1rem;
    }

    .intro-content-hobiso h2,
    .hobiso-cta h2,
    .hobiso-subeler .weg-section-title h2 {
        font-size: 2rem;
    }

    .intro-content-hobiso p,
    .hobiso-cta p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        /* Mobilde 1 sütun (auto-fit zaten yapar) */
        grid-template-columns: 1fr;
    }
    
    .sube-listesi {
        /* Mobilde 1 sütun (auto-fit zaten yapar) */
        grid-template-columns: 1fr;
    }
}