/* Smooth scrolling background for optimal UX */
html {
    height: 100%;
    background-color: #000000;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('/static/Asset_31.webp') center top no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    background-position: center top !important;
    position: relative;
    overflow-x: hidden;
}

/* Smooth parallax for desktop - optimal UX */
@media (min-width: 769px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: url('/static/Asset_31.webp') center top no-repeat;
        background-size: cover;
        background-attachment: fixed;
        z-index: -2;
        will-change: transform;
    }
    
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(to bottom, 
            transparent 40%, 
            rgba(0, 0, 0, 0.1) 60%, 
            rgba(0, 0, 0, 0.3) 80%, 
            rgba(0, 0, 0, 0.5) 100%);
        z-index: -1;
        pointer-events: none;
    }
}

/* Mobile: optimized scrolling */
@media (max-width: 768px) {
    body {
        background-attachment: scroll !important;
    }
}

/* Content sections - transparent to show background */
.content-overlay {
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Property section with extended black background */
.property-section {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    margin-bottom: 0;
    padding: 3rem 0 0 0;
    border-radius: 24px 24px 0 0;
    min-height: 70vh;
}

.property-section:hover {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    transform: translateY(-2px);
}

/* Smooth property card interactions */
.property-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    will-change: transform, box-shadow;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.property-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(16px);
    border-color: rgba(147, 51, 234, 0.3);
}





/* Property cards with enhanced glass effect */
.property-card {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}