:root {
    --bs-primary: #245c3d; /* your dark green */
}

.text-primary {
    color: var(--bs-primary) !important;
}

.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-primary:hover {
    background-color: #1e4f34 !important;
    border-color: #1e4f34 !important;
}

a {
    color: var(--bs-primary);
    text-decoration: underline; /* optional: remove for cleaner look */
}

a:hover {
    color: #1e4f34; /* slightly darker for hover */
    text-decoration: none;
}

#property-gallery a img {
    cursor: zoom-in;
}

.parallax-header {
    background-image: url('/static/images/property-header.jpg');
    background-attachment: fixed;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .parallax-header {
        background-attachment: scroll;
    }
}

[x-cloak] {
    display: none !important;
}

.pswp__custom-caption {
    background: rgba(0, 0, 0, 0.75);
    font-size: 16px;
    color: #fff;
    width: fit-content;
    max-width: 400px;
    padding: 2px 8px;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    text-align: center;
}
.pswp__custom-caption a {
    color: #fff;
    text-decoration: underline;
}
.hidden-caption-content {
    display: none;
}
