/**
 * İcon Emlak - Emlak Detay Sayfası CSS
 */

/* Emlak Galerisi */
.property-gallery {
    margin-bottom: 2rem;
}

.property-main-slider {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.property-thumb-slider {
    height: 80px;
}

.property-thumb-slider .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border-radius: 0.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.property-thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #007bff;
}

/* Emlak Özellikleri */
.property-feature-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.property-feature-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Paylaşım Linkleri */
.social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* İletişim Sidebar */
.property-contact-sidebar .agent-avatar {
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Benzer İlanlar */
.similar-property-item {
    transition: transform 0.3s ease;
}

.similar-property-item:hover {
    transform: translateY(-5px);
}

.similar-property-img {
    height: 80px;
    width: 100%;
    display: block;
    overflow: hidden;
}

.similar-property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Konum Haritası */
.property-map {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Fiyat Gösterimi */
.price-tag {
    color: #007bff;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .property-header {
        flex-direction: column;
    }
    
    .property-price {
        margin-top: 1rem;
        text-align: left;
    }
    
    .property-thumb-slider {
        height: 60px;
    }
}

/* Sidebar İletişim Kutusu Metin Rengi Düzeltmesi */
.property-contact-sidebar .contact-text {
    color: var(--text-color); /* Genel metin rengini kullan */
}

/* Sidebar İletişim Kutusu Link Rengi Düzeltmesi */
.property-contact-sidebar .contact-text a {
    color: var(--text-color); /* Linkler için de genel metin rengini kullan */
}

.property-contact-sidebar .contact-text a:hover {
    color: var(--secondary-color); /* Üzerine gelince ikincil rengi kullan */
}

/* Liste Sayfasından Gelen Başlık ve Breadcrumb Stilleri */
.page-title-section {
    background-color: #f8f9fa;
    background-image: linear-gradient(120deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 5px rgba(0,0,0,0.02);
}

.page-title-content {
    position: relative;
}

.page-title-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1;
    padding-top: 2px;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: all 0.2s;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .page-title-section {
        padding: 25px 0;
        margin-bottom: 25px;
    }

    .page-title-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
} 