/* Genel Stiller */
body {
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.hero-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-image 0.3s ease-in-out;
    padding: 100px 0;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.min-vh-75 {
    min-height: 75vh;
}

.min-vh-50 {
    min-height: 50vh;
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
}

/* Kartlar */
.feature-card {
    transition: transform 0.3s ease;
    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.listing-card {
    transition: transform 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-5px);
}

.listing-card img {
    height: 200px;
    object-fit: cover;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

/* Form Elements */
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(0,123,255,.25);
    border-color: #80bdff;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

/* Slider Styles */
.carousel-item .hero-section {
    height: 75vh;
}

.carousel-indicators {
    z-index: 15;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 5px !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 15;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.search-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* Detay Sayfası Stilleri */
.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.specs i, .location i, .contact-info i {
    color: #007bff;
    margin-right: 8px;
}

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #e9ecef !important;
}

.feature-item i {
    margin-right: 8px;
}

#map {
    border-radius: 0 0 0.25rem 0.25rem;
}

/* Modern Property Cards */
.property-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,.05);
    height: 100%;
}

.shadow-hover {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shadow-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1)!important;
}

.property-card .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.property-card:hover .card-img-top {
    transform: scale(1.08);
}

.property-card .card-body {
    padding: 1.5rem;
}

.property-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3436;
}

.property-card .text-muted {
    color: #64748b !important;
}

.property-card .feature-item {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
}

.property-card .feature-item i {
    margin-right: 6px;
    font-size: 1.1rem;
}

.property-card .badge {
    padding: 0.5em 1em;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.property-card .btn-primary {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.property-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .property-card .card-img-top {
        height: 200px;
    }
    
    .property-card .card-body {
        padding: 1.25rem;
    }
    
    .property-card .card-title {
        font-size: 1.1rem;
    }
} 