.h1, h1 {
    font: 18px / 24px 'Nanum Myeongjo', sans-serif;
    margin: 0 0 10px;
    letter-spacing: .1em;
    text-transform: capitalize;
    font-weight: 400;
}

.h2, h2 {
    font: 34px / 40px 'Josefin Sans', sans-serif;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 300;
}

.h3, h3 {
    font: 36px / 42px 'Josefin Sans', sans-serif;
    margin: 0 0 30px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 300;
}

.h5, h5 {
    font: 26px / 32px 'Josefin Sans', sans-serif;
    margin: 0 0 20px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 300;
}

p {
    font: 16px / 24px 'Josefin Sans', sans-serif;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    font: 18px / 18px 'Josefin Sans', sans-serif;
    font-weight: 300;
}

    .footer ul li {
        cursor: pointer;
    }

.subheading-color {
    color: #777
}

.book-room-btn {
    position: fixed;
    top: 25%;
    right: 20px; /* Scrollbar'dan uzak durması için */
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background-color: #cb806a;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    font-weight: 600;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .book-room-btn i {
        margin-right: 10px;
        transform: rotate(90deg); /* ikon tekrar düzleştirilir */
    }
    /* Hover efekti */
    .book-room-btn:hover {
        background-color: #e6efe6;
        color: #1a1a1a
    }

/* Mobil görünüm */
@media (max-width: 768px) {
    .book-room-btn {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        width: 100%;
        justify-content: center;
        border-radius: 0;
    }

        .book-room-btn i {
            margin-right: 10px;
            transform: rotate(0); /* ikon tekrar düzleştirilir */
        }
}

.header .desktopNav__item > a i {
    font-size: 22px;
}

.header .desktopNav > * {
    padding: 8px 35px;
}




.box.text-box {
    position: relative;
    background-color: #f1f7f1; /* Açık yeşil ton */
    padding: 60px 20px 30px; /* Üste ekstra padding veriyoruz */
    text-align: center;
    color: #444;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

    .box.text-box span {
        color: #d8837a;
        font-style: italic;
    }

    .box.text-box .booknow {
        background: #e6efe6;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        transform: translateY(-100%);
        color: #1a1a1a;
        font-size: 14px;
        line-height: 14px;
        text-transform: uppercase;
        padding: 30px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        letter-spacing: .2em;
        z-index: 1000;
    }

        .box.text-box .booknow:hover {
            background: #f8f9fa;
            border-color: #aaa;
        }

        .box.text-box .booknow i {
            padding-right: 10px;
        }


@media (max-width: 768px) {
    .box.text-box {
        margin-top: 100px;
    }
}


.section-bottom-right-text-content {
    background-color: #fff;
    position: absolute;
    bottom: -100px;
    right: 0;
    width: 100%;
    max-width: 585px;
    height: auto;
    padding: 70px;
    text-align: left;
    z-index: 3;
}

    .section-bottom-right-text-content a {
        color: #cb806a;
        text-decoration: none;
        text-transform: initial;
        transition: color 0.3s;
        font: 18px 'Josefin Sans', sans-serif;
        font-weight: 200;
        justify-content: left;
    }



section.layout-pt-lg.layout-pb-lg {
    position: relative;
    padding-bottom: 150px; /* Kutu -100px taşıyor, bu alanı yaratıyoruz */
}


.section-top-left-text-content {
    background-color: #cb806a;
    color: #fff;
    position: absolute;
    top: 0;
    left: 5%;
    width: 500px;
    height: auto;
    padding: 70px;
    text-align: left;
    z-index: 99;
}

    .section-top-left-text-content h5, h1 {
        color: #fff;
    }

    .section-top-left-text-content .section-link-button {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
        font: 18px 'Josefin Sans', sans-serif;
        font-weight: 200;
        position: relative;
        padding-right: 60px;
    }

        .section-top-left-text-content .section-link-button::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 100%;
            margin-left: 10px;
            width: 400px;
            height: 1px;
            background-color: #fff;
            transform: translateY(-50%);
            z-index: 10;
        }


    .section-top-left-text-content p {
        color: #fff;
    }


