body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f6f8;
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero {
    background: linear-gradient(135deg, #0b2c49, #124f7a);
    color: #fff;
    padding: 80px 20px;
}

.hero h1 {
    font-weight: 700;
}

.property-card img {
    height: 200px;
    object-fit: cover;
}

footer {
    background: transparent;
    color: #bbb;
}

/* ASIDE PANEL */
.aside-panel {
    position: fixed;
    background: #fff;
    z-index: 1050;
    box-shadow: -2px 0 10px rgba(0, 0, 0, .15);
    transition: transform 0.3s ease;
    width: 100%;
    height: 70%;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
}

/* Desktop behaviour */
@media (min-width: 768px) {
    .aside-panel {
        width: 400px;
        height: 100%;
        right: 0;
        left: auto;
        bottom: auto;
        top: 0;
        transform: translateX(100%);
    }
}

/* Active state */
.aside-panel.active {
    transform: translate(0, 0);
}

.aside-header {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background: #0b2c49;
    color: #fff;
}

.aside-body {
    padding: 20px;
    overflow-y: auto;
    height: calc(100% - 60px);
}

/* ===============================
   IMAGE META OVERLAY (CAROUSEL)
   =============================== */

.image-meta-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;

    padding: 8px 10px;
    color: #fff;

    pointer-events: none;
    /* avoids swipe issues */
}

/* Image type badge */
.image-type-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    display: inline-block;
}

/* Caption text */
.image-caption {
    font-size: 0.85rem;
    line-height: 1.2;
    opacity: 0.95;
}