/**
 * assets/css/hakkimizda.css
 * Lüks & Asimetrik Premium Hakkımızda Stilleri
 */

/* 1. Üst Banner Alanı (Daha Derin Sinematik Katman) */
.about-banner {
    background: linear-gradient(rgba(17, 33, 29, 0.8), rgba(17, 33, 29, 0.85)),
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1920') center/cover;
    padding: 110px 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.about-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.about-banner p {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent) !important;
}

/* 2. Sol Blok: Asimetrik Yüzen Görsel (Floating Luxury Glass) */
.about-image-canvas {
    position: relative;
    padding: 0 30px 30px 0; /* Arkadaki altın çerçevenin taşması için pay */
}

/* Arkadaki asil altın çerçeve efekti */
.about-image-canvas::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border: 2px solid var(--accent);
    z-index: 1;
    transition: all 0.5s ease;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(17, 33, 29, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.02);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image-canvas:hover .about-image-wrapper img {
    transform: scale(1.04);
}

.about-image-canvas:hover::after {
    transform: translate(-10px, -10px);
    border-color: var(--primary);
}

/* 3. Sağ Blok: Lüks Tipografi ve Detay Alanı */
.about-luxury-content {
    padding-left: 20px;
}

.about-luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary);
    position: relative;
    margin-bottom: 30px;
}

/* Başlığın altına şık tek taraflı çizgi */
.about-luxury-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--accent);
    margin-top: 20px;
}

.about-luxury-text {
    font-family: 'Work Sans', sans-serif;
    color: #444444;
    font-weight: 300;
    line-height: 2;
    text-align: justify;
}

/* İlk harfi büyütme (Drop Cap) efekti - Kitap zarafeti */
.about-luxury-text > p:first-child::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    float: left;
    margin-right: 10px;
    line-height: 0.9;
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================================================
   YENİ EKLENEN BÖLÜMLER
   ========================================================================== */

/* 4. İstatistik Alanı (Stats Section) */
.stats-section {
    background-color: var(--primary, #11211d); /* Projedeki koyu zeytin/yeşil ana renk */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

/* Arka plana premium hafif bir doku hissi */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stat-box {
    text-align: center;
    padding: 10px;
    transition: transform 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--accent, #c5a880); /* Altın/Vurgu rengi */
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-box p {
    font-family: 'Work Sans', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    font-weight: 400;
}

/* 5. Neden Biz Alanı: Özellik Kartları (Feature Cards) */
.feature-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    padding: 45px 35px;
    border-radius: 0px; /* Minimalist lüks tarz için keskin köşeler */
    height: 100%;
    box-shadow: 0 10px 30px rgba(17, 33, 29, 0.02);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    top: 0;
}

.feature-card:hover {
    top: -10px;
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: 0 20px 50px rgba(17, 33, 29, 0.07);
}

/* Kartların altına ince altın şerit animasyonu */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent, #c5a880);
    transition: width 0.4s ease;
}

.feature-card:hover::after {
    width: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 168, 128, 0.08); /* Hafif şeffaf altın arka plan */
    color: var(--accent, #c5a880);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--accent, #c5a880);
    color: var(--primary, #11211d);
    transform: rotateY(360deg);
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary, #11211d);
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-card p {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666666 !important;
}

/* Mobil Uyum Düzenlemeleri (Responsive) */
@media (max-width: 767.98px) {
    .stat-box h3 {
        font-size: 2.3rem;
    }
    .stat-box p {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    .feature-card {
        padding: 35px 25px;
    }
}