﻿
.th-comment-form:has(#wp-temp-form-div),
.th-comments-wrap:has(#wp-temp-form-div) {
    padding: 0;
    box-shadow: none;
    display: none;
}


.th-widget-about .about-logo img {
    display: block;
    margin: 0 auto 33px;
}
/*===============================
  LANGUAGE MENU 
===================================*/

.header-layout1 .language-menu {
    border: 1px solid var(--light-color);
    border-radius: 100px;
    padding: 8px 10px;
    max-width: 140px;
}
.language-menu {
    display: flex;
    align-items: center;
    gap: 0px;
}

    .language-menu img {
        min-width: 16px;
        min-height: 16px;
        position: relative;
    }

    /* Nice-Select’in gövdesini “en alt düzey” göstermek için background ve border sıfırlanıyor */
    .language-menu .nice-select {
        font-family: var(--body-font);
        background: none;
        border: none;
        width: 100%;
        color: var(--black-color2);
        font-weight: 400;
        font-size: 14px;
        padding-left: 15px;
        line-height: 16px;
        padding: 0;
        border-radius: 0;
        padding-right: 50px;
        margin-right: 20px;
/*        border-right: 1px solid var(--body-color);*/
        height: 16px;
        cursor: pointer;
        position: relative;
    }
.language-menu .nice-select .list {
    left: -20px;
}

.language-menu .nice-select:after {
    content: "\f107";
    right: 35px;
    top: -19px;
    font-size: 14px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    border-bottom: none;
    border-right: none;
}

.language-menu .nice-select.open:after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.language-menu .nice-select.open .list {
    left: -20px;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.language-menu .nice-select .option {
    color: var(--title-color);
    min-height: 30px;
}

    .language-menu .nice-select .option.selected {
        color: var(--theme-color) !important;
        background: var(--theme-color) !important;
    }

        .language-menu .nice-select .option.selected.focus {
            color: #fff !important;
            background: var(--theme-color) !important;
        }

    .language-menu .nice-select .option:hover, .language-menu .nice-select .option.focus {
        background: var(--theme-color) !important;
        color: #fff !important;
    }






   /* tour widget*/

.snapshot-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .snapshot-list > li {
        display: flex;
        align-items: center;
        margin-bottom: .5rem;
        flex-wrap: wrap; /* gerekirse alt satıra geçsin */
        border: 1px solid #e1e4e5;
        border-radius: 4px;
        padding: 12px;
        margin-bottom: 4px
    }

        .snapshot-list > li i {
            margin-right: .5rem;
        }

        .snapshot-list > li strong {
            flex: 0 0 25%; /* kutucuk genişliği: %25 */
            min-width: 100px; /* en az 100px kalsın */
            margin: 0;
        }

        .snapshot-list > li span {
            flex: 1; /* kalan alanı kaplasın */
            margin-left:10px;
        }

/* Mobilde alt alta geçiş */
@media (max-width: 576px) {
    .snapshot-list > li {
        /* column yerine row + wrap */
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center; /* icon + strong ortalanmış kalır */

    }

        /* Başlık (strong) ve icon zaten kendi flex:0 0 25% ve min-width ayarlarıyla aynı satırda */
        .snapshot-list > li strong {
            /* gerekirse genişlik ayarlarında değişiklik yapabilirsiniz */
           /* flex: 0 0 auto;*/
            width: auto;
            margin-bottom: 0;
        }

        /* Değer (span) tam satırı kaplasın */
        /*.snapshot-list > li span {
            flex: 1 0 100%;*/ /* kalan alanı ve alt satırı kaplasın */
            /*margin-top: .25rem;
        }*/
}
   /* tour widget*/



   /*Page Title*/
.post-title-container {
    position: relative;
    /* fallback renk */
    /*     background-color: #a1833e; */
    background-size: cover;
    background: rgba(0, 0, 0, 0.4);
    height: 150px;
    background-position: center center;
    padding: 1rem 0; /* üst-alt boşluk verelim */
    line-height: normal; /* tek satır line-height’e bağlı kalmayalım */
    display: flex;
    align-items: center;
}

.post-title-content {
    width: 100%;
    max-width: 1200px; /* isteğe bağlı */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*    background-color: #fdb714; */
}



.post-title {
    display: inline-block; /* inline-block kalsın */
    max-width: calc(100% - 40px); /* ok pseudo-element’i için kenar boşluğu, ihtiyaca göre ayarla */
    white-space: normal; /* artık tek satır zorunluluğu yok */
    word-break: break-word; /* uzun kelimeleri de kır */
    overflow-wrap: break-word; /* gerektiğinde kır */
    margin-bottom: 0.5rem; /* alt boşluk, üst üste gelmesin */
    padding-left: calc(1rem + 0.5rem);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

    /* 3) Arrow pseudo-element’i başlık altına taşımak istersen */
    .post-title::before {
        content: "";
        position: absolute;
        left: 0; /* başlığın ucunun tam sağı */
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 20px solid #d4cb52; /* ok kalınlığı */
        border-top: 30px solid transparent; /* container yüksekliğinin yarısı */
        border-bottom: 30px solid transparent;
    }

.breadcumb-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

    .breadcumb-menu li {
        font-size: 14px;
        color: rgba(255,255,255,0.85);
    }

        .breadcumb-menu li + li {
            margin-left: 1rem;
            position: relative;
        }



        .breadcumb-menu li a {
            color: #fff;
            text-decoration: none;
        }

        .breadcumb-menu li.active {
            color: rgba(255,255,255,0.6);
            pointer-events: none;
        }

/* === Mobil Responsive Ayarları === */
@media (max-width: 1180px) {
    /* Container yüksekliğini otomatik, padding ile esnek yapıyoruz */
    .post-title-container {
        height: auto;
        padding: 1rem 0;
    }

    /* İçerikleri üst üste dizer, sola hizalarız */
    .post-title-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0 1rem;
    }

    /* Başlığı biraz küçült ve alt boşluk ekle */
    .post-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        /* Arrow çok büyükse gizle: */
        /* content: none; */
    }

        /* Eğer arrow’ı yine göstermek istersen küçült: */
        .post-title::before {
            content: "";
            position: absolute;
            left: 0; /* başlığın ucunun tam sağı */
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid #d4cb52; /* ok kalınlığı */
            border-top: 30px solid transparent; /* container yüksekliğinin yarısı */
            border-bottom: 30px solid transparent;
        }

    /* Breadcrumb’u altta, tam genişlikte göster */
    .breadcumb-menu {
        margin: 0;
        flex-wrap: wrap;
        font-size: 0.9rem;
        padding-left: calc(1rem + 0.5rem);
    }

        /* İkinci öğe arasına slash veya istediğin ayırıcı koyabilirsin */
        .breadcumb-menu li + li::before {
            content: "/";
            margin: 0 0.5rem;
            color: rgba(255,255,255,0.6);
        }

        /* Linklere biraz daha büyük dokunma alanı */
        .breadcumb-menu li {
            margin-bottom: 0.25rem;
        }
}

   
   
   /*Page Title*/


   /*widget*/
.box-shadow {
    /* Yatay sapma, dikey sapma, bulanıklık yarıçapı, yayılma yarıçapı, renk */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    border-radius: 4px; /* isteğe bağlı */
    transition: box-shadow 0.3s ease;
}

    .box-shadow:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
    }
   /*widget*/


   /*Cookis*/
