﻿/* Sol üstteki resim için düzenleme */
.left-image {
    width: 100px;
    position: absolute;
    margin-bottom: 20%;
    left: 10px;
    z-index: 10;
}



/* Popup Container */
/* Popup Container */
.popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; /* Başlangıçta gizli */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80%;
    background-color: #32768b; /* Popup arka plan rengi */
    opacity: 0.9; /* Saydamlık efekti arka plan için */
    z-index: 9999;
}

/* Popup form */
.popup-form {
    background-color: #32768b;
    padding: 20px;
    height: 70%;
    max-width: 800px;
    width: 100%;
   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    opacity: 1; /* Saydamlık sadece popup içeriğine uygulanmaz */
}

/* Input ve Butonlar için stil */
input.form-control, button {
    opacity: 1; /* Saydamlık etkisini kaldır */
    background-color: #fff; /* Arka plan rengini beyaz yap */
   
    color: #005671; /* Yazı rengi */
}

/* Input alanları ve butonları daha belirgin yapmak için */
input.form-control, button {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px; /* Kenarları yuvarlak yap */
}

button {
    background-color: #bdb39a; /* Buton arka plan rengi */
    font-size: 16px;
}

    /* Butonların üzerine gelindiğinde renk değişimi */
    button:hover {
        background-color: #4d6074;
        color: #fff;
    }


.right-image-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px); /* Yüksekliği alttaki bar ile hizaladım */
    margin-bottom: 0;
    overflow: hidden; /* Resmin taşmasını engeller */
}

    .right-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Resmi düzgün bir şekilde sığdırır */
        margin-top: 10%;
        margin-bottom: 0;
    }

/* Sosyal medya ikonları için sağ üstteki kutu */
.social-icons-container {
    position: absolute;
    right: 210px; /* Sağdan 10px boşluk */
    background-color: #bdb39a; /* Yarı saydam arka plan */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 250px; /* Kutu genişliği */
    height: 50px; /* Kutu yüksekliği */
    z-index: 2;
}
   
@media (max-width: 768px) {
    .social-icons-container {
        position: absolute;
        right: 0px; /* Sağdan 10px boşluk */
        background-color: #bdb39a; /* Yarı saydam arka plan */
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 200px; /* Kutu genişliği */
        height: 50px; /* Kutu yüksekliği */
        z-index: 2;
    }
}


