.div_ihbar {
    margin-right: 60px !important;
}

    .div_ihbar img {
        width: 100px !important;
    }

.belediye_logo {
    width: 120px !important;
}

@media (min-width: 992px) {
    .div_ihbar {
        margin-right: 0 !important;
    }

        .div_ihbar img {
            width: 120px !important;
        }

    .belediye_logo {
        width: 150px !important;
    }
}
/* Küçük ekranlarda inline-block olacak, lg ve üzerinde gizlenecek */
.d-inline-block {
    display: inline-block !important;
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
}

/* Küçük ekranlarda gizlenecek, lg ve üzerinde inline-block olacak */
.d-none {
    display: none !important;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}


@media (min-width: 992px) {
    .d-lg-inline-block {
        display: inline-block !important;
    }
}

.text-white {
    color: white !important;
}

/* BAŞKAN BANDI STİLLERİ */
.president-banner {
    background-color: #f8f9fa; /* Hafif gri arka plan */
    border-top: 1px solid #eee;
    padding: 30px 0 0;
    overflow: hidden;
    position: relative;
}

.president-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Başkan Fotoğrafı */
.president-img-wrapper {
    flex: 0 0 auto;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.president-img {
    height: 180px; /* Yüksekliği ihtiyaca göre ayarlayın */
    width: auto;
    display: block;
    object-fit: contain;
    /* Hafif gölge efekti */
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

/* İsim ve Ünvan Alanı */
.president-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px; /* Elemanlar arası boşluk */
}

.president-title-box {
    text-align: left;
}

.president-name {
    font-family: 'Open Sans', sans-serif; /* Sitedeki font */
    font-size: 32px;
    font-weight: 700;
    color: #333; /* Koyu gri renk */
    margin-bottom: 5px;
    line-height: 1.1;
    text-transform: uppercase;
}
/* İmza Fontu Efekti (Opsiyonel - Eğer özel fontunuz varsa buraya ekleyin) */
.president-signature-font {
    /* font-family: 'SignatureFont', cursive; */
}

.president-role {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Çizgi Ayırıcı */
.president-divider {
    height: 2px;
    width: 60px;
    background-color: #e74c3c; /* Sitenin ana rengi (kırmızı) */
    display: none; /* Mobilde gizle */
}

/* Sosyal Medya İkonları */
.president-social {
    display: flex;
    gap: 15px;
}

    .president-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #fff;
        color: #555;
        font-size: 18px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .president-social a:hover {
            transform: translateY(-3px);
            color: #fff;
        }
        /* Marka renkleri */
        .president-social a.tw:hover {
            background-color: #000;
        }
        /* X logosu siyah */
        .president-social a.ins:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .president-social a.fb:hover {
            background-color: #1877f2;
        }


/* Buton ve Slogan Alanı */
.president-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto; /* Sağa yasla */
}

.president-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid #333; /* Koyu çerçeve */
    color: #333;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .president-btn:hover {
        background-color: #333;
        color: #fff;
        text-decoration: none;
    }

.president-slogan {
    font-size: 24px;
    font-weight: 800;
    color: #e74c3c; /* Kırmızı */
    text-transform: uppercase;
    line-height: 1;
    text-align: right;
}

    .president-slogan span {
        display: block;
        font-size: 14px;
        color: #333;
        font-weight: 400;
        margin-bottom: 2px;
    }

/* RESPONSIVE AYARLAR */
@media (min-width: 992px) {
    .president-divider {
        display: block;
    }
}

@media (max-width: 991px) {
    .president-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .president-img-wrapper {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .president-info {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .president-title-box {
        text-align: center;
    }

    .president-actions {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .president-slogan {
        text-align: center;
    }

    .president-banner {
        padding: 30px 0;
    }
}
