/* Bu dosya assets/fizyowe.css
  "Fizyowe" marka sayfasına özel stiller.
  Ana Renk: #4b975f
*/

/* 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.
*/


/* Fizyowe Tanıtım Alanı
*/
.fizyowe-intro {
    padding: 5rem 0;
}

.intro-grid-fizyowe {
    display: grid;
    /* Metin (1.2fr) Resimden (1fr) daha geniş */
    grid-template-columns: 2.7fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.fizyowe-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
}

.intro-content-fizyowe .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-fizyowe h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.intro-content-fizyowe p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* KNAKACIM: YENİ Web Site Link Stili */
.fizyowe-website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #e6f7eb; /* Açık yeşil */
    color: #4b975f; /* Ana renk */
    padding: 0.6rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}
.fizyowe-website-link:hover {
    background-color: #4b975f;
    color: #ffffff;
}
.fizyowe-website-link i {
    font-size: 0.9rem;
}


.intro-image-fizyowe img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(75, 151, 95, 0.15);
}


/* "Efsane" Fotoğraf Galerisi
*/
.fizyowe-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) */
.fizyowe-gallery .weg-section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    text-align: center;
}
.fizyowe-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 */
}


/* "ŞUBELERİMİZ" BÖLÜMÜ STİLLERİ
   (hobiso.css ile aynı, sadece sınıf adı değişti)
*/
.fizyowe-subeler {
    padding: 5rem 0;
    background-color: #ffffff; 
}

.fizyowe-subeler .weg-section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    text-align: center;
}
.fizyowe-subeler .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 0.5rem; 
    margin-bottom: 4rem;
    text-align: center;
}

/* Şube Listesi */
.sube-listesi {
    list-style: none;
    padding: 0;
    margin: 0 auto; 
    max-width: 900px; 
    
    display: grid;
    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; 
    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; 
    font-size: 1.2rem;
}


/* Başvuru Butonu Alanı (CTA)
*/
.fizyowe-cta {
    padding: 5rem 0;
    text-align: center;
    background-color: #f8fdf9;
    border-top: 1px solid #e6f7eb;
}

.fizyowe-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.fizyowe-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;
}

/* .hero-cta stilini (hakkimizda.css'i include ettiğimiz için)
   tekrar kopyalamaya gerek yok, oradan alacaktır.
   Ama garanti olsun diye ekliyorum.
*/
.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-fizyowe {
        grid-template-columns: 1fr; /* Tablette 1 sütun */
    }
    .intro-image-fizyowe {
        order: 2;
        margin-top: 2rem;
    }
    .intro-content-fizyowe {
        order: 1;
        text-align: center; /* Mobilde ortala */
    }
    .fizyowe-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .fizyowe-intro, .fizyowe-gallery, .fizyowe-cta, .fizyowe-subeler {
        padding: 3rem 1rem;
    }

    .intro-content-fizyowe h2,
    .fizyowe-cta h2,
    .fizyowe-subeler .weg-section-title h2 {
        font-size: 2rem;
    }

    .intro-content-fizyowe p,
    .fizyowe-cta p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .sube-listesi {
        grid-template-columns: 1fr;
    }
}