.by-slide-box {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.by-slide-logo {
    width: 150;
    height: auto;
    object-fit: contain;
}

.by-slide-text {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.by-slide-button {
    background-color: #7b310c;
    color: white;
    font: 15px 'Josefin Sans', sans-serif;
    font-weight: 200;
    padding: 10px 20px;
    border-radius: 0;
    transition: background 0.3s;
}

    .by-slide-button:hover {
        background-color: #000;
        color: white;
    }


@media (max-width: 480px) {
    .by-slide-box {
        padding: 16px;
        max-width: 90%;
    }

    .by-slide-text {
        font-size: 14px;
    }

    .by-slide-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}




.roomCard__title {
    font-size: 26px;
    line-height: 32px;
}

.by-links {
    display: flex;
    gap: 16px; /* linkler arası boşluk */
    justify-content: center; /* ortalamak istersen */
}

    .by-links a {
        color: #cb806a;
        text-decoration: none;
        transition: color 0.3s;
        font: 18px 'Josefin Sans', sans-serif;
        font-weight: 200;
    }

        .by-links a:hover {
            color: #000; /* üzerine gelince biraz koyusu */
        }

.by-link-button-wrap {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.by-link-button {
    color: #cb806a;
    text-decoration: none;
    transition: color 0.3s;
    font: 18px 'Josefin Sans', sans-serif;
    font-weight: 200;
    position: relative;
    padding-right: 60px; /* Butonla çizgi arası boşluk */
}

    .by-link-button.white {
        color: #fff;
    }

    .by-link-button:hover {
        color: #000;
    }

    .by-link-button::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        margin-left: 10px;
        width: 400px;
        height: 1px;
        background-color: #cb806a;
        transform: translateY(-50%);
        z-index: 10;
    }

    .by-link-button.white::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        margin-left: 10px;
        width: 400px;
        height: 1px;
        background-color: #fff;
        transform: translateY(-50%);
        z-index: 10;
    }



@media (max-width: 768px) {
    .by-link-button::after {
        display: none;
    }

    .by-link-button {
        padding-right: 0; /* Sağ boşluğu da sıfırla */
    }

    .section-link-button::after {
        display: none;
    }

    .section-link-button {
        padding-right: 0; /* Sağ boşluğu da sıfırla */
    }
}


.swiper-bg-right-extend {
    width: 100%;
    height: 900px;
    background-color: #FFF9F5; /* yeşil ton */
    position: relative;
    right: -10%;
    margin-top: -800px; /* swiper'a yapışması için */
    z-index: 0;
}

@media (max-width: 768px) {
    .swiper-bg-right-extend {
        display: none;
    }
}

.swiper-bg-left-extend {
    width: 100%;
    height: 900px;
    background-color: #FFF9F5; /* yeşil ton */
    position: relative;
    left: -10%;
    margin-top: -800px; /* swiper'a yapışması için */
    z-index: 0;
}

@media (max-width: 768px) {
    .swiper-bg-left-extend {
        display: none;
    }
}


/* BY MENU TOGGLE */
.by-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: white; /* Arkaplan beyaz */
    color: #122223;
    transform: translateY(-100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 999999999;
    padding: 40px 20px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    overflow-y: auto;
}

    .by-nav-overlay.by-active {
        transform: translateY(0);
        opacity: 1;
    }

.by-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 55px;
    background: none;
    border: none;
    color: #a9a9a9;
    cursor: pointer;
}

.by-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
}

.by-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

    /* Ortalı Linkler */
    .by-nav-links a {
        background-color: transparent;
        position: relative;
        font: 12px / 12px 'Josefin Sans', sans-serif;
        color: var(--color-menu);
        padding: 8px 0;
        border-bottom: 1px solid hsla(0, 0%, 100%, 0);
        letter-spacing: .2em;
        text-transform: uppercase;
    }

        .by-nav-links a:hover {
            color: #cea184;
        }

/* Telefon */
.by-nav-phone a {
    font: 20px / 20px 'Josefin Sans', sans-serif;
    color: #cea184;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    display: block;
}