.cookie-consent .container {
    padding: 10px 20px;
}
.cookie-consent 

{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    font-size: 14px;
    color: #212529;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    margin: 0;
    padding: 0; /* Bu önemli */
}
}

    .cookie-consent a {
        color: #0d6efd;
        text-decoration: underline;
    }

        .cookie-consent a:hover {
            text-decoration: none;
        }

    .cookie-consent button {
        white-space: nowrap;
    }

   /*Cookis*/

.header-layout1 .header-right .header-links ul.nav > li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -27px;
    height: 14px;
    width: 1px;
    background-color: #999;
}

/* Eğer for some reason dropdown içindeki li’lere de yansıyorsa sıfırla */
.header-layout1 .header-right .header-links .dropdown-menu li::after {
    content: none;
}

/* Sadece userDropdown menüsü altındaki dropdown-item’lar */
.dropdown-menu[aria-labelledby="userDropdown"] .dropdown-item {
    display: block; /* mutlaka ekleyin, yoksa width:100% işlemez */
    width: 100%;
}

    /* Hover/focus olduğunda tüm genişlikte arka plan rengi */
    .dropdown-menu[aria-labelledby="userDropdown"] .dropdown-item:hover,
    .dropdown-menu[aria-labelledby="userDropdown"] .dropdown-item:focus {
        background-color: #f5f5f5;
        color: #212529;
    }

