/* Property Detail Page Styles */
/* Extracted from property_detail_seo.html for better caching and performance */

/* Typography Variables */
:root {
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

/* Property Header */
.property-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.property-header h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .property-header h1 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

/* Property Images */
.property-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.property-gallery-thumbnail {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

/* Amenities */
.amenity-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background-color: #e9ecef;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Pricing */
.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
}

.price-period {
    font-size: 1rem;
}

/* Property Details */
.property-details-section {
    text-align: left;
}

/* Brand Name */
.brand-name-no-translate {
    font-weight: bold;
}