/* Buton */
.by-nav-btn .by-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #cea184;
    color: white;
    padding: 12px 24px;
    width: 200px; /* Sabit genişlik */
    height: 48px; /* Sabit yükseklik */
    border-radius: 0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
    text-align: center;
}

    .by-nav-btn .by-button:hover {
        background-color: #cb806a;
    }

.by-button .icon {
    font-size: 18px;
}

/* Mobil */
@media (max-width: 768px) {
    .by-nav-overlay {
        width: 100%;
    }
}




.by-gallery-img {
    transition: opacity 0.3s ease;
    opacity: 1;
    cursor: pointer;
}

    .by-gallery-img:hover {
        opacity: 0.7;
    }





@media (max-width: 600px) {
    .section-top-left-text-content {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
    }
}




.privacy-policy {
    display: flex;
    align-items: flex-start; /* checkbox ve yazıyı hizalar */
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

    .privacy-policy input[type="checkbox"] {
        margin-top: 0.2rem; /* checkbox biraz aşağı kayar yazıya hizalanır */
        width: 16px;
        height: 16px;
        accent-color: #007BFF; /* istersen */
    }

    .privacy-policy a {
        text-decoration: underline;
    }


.by-social-icons a {
    color: #cb806a;
}

    .by-social-icons a i {
        font-size: 25px;
    }




.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
}

    .swiper-pagination-bullet::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        background-color: #122223;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

.swiper-pagination-bullet-active {
    border: 2px solid #122223;
    opacity: 1;
}

@media (max-width: 768px) {
    .swiper-pagination {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        margin-left: auto;
        margin-right: auto;
    }
}





/* Arka plan */
.by-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal kutusu */
.by-modal {
    background-color: #fff;
    width: 800px; /* LG boyut */
    max-width: 95%;
    max-height: 100vh; /* Taşarsa scroll */
    overflow-y: auto;
   
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0; /* Keskin köşeler */
}

/* Çarpı */
.by-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 50px;
    color: #747474;
    background: none;
    border: none;
    cursor: pointer;
}

    .by-modal-close:hover {
        color: rgb(0, 0, 0);
    }

.by-modal-content {
    padding: 20px;
}

.by-modal-content p {
    margin-bottom: 16px;
}

.by-modal-content img {
   max-width:50%
}

.by-modal-footer {
    border-top: 1px solid #eee;
    background-color: #f8f9fa;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .by-modal-footer label {
        display: flex;
        align-items: center;
        gap: 6px; /* kutu ile yazı arasında boşluk */
        font-size: 14px;
    }


    .by-modal-footer button {
        padding: 5px 12px;
        font-size: 14px;
    }

.by-modal-footer div {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* metnin alt alta kırılmasını engeller */
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}


.foto-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.alt-foto {
    position: absolute;
    top: 430px;
    left: -50px;
    width: 100%;
    opacity: 0.6;
    z-index: 1;
}

.ust-foto {
    position: relative;
    width: 100%;
    z-index: 2;
}

@media (max-width: 768px) {
    .foto-wrapper {
        position: static;
    }

    .alt-foto {
        position: static;
        opacity: 1;
        margin-top: 20px;
    }

    .ust-foto {
        position: static;
    }
}

.custom-input {
    border: none;
    border-bottom: 1px solid #555 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.text-badge {
    background-color: rgb(203, 128, 106);
    color: rgb(255, 255, 255);
    padding: 0px 5px;
    display: inline-block;
    text-decoration: none !important;
}

    .text-badge:hover {
        color: rgb(255, 255, 255);
        text-decoration: none;
    }


@media screen and (max-width:770px) {
    .sectionBg, .img-ratio {
        position: relative !important
    }
}


.footer-logo-wrapper {
    text-align: center; /* Sadece logo için ortalama */
}

.footer-logo-img {
    width: 200px;
}

/* Mobil görünüm için */
@media (max-width: 768px) {
    .footer-logo-img {
        width: 150px;
    }
}




.package-text-box {
    background: #cb806a;
    position: absolute !important;
    top: 0 !important;
    right: 13%;
    width: 0;
    min-width: 550px;
    height: auto;
    min-height: 70%;
    transform: translateY(50px);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: visible;
    padding: 5%;
}



.image-wrapperr {
    position: relative;
    width: fit-content;
}

