/* assets/css/estate.css */
:root {
    --arena-green: #1a5d1a;
    --arena-red: #d62828;
    --arena-orange: #f77f00;
    --arena-light: #f8f9fa;
    --arena-dark: #343a40;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 93, 26, 0.9), rgba(26, 93, 26, 0.7)),
                url('../images/estate-bg.jpg') center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Filter Section */
.location-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-tab {
    padding: 8px 20px;
    background: white;
    border: 2px solid var(--arena-green);
    border-radius: 25px;
    color: var(--arena-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-tab:hover,
.location-tab.active {
    background: var(--arena-green);
    color: white;
}

.btn-arena {
    background: var(--arena-green);
    color: white;
    border: none;
    padding: 10px 25px;
}

.btn-arena:hover {
    background: #144a14;
    color: white;
}

/* Property Card */
.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.arena-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--arena-green);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    z-index: 2;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--arena-red);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
}

.property-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-card:hover .image-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--arena-orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
}

.property-details {
    padding: 20px;
}

.property-name {
    color: var(--arena-dark);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.property-meta i {
    margin-right: 5px;
    color: var(--arena-green);
}

.property-specs {
    background: var(--arena-light);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.spec-label {
    color: #666;
}

.spec-value {
    font-weight: bold;
    color: var(--arena-dark);
}

.property-price {
    text-align: right;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 10px;
}

.final-price {
    color: var(--arena-green);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-tabs {
        justify-content: center;
    }
    
    .property-image {
        height: 200px;
    }
    
    .hero-section {
        padding: 50px 0;
    }
}
/* Estate Detail Page Specific */
.property-breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
}

.lightbox-overlay {
    background: rgba(0,0,0,0.9) !important;
}

.print-template {
    display: none;
}

@media print {
    .no-print, nav, footer, .contact-form, .share-buttons {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .property-info-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}