/* İkonların stili */
.social-icons-container i {
    color: #334354;
    font-size: 1.5rem; /* İkon boyutu */
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .social-icons-container i:hover {
        transform: scale(1.2); /* Hover efekti */
    }

/* Alt bar */
.bottom-bar {
    position: fixed; /* Footer'ı sayfa içeriğinin en altına yerleştirir */
    bottom: 0; /* Sayfanın en altına yapıştırır */
    left: 0;
    right: 0;
    height: 50px; /* Barın yüksekliğini ayarla */
    background-color: #005671;
    z-index: 999;
    display: flex;
    justify-content: space-between; /* Sol ve sağ tarafları ayıracak */
    align-items: center;
}


/* Sol taraftaki ikonların düzenlemeleri */
.left-icons i {
    font-size: 35px; /* İkon boyutunu ayarla */
    cursor: pointer; /* Tıklanabilir yap */
}

/* Sağ taraftaki ikonların düzenlemeleri */
.right-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .right-icons i {
        font-size: 35px; /* İkon boyutunu ayarla */
        cursor: pointer; /* Tıklanabilir yap */
        margin-left: 10px; /* İkonlar arasında boşluk bırak */
    }

/* Kişi ikonu */
.person-bar {
    background-color: #354252;
    padding: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 30px;
    height: 50px; /* Footer ile aynı yükseklik */
}




/* Arama butonunu select ile hizaladım */
.select-container {
    display: flex;
    align-items: center;
}

    .select-container select {
        flex: 1;
    }

    .select-container .search-btn {
        color: white;
        background-color: #354252;
    }

.content-container {
    height: 100vh; /* Full screen high */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.row {
    margin-bottom: 0;
    height: 100%;
}

/* Orijinal kodun temel stillerine dokunmadan, responsive özellik ekliyoruz */

/* Flex düzenini ve menülerin sıralanmasını ayarlıyoruz */
/*.bottom-barr-items {
    display: flex;
   
    align-items: center;*/ /* Dikey hizalama */
    /*padding: 10px 0;
    gap: 60px;
}

.bottom-barr {
    margin-top: 140px;
    background-color: #354252;
    position: relative;
    z-index: 1;
    padding: 10px;
    display: none;*/ /* Başlangıçta gizli */
    /*flex-direction: column;*/ /* Alt menülerin sıralanması için */
/*}

.bottom-barr-item {
    flex: none;*/ /* Menü elemanlarının genişliği sabit */
    /*text-align: center;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    position: relative;
    white-space: nowrap;*/ /* Uzun metinler taşmasın diye */
    /*line-height: 1;*/ /* Dikey hizalama */
/*}*/

/* Sub-menu başlangıçta gizli */
/*.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #005671;
    color: white;
    padding: 5px;
    opacity: 0.7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bottom-barr-item:hover .sub-menu {
    display: block;
}

.sub-menu-item {
    padding: 10px 15px;
    cursor: pointer;
}

    .sub-menu-item:hover {
        background-color: #f0f0f0;
        color: #000;
    }*/

/* Media query ile mobil uyumlu hale getirme */
@media (max-width: 768px) {
    .bottom-barr-items {
        flex-direction: column; /* Mobilde menü öğelerini dikey sıralıyoruz */
        gap: 10px; /* Aralarındaki boşluğu küçültüyoruz */
    }

    .bottom-barr {
        flex-direction: column; /* Menüler alt alta yerleşecek */
        padding: 15px 10px; /* Daha geniş bir padding ekliyoruz */
        margin-top: 35%;
    }

    .bottom-barr-item {
        text-align: left; /* Mobilde menü öğelerini sola hizalıyoruz */
        padding: 10px 15px;
        width: 100%; /* Menü öğelerinin genişliğini 100% yapıyoruz */
    }

    .sub-menu {
        position: relative; /* Alt menü konumunu değiştiriyoruz */
        top: 0;
        left: 0;
        width: 100%; /* Sub-menu genişliğini %100 yapıyoruz */
        opacity: 1;
    }

    /* Mobilde sub-menu item'larına daha fazla boşluk ekliyoruz */
    .sub-menu-item {
        margin-top: 5px;
    }
}

.popup {
    position: fixed;
    top: 23%;
    background-color: #32768b;
    color: white;
    opacity: 0.9;
    width: 100%;
    height: 60%;
    display: flex;
    padding: 0 10px;
    align-items: flex-start;
}

.popup-content {
    position: absolute;
    background-color: transparent;
    color: white;
    padding: 10px;
    text-align: left;
    display: block; /* Başlangıçta görünür */
    transform: translateY(-120px); /* Yazıları yukarı taşır */
}

    .popup-content.active {
        display: block; /* Her zaman görünür olacak */
    }

.vitrin-container {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    position: relative; /* Oklar için pozisyonlama yapabilmek adına */
}

.vitrin-header {
    display: flex;
    align-items: flex-end; /* Resim ve select öğelerinin alt kısmını hizalar */
    margin-bottom: 20px;
    position: relative;
}

.left-imageVitrin {
    width: 140px;
    position: relative; /* Alt hizalama için position değiştirildi */
    margin-bottom: -38px;
    align-self: flex-end; /* Resmi alt hizalamak için */
    margin-left: 30px;
}

@media (max-width: 768px) {
    .left-imageVitrin {
        width: 140px;
        position: relative; /* Alt hizalama için position değiştirildi */
        margin-bottom: -38px;
        align-self: flex-end; /* Resmi alt hizalamak için */
        margin-left: 0px;
    }
}

.vitrin-title {
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    margin-left: 20px;
}

.vitrin-titleInvestmentOpportunities {
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    margin-left: 20px;
}

/*.vitrin-selects {
    display: flex;
    gap: 20px;*/ /* Seçim kutuları arasındaki boşluk */
    /*flex-grow: 1;*/ /* Seçim kutularını esnek hale getirir */
    /*align-items: flex-end;*/ /* Alt hizalama sağlar */
    /*margin-left: 210px;
    margin-top: 90px;
}

.vitrin-select select {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 285px;
    margin-left: 15%;
}*/

@media (max-width: 768px) {
  
}

.vitrin-images {
    display: flex;
    flex-direction: column; /* Alt satırda 3 resim göstermek için kolon düzeni */
    gap: 20px;
    justify-content: center;
}

.vitrin-image-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.vitrin-image-container {
    text-align: center;
    width: 25%;
}

.vitrin-frame-row {
    display: flex;
    justify-content: space-between;
}

/*.vitrin-frame {
    position: relative;
    width: 30%;*/ /* Her resmin genişliği %30 olacak şekilde ayarlanıyor */
/*height: 140px;
    margin: 0;
}*/
/*@media (min-width: 1900px) {*/ /* Ekran genişliği 1024px veya daha fazla olduğunda */
/*.vitrin-frame {
        width: 350px;*/ /* Görselin genişliği */
/*height: auto;*/ /* Yüksekliği otomatik olarak ayarla */
/*}*/

/*.vitrin-selects {
    display: flex;
    gap: 20px;*/ /* Seçim kutuları arasındaki boşluk */
    /*flex-grow: 1;*/ /* Seçim kutularını esnek hale getirir */
    /*align-items: flex-end;*/ /* Alt hizalama sağlar */
    /*margin-left: 335px;*/
    /*margin-top: 90px;
}*/

.vitrin-frame-background-left {
    position: absolute;
    bottom: 0%; /* Çerçeve genişliği */
    left: 13px; /* Çerçeve genişliği */
    width: 100%;
    height: 80%;
    background-color: #005671;
    z-index: 1;
}

}

@media (min-width: 1600px) {
    .vitrin-select select {
        padding: 8px;
        font-size: 14px;
        border: 1px solid #ccc;
        width: 420px;
        margin-left: 15%;
    }
}

.vitrin-frame-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vitrin-frame-background-left {
    position: absolute;
    bottom: 0%;
    left: -20px;
    width: 100%;
    height: 80%;
    background-color: #005671;
    z-index: 1;
}

.vitrin-frame-background-right {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 80%;
    background-color: #bdb39a;
    z-index: 2;
}

.vitrin-img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 3;
    display: block;
}