.main-imagee {
    width: 630px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.secondary-imagee {
    position: absolute;
    bottom: 120px;
    left: 550px;
    width: 350px; /* İstersen biraz daha küçük yapabilirsin */
    z-index: 1; /* Altta olacak */
    opacity: 0.9; /* İstersen hafif saydam yapabilirsin */
}



.text-boxx {
    position: absolute;
    top: 20px;
    left: 480px;
    background: #cb806a;
    padding: 20px;
    z-index: 3;
    max-width: 550px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /*height: 450px;*/
    height: auto;
    width: 380px;
}

    .text-boxx p {
        font: 16px / 24px 'Josefin Sans', sans-serif;
        margin-bottom: 20px;
        font-weight: 200;
    }

    .text-boxx ul {
        font: 16px / 24px 'Josefin Sans', sans-serif;
        margin-bottom: 20px;
        font-weight: 200;
        color: #fff
    }

@media (max-width: 768px) {
    .image-wrapperr {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text-boxx {
        position: static; /* Normal akışa dönüyor */
        margin-top: 20px;
        max-width: 100%;
        width: 100%;
        text-align: center;
        box-shadow: none; /* İstersen mobile'da shadow kaldırabiliriz */
    }

    .secondary-imagee {
        display: none; /* Secondary image mobile'da gizleniyor */
    }
}

@media (max-width: 768px) {
    .hero.-type-7 .hero__bg {
        height: 500px; /* veya görsel boyutuna göre 500px vs */
    }

        /* Ayrıca resmi düzgün göstermek için */
        .hero.-type-7 .hero__bg img {
            object-fit: contain;
            width: 100%;
            height: 100%;
        }
}


/* Masaüstünde normal görünüm */
.hero__pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.hero__nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 5;
    transform: translateY(-50%);
}

/* Mobilde düzenleme */
@media (max-width: 768px) {
    .hero__pagination {
        bottom: 20px; /* biraz yukarı çıksın */
    }

    .hero__nav {
        top: auto;
        bottom: 80px; /* sliderın altına gelsin */
        padding: 0 20px;
        transform: none; /* merkezde durmasın, doğal hizalansın */
    }

        .hero__nav .button {
            width: 50px; /* butonlar küçülsün */
            height: 50px;
        }

            .hero__nav .button i {
                font-size: 18px; /* ikonlar da küçülsün */
            }
}


.pageHero2 {
    position: relative;
    display: flex;
    align-items: center;
    height: 550px;
    z-index: 0;
}

@media (max-width: 767px) {
    .pageHero2 {
        height: auto;
        padding-top: 220px;
        padding-bottom: 80px;
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .pageHero2 {
        padding-top: 180px;
    }
}

.pageHero2 .pageHero2__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .pageHero2 .pageHero2__bg img {
        width: 100%;
        height: 90%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.pageHero2 .pageHero2__subtitle {
    font-weight: 500;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .pageHero2 .pageHero2__subtitle {
        margin-bottom: 30px;
    }
}

.pageHero2 .pageHero2__title {
    font-size: 92px;
    line-height: 0.65;
}

@media (max-width: 991px) {
    .pageHero2 .pageHero2__title {
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .pageHero2 .pageHero2__title {
        font-size: 68px;
    }
}

@media (max-width: 575px) {
    .pageHero2 .pageHero2__title {
        font-size: 50px;
    }
}

.pageHero2 .pageHero2__text {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .pageHero2 .pageHero2__text {
        margin-top: 30px;
    }
}


cite {
    position: relative;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7rem;
    text-align: center;
    display: inline-block;
    margin: 2rem 2rem 1rem 2rem;
    font-family: 'Josefin Sans', sans-serif;
}

    cite:before {
        top: 0;
        left: -2.2rem;
        transform: rotate(180deg);
    }

    cite:before, cite:after {
        content: "";
        background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M11 9.275c0 5.141-3.892 10.519-10 11.725l-.984-2.126c2.215-.835 4.163-3.742 4.38-5.746-2.491-.392-4.396-2.547-4.396-5.149 0-3.182 2.584-4.979 5.199-4.979 3.015 0 5.801 2.305 5.801 6.275zm13 0c0 5.141-3.892 10.519-10 11.725l-.984-2.126c2.215-.835 4.163-3.742 4.38-5.746-2.491-.392-4.396-2.547-4.396-5.149 0-3.182 2.584-4.979 5.199-4.979 3.015 0 5.801 2.305 5.801 6.275z"/></svg>');
        position: absolute;
        width: 30px;
        height: 30px;
        background-repeat: no-repeat;
        background-size: contain;
        opacity: .15;
    }

@media (min-width: 768px) {
    cite {
        font-size: 1.3rem;
        line-height: 2.2rem;
        margin: 4rem 1rem 1rem 1rem;
    }
}

@media (min-width: 768px) {
    cite:before {
        left: -3rem;
    }
}

@media (min-width: 768px) {
    cite:before, cite:after {
        width: 50px;
        height: 50px;
    }
}

cite:after {
    bottom: 0;
    right: -2rem;
}

cite:before, cite:after {
    content: "";
    background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M11 9.275c0 5.141-3.892 10.519-10 11.725l-.984-2.126c2.215-.835 4.163-3.742 4.38-5.746-2.491-.392-4.396-2.547-4.396-5.149 0-3.182 2.584-4.979 5.199-4.979 3.015 0 5.801 2.305 5.801 6.275zm13 0c0 5.141-3.892 10.519-10 11.725l-.984-2.126c2.215-.835 4.163-3.742 4.38-5.746-2.491-.392-4.396-2.547-4.396-5.149 0-3.182 2.584-4.979 5.199-4.979 3.015 0 5.801 2.305 5.801 6.275z"/></svg>');
    position: absolute;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .15;
}

.cite-author {
    text-align: center;
    font-size: 1rem;
    font-weight: 200;
}

@media (min-width: 768px) {
    .cite-author {
        font-size: 1.2rem;
    }
}


.by-text2-content {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
    padding: 20px;
    margin: 0 1.5rem;
    height:320px
    
}
   

    .by-text2-content.border-right {
        border-right: 1px solid #000
    }

    .by-text2-content h3 {
        text-align: center;
        text-transform: initial;
        font-weight: 400;
        font-size: 26px;
    }

    .by-text2-content ul {
        list-style-type: disc; /* normal dolu siyah yuvarlak */
        padding-left: 20px; /* içeriden boşluk */
    }

        .by-text2-content ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            font-weight:300;
        }

            .by-text2-content ul li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 7px;
                width: 8px;
                height: 8px;
                background-color: black;
                border-radius: 50%;
            }




@media screen and (max-width:770px) {
    .by-text2-content.border-right {
        border-right: 0;
    }
}

.dikey-cizgi {
    width: 1px; /* Çizginin genişliği */
    height: 100px; /* Çizginin yüksekliği */
    background-color: black; /* Çizginin rengi */
    margin: 20px; /* Çizgi etrafında boşluk */
}


#owl2.owl-carousel .owl-dots {
    text-align: center; /* Noktaları ortalar */
    margin-top: 20px; /* Noktalar ile slider arasına boşluk */
}

    #owl2.owl-carousel .owl-dots .owl-dot {
        display: inline-block; /* Noktaların yatayda sıralanmasını sağlar */
        margin: 0 5px; /* Her nokta arasında boşluk bırakır */
        width: 10px; /* Noktaların boyutu */
        height: 10px; /* Noktaların boyutu */
        background-color: #ccc; /* Noktaların normal rengi */
        border-radius: 50%; /* Noktaları yuvarlak hale getirir */
        cursor: pointer; /* Fareyle üzerine gelindiğinde tıklanabilir olduğunu gösterir */
        transition: background-color 0.3s ease; /* Geçiş efekti */
    }

        #owl2.owl-carousel .owl-dots .owl-dot.active {
            background-color: #000; /* Aktif noktanın rengi siyah */
        }

        #owl2.owl-carousel .owl-dots .owl-dot:hover {
            background-color: #666; /* Üzerine gelindiğinde nokta rengini değiştir */
        }



