/*================================================
  Lang Switcher Button & Custom PHP Site Additions
==================================================*/

/* Header Logo - temel stil (genişlik header.php'den inline gelir) */
.header-main-one-wrapper .thumbnail {
    flex-shrink: 0;
}

.header-main-one-wrapper .thumbnail img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Dil Değiştirme Butonu */
.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    background: var(--color-blue, #0b4df5);
    color: #fff !important;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-left: 15px;
    text-decoration: none;
    line-height: 1;
    height: 30px;
}

.lang-switcher-btn i {
    font-size: 12px;
}

.lang-switcher-btn:hover {
    background: var(--color-primary, #20282D);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Header top area - right kısmı için düzeltme */
.header-top-one-wrapper .right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Breadcrumb (Alt sayfalar için) */
.rts-breadcrumb-area {
    background-color: var(--color-primary, #20282D);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.rts-breadcrumb-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 77, 245, 0.15), rgba(0, 0, 0, 0.4));
}

.breadcrumb-inner-one {
    position: relative;
    z-index: 1;
}

.breadcrumb-inner-one h1.title {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "/";
}

/* Nav active state */
.header-main .nav-area ul li.active>a {
    color: var(--color-blue, #0b4df5);
}

/* Contact page form */
.contact-form-wrapper .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color 0.3s;
    background: #fff;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--color-blue, #0b4df5);
    box-shadow: 0 0 0 3px rgba(11, 77, 245, 0.1);
    outline: none;
}

.contact-form-wrapper label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-heading-1, #1C2539);
    display: block;
}

.contact-form-wrapper .form-group {
    margin-bottom: 0;
}

/* Blog Sidebar – Son Yazılar Fotoğraf Küçültme */
/* Sidebar sütunu: tema -177px negatif margin nedeniyle arama kutusu yukarı çıkıyor.
   Sidebar'ın ilk elementi için üstten boşluk eklenmiştir. */
.blog-list-style .rts-single-wized.search1 {
    margin-top: 177px;
}


/* Mobile responsive */
@media (max-width: 767px) {
    .lang-switcher-btn {
        margin-left: 5px;
    }

    .breadcrumb-inner-one h1.title {
        font-size: 28px;
    }

    .rts-breadcrumb-area {
        padding: 60px 0 40px;
    }
}