.vitrin-text {
    position: relative;
    text-align: center;
    color: #005671;
    font-weight: bold;
    z-index: 3;
}

.price-tag {
    position: absolute;
    bottom: 20px; /* Resmin altına yakın */
    right: 10px; /* Sağ köşeye hizalı */
    background-color: #005671; /* Mavi arka plan */
    color: white;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 4; /* Fiyat etiketini en üstte tut */
    opacity: 0.8;
}

.vitrin-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
}

.vitrin-arrow-left {
    left: -60px; /* Sol üçgeni biraz daha sola kaydırdık */
}

.vitrin-arrow-right {
    right: -60px; /* Sağ üçgeni biraz daha sağa kaydırdık */
}

@media (max-width: 768px) {
    .vitrin-container {
        width: 90%; /* Mobilde daha geniş görünmesi için */
    }

    .vitrin-header {
        flex-direction: column;
        align-items: flex-start;
    }



    .vitrin-image-row {
        flex-direction: column; /* Resimlerin alt alta sıralanması */
        justify-content: center;
    }

    .vitrin-image-container {
        width: 100%; /* Resimler mobilde tam genişlikte */
    }

    .vitrin-img {
        width: 100%;
        max-width: 100%;
    }

    .vitrin-arrow {
        font-size: 30px; /* Okların boyutu mobilde biraz daha küçük */
        left: -40px; /* Okları sola daha yakın yap */
        right: -40px; /* Okları sağa daha yakın yap */
    }
}

.vitrin-frame2 {
    position: relative;
    width: 400px; /* Görselin genişliği */
    height: auto;
    margin-top: 5%;
}