#owl-room-detail-page-header.owl-carousel .item img {
    width: 100%;
    height: auto;
    display: block !important
}

#owl-room-detail-page-header {
    position: relative;
    cursor:pointer;
}

    #owl-room-detail-page-header .owl-nav {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    #owl-room-detail-page-header .owl-nav button.owl-prev,
    #owl-room-detail-page-header .owl-nav button.owl-next {
        background-color: rgba(241, 247, 241, 0.8);
        color: #000;
        border: none;
        font-size: 18px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        line-height: 40px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        #owl-room-detail-page-header .owl-nav button.owl-prev:hover,
        #owl-room-detail-page-header .owl-nav button.owl-next:hover {
            background-color: #f1f7f1;
        }


    #owl-room-detail-page-header .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
    }

        #owl-room-detail-page-header .owl-nav button.owl-prev,
        #owl-room-detail-page-header .owl-nav button.owl-next {
            color: #484848;
            border: none;
            padding: 12px;
            font-size: 30px;
            cursor: pointer;
            border-radius: 50%;
            pointer-events: all;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

            #owl-room-detail-page-header .owl-nav button.owl-prev:hover,
            #owl-room-detail-page-header .owl-nav button.owl-next:hover {
                background-color: transparent !important;
            }

            #owl-room-detail-page-header .owl-nav button.owl-prev i,
            #owl-room-detail-page-header .owl-nav button.owl-next i {
                pointer-events: none;
            }

    /* Sol ve sağ ok pozisyonları */
        #owl-room-detail-page-header .owl-nav button.owl-prev {
            margin-left: 10px;
        }

        #owl-room-detail-page-header .owl-nav button.owl-next {
            margin-right: 10px;
        }



