/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/

#projeTablosu tbody tr,
#projeTablosu tbody tr td {
	background-color: #ffffff !important;
	border-bottom: 1px solid #eeeeee !important;
}
table.dataTable.stripe > tbody > tr.odd > *, 
table.dataTable.display > tbody > tr.odd > *,
table.dataTable.display > tbody > tr.even > *,
table.dataTable.display > tbody > tr > .sorting_1,
table.dataTable.display > tbody > tr > .sorting_2,
table.dataTable.display > tbody > tr > .sorting_3 {
	box-shadow: none !important;
}

#projeTablosu thead th {
	color: #B70003 !important;
	background: #ffffff !important;
	border-bottom: 2px solid #B70003 !important;
	box-shadow: none !important;
}

.dataTables_wrapper,
.custom-table-container {
	background-color: #ffffff !important;
}

.dataTables_filter input {
	background-color: #ffffff !important;
	border: 1px solid #ccc !important;
	padding: 0!important;
}

#projeTablosu_filter label {
	display: flex;
	align-items: center;
	gap: 8px !important;
}

.dataTables_length label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;

}

.mfp-bottom-bar {
	display: none;
}


.homesayac .w-counter-title {
	line-height: 1;
}

.homesayac .w-counter-value::after {
	content: ''; 
    position: absolute;
    top: 20px; 
    right: -35px; 
    width: 20px; 
    height: 20px; 
    background-color: #B70003; 
    border-radius: 50%; 
    display: block;
}

@media (min-width: 1025px) {
    .owl-dots {
        position: absolute !important;
        bottom: 0 !important;
        right: 30% !important;
        left: auto !important; 
        transform: none !important;
        width: auto !important;
    }
}

.owl-dot {
	color: #B70003;
}






.project-container {
    display: flex;
    width: 100%;
    height: 100%;
	min-height: 650px;
}

/* Tıklanılabilir Sütunlar */
.project-item {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 50px;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border-right: 2px solid rgba(255, 255, 255, 0.3); /* Bölme çizgileri */
    overflow: hidden;
}

.project-item:last-child {
    border-right: none;
}

.project-content {
    width: 100%;
    transform: translateY(40px); /* Başlangıçta metni aşağıda tut */
    transition: transform 0.5s ease;
}

.project-item:hover .project-content {
    transform: translateY(0); /* Hover'da yukarı kayar */
}

.project-item:hover {
    flex: 1.5;
    background: rgba(0, 0, 0, 0.4); /* Üzerine gelince biraz daha kararır */
}

.project-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

/* Detay Metni */
.project-details {
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.project-item:hover .project-details {
    max-height: 200px;
    opacity: 1;
}

.project-details p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .main-project-wrapper {
        height: auto;
    }
    .project-container {
        flex-direction: column;
    }
    .project-item {
        height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .project-content {
        transform: translateY(0);
    }
    .project-details {
        max-height: 200px;
        opacity: 1;
    }
}