.footer-wrapper {
    background-color: #28283a!important;
    background-image: url(/general/img/img-siluet-footer.png);
    background-repeat: no-repeat;
    background-position: bottom center;
}





.th-swiper-custom {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

    .th-swiper-custom .slider-arrow {
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 6px;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .th-swiper-custom .swiper-pagination {
        display: none; /* eğer altta pagination istemiyorsan */
    }

@media (max-width: 768px) {
    .th-swiper-custom {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
    }
}


fieldset {
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 2rem 1.25rem 1.25rem;
    margin-top: 2rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

    fieldset:hover {
        border-color: #0d6efd;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
    }

legend {
    font-weight: 600;
    font-size: 1.125rem;
    color: #0d6efd;
    padding: 0 1rem;
    background: #fff;
    position: absolute;
    top: -1.1rem;
    left: 1.5rem;
    z-index: 1;
    transition: color 0.3s ease;
}

fieldset:hover legend {
    color: #0a58ca;
}

legend i {
    margin-right: 0.5rem;
}



/* Ortak input stili */
.input-validation-error {
    border: 1px solid #dc3545 !important; /* Kırmızı çerçeve */
    background-color: rgba(220, 53, 69, 0.05); /* Çok açık kırmızı zemin */
    border-radius: 4px; /* Yumuşak köşeler */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); /* Başlangıçta gölge yok */
}

    /* Odaklandığında daha belirgin gölge */
    .input-validation-error:focus {
        outline: none;
        border-color: #dc3545 !important;
        box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
    }

/* Select kutuları için de aynı görünümü uygula */
select.input-validation-error {
    border: 1px solid #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.03);
}

/* Time, date vb. özel input tipleri */
input[type="time"].input-validation-error,
input[type="date"].input-validation-error,
input[type="datetime-local"].input-validation-error {
    border: 1px solid #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.03);
}

/* Validation mesajlarını stilize etmek isterseniz */
.field-validation-error {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

/* Hata iconu eklemek isterseniz (opsiyonel) */
.input-validation-error {
    padding-right: 2rem; /* icon alanı için boşluk */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' fill='%23dc3545' viewBox='0 0 16 16'%3e%3cpath d='M8.982 1.566a1 1 0 0 0-1.964 0L5.7 10.344a1 1 0 0 0 .99 1.112h2.62a1 1 0 0 0 .99-1.112L8.982 1.566zM8 13a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem 1rem;
}

/* Tüm doğrulama mesajlarını öne çıkar */
.field-validation-error {
    display: block; /* Alt satıra yerleşsin */
    color: #dc3545; /* Bootstrap’ın kırmızı tonu */
    font-size: 0.875rem; /* Küçük ama okunaklı */
    font-weight: 500; /* Biraz kalın */
    margin-top: 0.25rem; /* Input’tan biraz boşluk */
    line-height: 1.2; /* Sıkışık satır yüksekliği */
}

    /* Önüne bir uyarı ikon’u ekleyelim */
    .field-validation-error::before {
        content: "⚠️"; /* Unicode uyarı işareti */
        margin-right: 0.25rem; /* Mesajdan önce boşluk */
        vertical-align: middle;
    }




.breadcumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* Opaklık: %45 siyah */
    z-index: 1;
}

.breadcumb-wrapper .container {
    position: relative;
    z-index: 2; /* Overlay altında kalmasın */
}

.breadcumb-title {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); /* Yazıya daha net kontrast */
}

.breadcumb-menu li {
    color: rgba(255, 255, 255, 0.85);
}