.pageHero3 {
    position: relative;
    display: flex;
    align-items: center;
    height: 350px;
    z-index: 0;
}

@media (max-width: 767px) {
    .pageHero3 {
        height: auto;
        padding-top: 220px;
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .pageHero3 {
        padding-top: 180px;
    }
}

.pageHero3 .pageHero3__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.pageHero3 .pageHero3__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pageHero3 .pageHero3__subtitle {
    font-weight: 500;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .pageHero3 .pageHero3__subtitle {
        margin-bottom: 30px;
    }
}

.pageHero3 .pageHero3__title {
    font-size: 60px;
    line-height: 0.65;
}

@media (max-width: 991px) {
    .pageHero3 .pageHero3__title {
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .pageHero3 .pageHero3__title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .pageHero3 .pageHero3__title {
        font-size: 40px;
    }
}

.pageHero3 .pageHero3__text {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .pageHero3 .pageHero3__text {
        margin-top: 30px;
    }
}


.by-tabs-container {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.by-tabs-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.by-tabs-button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    color: #000;
}

    .by-tabs-button:hover {
        background-color: #F9DABA;
        color: #000;
    }

    .by-tabs-button.active {
        background-color: #F9DABA;
        color: #000;
    }

.by-tabs-content .by-tabs-pane {
    display: none;
}

    .by-tabs-content .by-tabs-pane.active {
        display: block;
    }

.by-tabs-dropdown {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

    .by-tabs-dropdown select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: #F9DABA;
        color: #000;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        max-width: 300px;
        width: 100%;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='10'%20height='7'%3E%3Cpath%20fill='black'%20d='M0%200l5%207%205-7z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 10px 7px;
    }

/* Mobil: butonları gizle, dropdown göster */
@media (max-width: 768px) {
    .by-tabs-controls {
        display: none;
    }

    .by-tabs-dropdown {
        display: block;
    }
}




.by-sub-tabs-container {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.by-sub-tabs-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.by-sub-tabs-button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    color: #000;
}

    .by-sub-tabs-button:hover {
        background-color: #F9DABA;
        color: #000;
    }

    .by-sub-tabs-button.active {
        background-color: #F9DABA;
        color: #000;
    }

.by-sub-tabs-content .by-sub-tabs-pane {
    display: none;
}

    .by-sub-tabs-content .by-sub-tabs-pane.active {
        display: block;
    }

.by-sub-tabs-dropdown {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

    .by-sub-tabs-dropdown select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: #F9DABA;
        color: #000;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        max-width: 300px;
        width: 100%;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='10'%20height='7'%3E%3Cpath%20fill='black'%20d='M0%200l5%207%205-7z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 10px 7px;
    }

/* Mobil: butonları gizle, dropdown göster */
@media (max-width: 768px) {
    .by-sub-tabs-controls {
        display: none;
    }

    .by-sub-tabs-dropdown {
        display: block;
    }
}

/* Google Maps iframe container */
.map-container {
    position: relative;
    width: 100%;
    height: 500px; /* Harita yüksekliğini ihtiyaca göre ayarlayabilirsiniz */
    overflow: hidden; /* İçerik dışarı taşmasın */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge ekler */
    background-color: #f4f4f4; /* Arka plan rengi */
}

    /* Google Maps iframe */
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none; /* iframe sınırlarını kaldırır */
    }



@media screen and (min-width:1000px) and (max-width:1100px) {
    .header .desktopNav > * {
        padding: 8px 11px;
    }

    .header .desktopNav__item > a {
        font-size: 13px;
    }
}

@media screen and (min-width:1100px) and (max-width:1200px) {
    .header .desktopNav > * {
        padding: 8px 14px;
    }

    .header .desktopNav__item > a {
        font-size: 14px;
    }
}

@media screen and (min-width:1200px) and (max-width:1400px) {
    .header .desktopNav > * {
        padding: 8px 18px;
    }
}

@media screen and (min-width:1400px) and (max-width:1500px) {
    .header .desktopNav > * {
        padding: 8px 20px;
    }
}

@media screen and (max-width:575px) {
    .SideHero {
        margin-top: 80px;
    }

    div#firstSwiper {
        margin-top: -50px;
    }
}

