body {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/img/bookavilla_header.png') center center / cover no-repeat;
    color: white;
}

.content-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

    .content-wrapper h1 {
        font-size: 2.5rem;
    }

    .content-wrapper p {
        font-size: 0.8rem !important;
        max-width: 600px;
        padding-top: 3vh;
    }


.properties {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4rem 2rem;
    color: #333;
}

.property-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    background-color: #fff;
}

    .property-card:hover {
        transform: translateY(-5px);
    }

    .property-card img {
        height: 200px;
        object-fit: cover;
    }

    .property-card .card-body {
        padding: 1rem;
    }

.property-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.property-location {
    font-size: 0.95rem;
    color: #666;
}

.property-price {
    font-size: 1rem;
    color: #007bff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 3rem 1rem;
        text-align: center;
    }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 0.9rem;
        }

    .form-inline {
        flex-direction: column;
    }

        .form-inline .form-control {
            width: 100%;
            margin-bottom: 1rem;
        }

        .form-inline .btn {
            width: 100%;
        }

    .properties {
        padding: 2rem 1rem;
    }

    .property-card img {
        height: 180px;
    }

    .property-title {
        font-size: 1.1rem;
    }

    .property-location,
    .property-price {
        font-size: 0.85rem;
    }
}
