/* Page-specific styles for property-status.html.
   Loaded as a same-origin stylesheet so it complies with the strict CSP
   (default-src 'self'); these rules used to live in an inline <style> block. */

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.property-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.property-hero {
    width: 100%;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem 4rem;
    background-image:
        linear-gradient(to bottom,
            rgba(0,0,0,0.25) 0%,
            rgba(80,60,160,0.65) 75%,
            rgba(118,75,162,1) 100%),
        url('images/photo-property.jpeg');
    background-size: cover;
    background-position: center;
}

.status-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    padding: 30px;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d69e2e;
}

.status-icon svg {
    width: 60px;
    height: 60px;
}

.status-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.status-page {
    flex: 1;
    background: #764ba2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
}

.status-message {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.back-link {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.9);
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.back-link:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .property-hero {
        min-height: 45vh;
        padding: 2rem 1.5rem 3rem;
    }

    .status-title {
        font-size: 1.75rem;
    }

    .status-message {
        font-size: 1rem;
    }
}
