.property-detail {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.property-detail h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.property-location {
    color: #666;
    margin-bottom: 2rem;
}

.property-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-specs span {
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border-radius: 4px;
    font-weight: 600;
}

.property-images {
    display: block;
    margin-bottom: 3rem;
}

.property-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.property-description {
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Breadcrumb Navigation Styles */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    list-style: none;
}

.breadcrumb li:not(:last-child):after {
    content: "›";
    margin-left: 0.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-dark);
}

.contact-btn:active {
    transform: translateY(1px);
}

.tenant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.tenant {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.tenant h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.tenant p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.property-description ul {
    list-style-type: none;
    padding-left: 0;
}

.property-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.property-description li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
} 