﻿/* PB HAQQINDA - MODERN DİZAYN */
.pb-about-container {
    background: #050505;
    border: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Şəkil Arxa Fonlu Bölmələr */
.about-row.image-bg {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

/* QARA TON (OVERLAY) */
.dark-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.row-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.center-text {
    max-width: 80% !important;
    margin: 0 auto;
    text-align: center;
}

/* Yazı və Şəkil Yan-Yana Bölməsi */
.flex-row {
    display: flex;
    background: #0a0a0a;
    align-items: center;
}

.row-text {
    flex: 1;
    padding: 40px;
}

.row-image {
    flex: 1;
    height: 300px;
    overflow: hidden;
}

.row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Mətn Stilləri */
.about-row h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-row h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.about-row p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.7;
}

.highlight { color: #f6b60c; }
.gold-text { color: #f6b60c !important; font-weight: 900; }

/* Sadə Qara Bölmə */
.simple-dark {
    background: #000;
    padding: 60px 40px;
    border-top: 2px solid #222;
}

/* Düymə */
.about-dl-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 40px;
    background: #f6b60c;
    color: #000;
    font-weight: 900;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s;
}

.about-dl-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Mobil Uyğunluq */
@media (max-width: 768px) {
    .flex-row { flex-direction: column; }
    .about-row.image-bg { min-height: 450px; }
}