﻿/* ===================================================================
 * BİZİM HİKAYEMİZ (HAKKIMIZDA) BÖLÜMÜ
 * (PartialAbout.cshtml stilleri)
 * =================================================================== */

/* Ana bölüm (eski .about-us) */
.about-us-section {
    padding: 60px 0;
    overflow: hidden;
}

/* Tüm içeriği saran yeni kutumuz */
.about-content-wrapper {
    max-width: 900px; /* Çok yayılmasın, okunaklı kalsın */
    margin: 0 auto;
    /* Kartlarımıza uyguladığımız asil stil */
    background: #FFFBFB; /* Yumuşak krem/gül */
    border: 1px solid #F0E0E2; /* Soluk sınır */
    border-radius: 15px; /* Daha yumuşak kenar */
    box-shadow: 0 10px 30px rgba(155, 92, 92, 0.1);
    padding: 3rem; /* İçeride ferah boşluk */
    text-align: center; /* Her şeyi ortalayalım */
}

/* Sizin fotoğrafınız */
.about-image img {
    width: 100%;
    max-width: 600px; /* Resim çok devasa olmasın */
    height: auto;
    border-radius: 10px; /* Yumuşak kenar */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem; /* Resimle yazı arası boşluk */
    border: 5px solid #fff; /* İnce beyaz çerçeve */
}

/* Yazıların olduğu alan */
.about-text h3 {
     
    font-family: 'Playfair Display', serif;  
    color: #6D435A;  
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0; 
 
    overflow-wrap: break-word;
    word-wrap: break-word;
}

 
.about-subtitle {
    display: block;
    font-family: 'Great Vibes', cursive;  
    color: #9B5C5C;  
    font-size: 2.2rem;
    margin-top: -10px;  
    margin-bottom: 25px;
}

 
.about-text .content-body {
    font-family: 'Lora', serif;  
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;  
    text-align: left;  
}

   
    .about-text .content-body p {
        margin-bottom: 1.5rem;
    }
@media (max-width: 768px) {
    
     
    .about-content-wrapper {
        padding: 1.5rem; 
    }

    
    .about-text h3 {
      
        font-size: 1.7rem;  
        
         
        letter-spacing: normal; 
    }

   
    .about-subtitle {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    
    .about-text .content-body {
        font-size: 1rem;
    }
}
 