@media screen and (min-width:575px) and (max-width:1000px) {
    .SideHero {
        margin-top: 105px;
    }
}

.SideHero {
   /* margin-bottom: 20px;*/
}
#owl1{
    cursor:pointer;
}
#owl1 .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

    #owl1 .owl-nav button.owl-prev,
    #owl1 .owl-nav button.owl-next {
        color: #484848;
        border: none;
        padding: 12px;
        font-size: 40px;
        cursor: pointer;
        border-radius: 50%;
        pointer-events: all;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }
    
        #owl1 .owl-nav button.owl-prev:hover,
        #owl1 .owl-nav button.owl-next:hover {
            background-color: transparent !important;
        }

        #owl1 .owl-nav button.owl-prev i,
        #owl1 .owl-nav button.owl-next i {
            pointer-events: none;
        }

    /* Sol ve sağ ok pozisyonları */
    #owl1 .owl-nav button.owl-prev {
        margin-left: 10px;
    }

    #owl1 .owl-nav button.owl-next {
        margin-right: 10px;
    }


.by-sub-tabs-container {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.by-sub-tabs-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.by-sub-tabs-button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    color: #000;
}

    .by-sub-tabs-button:hover {
        background-color: #F9DABA;
        color: #000;
    }

    .by-sub-tabs-button.active {
        background-color: #F9DABA;
        color: #000;
    }

.by-sub-tabs-content .by-sub-tabs-pane {
    display: none;
}

    .by-sub-tabs-content .by-sub-tabs-pane.active {
        display: block;
    }

.by-sub-tabs-dropdown {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

    .by-sub-tabs-dropdown select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: #F9DABA;
        color: #000;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        max-width: 300px;
        width: 100%;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='10'%20height='7'%3E%3Cpath%20fill='black'%20d='M0%200l5%207%205-7z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 10px 7px;
    }

/* Mobil: butonları gizle, dropdown göster */
@media (max-width: 768px) {
    .by-sub-tabs-controls {
        display: none;
    }

    .by-sub-tabs-dropdown {
        display: block;
    }

}


#firstSwiper {
    cursor: pointer; /* Fareyi el işaretine dönüştür */
}

.by-swiper {
    cursor: pointer;
}

.js-section-slider{
    cursor:pointer;
}



.by-grid-wrapper > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .by-grid-wrapper > div > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }

.by-grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

    .by-grid-wrapper .wide {
        grid-column: span 2;
    }

    .by-grid-wrapper .tall {
        grid-row: span 2;
    }

    .by-grid-wrapper .big {
        grid-column: span 2;
        grid-row: span 2;
    }