.vitrin-frame-background2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*.vitrin-frame-background-left2 {
    position: absolute;
    bottom: -7%;*/ /* Çerçeve genişliği */
    /*left: -20px;*/ /* Çerçeve genişliği */
    /*width: 100%;
    height: 100%;
    background-color: #005671;
    z-index: 1;
}

.vitrin-frame-background-right2 {
    position: absolute;
    top: -20px;*/ /* Çerçeve genişliği */
    /*right: -20px;*/ /* Çerçeve genişliği */
    /*width: 100%;
    height: 100%;
    background-color: #bdb39a;
    z-index: 2;
}*/

/*.vitrin-img2 {
    position: relative;
    width: 100%;
    height: 300px;
    z-index: 3;*/ /* Resmi en üst katmanda tut */
    /*display: block;
}*/

.price-tag2 {
    position: absolute;
    top: 10px; /* Sol üst köşe için ayar */
    right: 10px; /* Sol köşe hizasında */
    background-color: #035672; /* Mavi arka plan */
    color: white;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 4; /* Fiyat etiketini en üstte tut */
    opacity: 0.8;
}

.image-container {
    display: flex;
    flex-wrap: wrap; /* Responsive uyum */
    width: 70%;
    margin: -40px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.image-left {
    flex: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-right: 3px solid #005671;
    padding: 20px;
    position: relative;
    flex-direction: column; /* Resmin altına diğer elemanları hizalamak için */
}



.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #005671;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s;
}

    .dot:hover {
        background-color: #bdb39a;
    }
/* Üst üçgen */
.triangle-left {
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid #bdb39a;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    cursor: pointer;
}

.triangle-right {
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 20px solid #005671;
    border-right: 20px solid transparent;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    cursor: pointer;
}

/* Yukarıya bakan üçgen */
.triangle-top {
    position: absolute;
    top: 1px; /* Üstten biraz uzaklaştır */
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #005671; /* Yukarıya bakan üçgenin rengi */
    border-bottom: 20px solid transparent; /* Üst üçgen */
    cursor: pointer;
}

/* Alt üçgen (aşağıya bakan) */
.triangle-bottom {
    position: absolute;
    bottom: 1px; /* Alttan biraz uzaklaştır */
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid transparent; /* Aşağıya bakan üçgenin rengi */
    border-bottom: 20px solid #bdb39a; /* Alt üçgen */
    cursor: pointer;
}

.scroll-up {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px; /* Yukarı kaydır görsel boyutu */
}

.scroll-down {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 60px;
    width: 40px; /* Aşağı kaydır görsel boyutu */
}


.triangle-left-Vitrin {
    position: absolute;
    left: 0%;
    top: 55%;
    transform: translateY(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid #bdb39a;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    cursor: pointer;
}

.triangle-right-Vitrin {
    position: absolute;
    right: 1%;
    top: 55%;
    transform: translateY(-50%);
    border-left: 20px solid #005671;
    border-right: 20px solid transparent;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    cursor: pointer;
}

.image-right {
    flex: 1; /* Sağ div dar alan */
    display: flex;
    flex-direction: column; /* Alt alta dizilim */
    justify-content: flex-start;
    background-color: #fff;
    padding: 20px;
    border-left: 3px solid #005671;
}

.right-top {
    padding: 10px;
    font-size: 14px;
    text-align: center;
    background-color: #bdb39a;
    color: #005576;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: #005671;
    margin: 10px 0;
}

.right-bottom {
    padding: 20px;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
    }

    .image-left, .image-right {
        flex: 1;
        border: none;
        border-bottom: 2px solid #005671;
    }

    .divider {
        margin: 8px 0;
    }

    .right-top, .right-bottom {
        padding: 10px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .image-container {
        width: 100%;
    }

    .image-left img {
        max-width: 90%;
    }

    .right-top, .right-bottom {
        padding: 8px;
        font-size: 12px;
    }
}

.h3-Etiket {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .h3-Etiket {
        margin-top: 27%;
    }
}

.imgShape7 {
    margin-top: 10%;
    margin-left: 3%;
}

.imgShape10 {
    margin-top: -9%;
    margin-left: 50%;
}

@media (max-width: 768px) {
    .imgShape7 {
        margin-top: 25%;
        margin-left: 3%;
    }

    .imgShape10 {
        margin-bottom: 1%;
        margin-left: 25%;
    }
}
