/* assets/css/style.css */

/* --- General Body and Typography --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* A slightly off-white background */
}

/* --- Hero Section --- */
.hero-section {
    background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?q=80&w=2070') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 120px 0;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-section .container {
    position: relative; /* Ensure content is above the overlay */
    z-index: 2;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .form-control-lg {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}
.hero-section .btn-primary {
    border-radius: 50px;
    font-weight: 600;
}

/* --- Property Card Redesign --- */
.property-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.property-card .card-img-top {
    border-radius: 15px 15px 0 0;
    height: 220px;
    object-fit: cover;
}

.property-card .card-body {
    padding: 1.5rem;
}

.property-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #28a745; /* Bootstrap success green */
}

.property-card .location {
    font-weight: 300;
    color: #6c757d;
}

.property-card .card-footer {
    background: none;
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

/* --- Section Styling --- */
.section-title {
    font-weight: 700;
    margin-bottom: 40px;
}




/* assets/css/style.css */
/* Add these new rules to your existing stylesheet */

/* --- Property Detail Page Specific Styles --- */
.property-detail-header {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.property-detail-header h1 {
    font-weight: 700;
}

.property-detail-header .property-tags span {
    font-size: 0.9rem;
    font-weight: 600;
}

.property-detail-tabs .nav-link {
    color: #6c757d;
    font-weight: 600;
}

.property-detail-tabs .nav-link.active {
    color: #0d6efd;
    border-color: #0d6efd #0d6efd #fff;
}

.property-detail-sidebar .card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.property-detail-sidebar .price-display {
    font-size: 2.5rem;
    font-weight: 700;
}

.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.details-list li:last-child {
    border-bottom: none;
}

.details-list li strong {
    color: #495057;
}

#property-location-map {
    height: 400px;
    width: 100%;
    border-radius: 0.5rem;
}