/* =========================================
   MİLLİYETÇİ / SİYASİ LİDER KONSEPTİ
   ========================================= */
:root {
    --pol-red: #db2027; /* Türk Bayrağı / MHP Kırmızısı */
    --pol-red-dark: #b5171d;
    --pol-blue: #0b2b40; /* Koyu Kurumsal Lacivert */
    --pol-blue-dark: #061926;
    
    --bg-light: #f4f6f8;
    --bg-white: #ffffff;
    
    --text-dark: #222222;
    --text-muted: #666666;
    --border-color: #dddddd;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--pol-blue);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* =========================================
   GENEL YARDIMCILAR
   ========================================= */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--pol-red);
    margin: 0 auto;
}

.section-header-left {
    margin-bottom: 30px;
}

.section-header-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.divider-left {
    width: 60px;
    height: 4px;
    background-color: var(--pol-red);
}

.mt-50 {
    margin-top: 50px;
}

/* =========================================
   TOP BAR (EN ÜST ŞERİT)
   ========================================= */
.top-bar {
    background-color: var(--pol-red);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-social a {
    color: white;
    margin-left: 15px;
    font-size: 1rem;
}

.top-social a:hover {
    opacity: 0.8;
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area a {
    display: block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pol-blue);
    margin-bottom: 2px;
    line-height: 1;
}

.logo-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: var(--pol-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-list a {
    color: var(--pol-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pol-red);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--pol-blue);
    cursor: pointer;
    margin-left: 20px;
}

/* =========================================
   MOBİL MENÜ
   ========================================= */
.mobile-nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--pol-blue);
    z-index: 1000;
    padding-top: 80px;
    transition: var(--transition);
}

.mobile-nav-container.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list a {
    display: block;
    color: white;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-nav-list a:hover {
    background-color: var(--pol-red);
}

/* =========================================
   HERO / MANŞET BÖLÜMÜ
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background-color: #2a2a2a; /* Görsel gelene kadar yedek bg */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ddd; /* Kullanıcı resmi yüklediğinde buraya girecek */
    background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-text {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    font-weight: 700;
    background: rgba(255,255,255,0.8);
    padding: 20px 40px;
    border-radius: 8px;
    border: 2px dashed #999;
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-box {
    background: rgba(11, 43, 64, 0.9); /* Lacivert şeffaf kutu */
    padding: 40px;
    max-width: 500px;
    border-left: 5px solid var(--pol-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.hero-box h3 {
    color: var(--pol-red);
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-box p {
    color: #eeeeee;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-read-more {
    display: inline-block;
    background-color: var(--pol-red);
    color: white;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-read-more:hover {
    background-color: var(--pol-red-dark);
}

/* =========================================
   HABERLER VE MESAJLAR
   ========================================= */
.news-section {
    background-color: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.news-img-placeholder {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-weight: 700;
    border-bottom: 3px solid var(--pol-red);
}

.news-content {
    padding: 25px;
}

.news-date {
    display: block;
    color: var(--pol-red);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.news-link {
    color: var(--pol-blue);
    font-weight: 700;
    font-size: 0.9rem;
}

.news-link:hover {
    color: var(--pol-red);
}

/* =========================================
   BİYOGRAFİ
   ========================================= */
.bio-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
}

.bio-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #ddd;
    border: 8px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #888;
    font-weight: 700;
}

.bio-img-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.bio-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pol-blue);
    margin-bottom: 20px;
}

.bio-text p {
    margin-bottom: 15px;
    text-align: justify;
}

.quote-box {
    background-color: var(--bg-white);
    padding: 30px;
    border-left: 4px solid var(--pol-red);
    margin-top: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quote-box i {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    color: var(--pol-red);
    background: var(--bg-light);
    padding: 0 10px;
}

.quote-box p {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--pol-blue);
}

.career-details h3 {
    font-size: 1.5rem;
    color: var(--pol-red);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.career-details p {
    margin-bottom: 15px;
    text-align: justify;
}

/* =========================================
   SİVİL TOPLUM BÖLÜMÜ
   ========================================= */
.ngo-section {
    background-color: var(--pol-blue);
    color: white;
}

.ngo-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.role-card {
    background-color: rgba(255,255,255,0.05);
    padding: 40px 30px;
    text-align: center;
    border-top: 3px solid var(--pol-red);
    transition: var(--transition);
}

.role-card:hover {
    background-color: rgba(255,255,255,0.1);
}

.role-icon {
    font-size: 3rem;
    color: var(--pol-red);
    margin-bottom: 20px;
}

.role-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.role-title {
    display: block;
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.role-card p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.5;
}

/* =========================================
   GALERİ
   ========================================= */
.gallery-section {
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item-ph {
    background-color: #eee;
    aspect-ratio: 4/3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-weight: 700;
    border: 1px solid #ddd;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background-color: var(--pol-blue-dark);
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-social a:hover {
    background-color: var(--pol-red);
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--pol-red);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--pol-red);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--pol-red);
    margin-right: 10px;
    width: 15px;
    text-align: center;
}

.footer-bottom {
    background-color: #030d14;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .nav-list { display: none; }
    .mobile-menu-btn { display: block; }
    
    .news-grid, .gallery-grid, .ngo-roles {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bio-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bio-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .news-grid, .gallery-grid, .ngo-roles {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-box {
        margin: 0 15px;
    }
    
    .hero-box h2 {
        font-size: 2rem;
    }
}
