/* ========================================================= */
/* --- ERKAP KAPI - BAŞKANIN MESAJI ÖZEL STİL DOSYASI --- */
/* ========================================================= */

:root {
    --bg-main: #f5f2eb;          /* Ana Zemin: Sıcak Krem / Grej */
    --bg-card: #fdfbf7;          /* Kart Zemin: Fildişi */
    --bg-section: #eae4d8;        /* İkincil Zemin */
    
    --gold-primary: #b58d43;     /* Şampanya Altını */
    --gold-dark: #8c6a2a;        /* Koyu Kehribar */
    --gold-gradient: linear-gradient(135deg, #d6b46e 0%, #b58d43 50%, #8c6a2a 100%);
    
    --text-dark: #2c2724;        /* Derin Ahşap Antrasit */
    --text-body: #544d47;        /* Gövde Metni */
    --text-muted: #82786f;
    
    --border-color: #e2d9cc;
    --border-gold: rgba(181, 141, 67, 0.35);
    --shadow-soft: 0 10px 30px rgba(70, 50, 20, 0.06);
    --shadow-hover: 0 18px 40px rgba(181, 141, 67, 0.16);
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
}

.president-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================================= */
/* --- HERO BANNER & MENÜ KONTRASTLI PERDE --- */
/* ========================================================= */

.page-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url('../uploads/kurumsal/arkaplan.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 70px;
}

.page-hero .hero-curtain-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(18, 22, 28, 0.82) 0%,    /* Menü okunabilirliği için koyu üst maske */
        rgba(45, 36, 25, 0.55) 45%,   /* Sıcak ahşap/kehribar geçiş */
        rgba(245, 242, 235, 1) 100%   /* Alt krem zemin birleşimi */
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.breadcrumb-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.breadcrumb-link {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.breadcrumb-link:hover {
    color: var(--gold-primary);
}

.breadcrumb-separator {
    color: var(--gold-primary);
    font-size: 11px;
}

.breadcrumb-current {
    color: var(--gold-dark);
    font-weight: 700;
}

/* ========================================================= */
/* --- BAŞKANIN MESAJI GRID BÖLÜMÜ --- */
/* ========================================================= */

.president-section {
    padding: 70px 0 100px 0;
}

.president-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Sol Profil Kartı */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: sticky;
    top: 120px;
}

.profile-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.president-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.profile-info {
    padding-top: 5px;
}

.president-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.president-company {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(181, 141, 67, 0.1);
    border: 1px solid var(--border-gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
}

/* Sağ Mesaj İçerik Alanı */
.section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tag-line {
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.tag-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
}

.message-salutation {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.message-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.message-paragraph {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

.message-paragraph.highlight-p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Vurgulu Quote Kutusu */
.message-quote-box {
    background: linear-gradient(135deg, #fdfbf7 0%, #eae4d8 100%);
    border: 1px solid var(--border-gold);
    border-left: 5px solid var(--gold-primary);
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
    box-shadow: var(--shadow-soft);
}

.quote-icon {
    font-size: 32px;
    color: var(--gold-primary);
    opacity: 0.85;
}

.quote-text {
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    color: var(--gold-dark);
    line-height: 1.6;
    margin: 0;
}

/* İmza Bloğu */
.president-signature-block {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.salut-close {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.sign-company {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.sign-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gold-primary);
}

/* ========================================================= */
/* --- MOBİL UYUMLULUK --- */
/* ========================================================= */

@media screen and (max-width: 992px) {
    .president-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-card {
        position: static;
        max-width: 450px;
        margin: 0 auto;
    }

    .page-title {
        font-size: 32px;
    }

    .message-salutation {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .president-section {
        padding: 40px 0 60px 0;
    }

    .president-img {
        height: 300px;
    }

    .message-quote-box {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .quote-text {
        font-size: 15px;
    }
}