.orpd-single-property {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);

}

.orpd-property-hero {
    display: flex;
    width: 100%;
    gap: 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
}

.orpd-property-image {
    width: 100%;
    height: 700px;
    border-radius: 8px;
    object-fit: cover;
}

.orpd-property-info {
    width: 100%;
    
}

.orpd-property-info h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.orpd-price {
    font-size: 24px;
    color: #77b2c6;
    margin: 10px 0;
    font-weight: bold;
}

.orpd-book-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #77b2c6;
    color: #fff;
    text-align: center;
    font-weight: bold;
    /*border-radius: 5px;*/
    text-decoration: none;
   /* margin-top: 10px; */
    transition: background-color 0.3s;
}

.orpd-book-button:hover {
    background-color: #6094b4;
}

.orpd-property-details, .orpd-property-gallery {
    padding: 20px;
    background-color: #fff;
    margin-top: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.orpd-property-details h3,
.orpd-property-gallery h3 {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.orpd-property-details ul {
    list-style: none;
    padding: 0;
}

.orpd-property-details ul li {
    font-size: 18px;
    margin-bottom: 8px;
}

.orpd-amenities {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px 0;
}

.orpd-amenities li {
    display: flex;
    align-items: center;
    font-size: 16px;
    background-color: #f1f1f1;
    padding: 8px 12px;
    border-radius: 4px;
}

.orpd-amenities li i {
    margin-right: 5px;
    color: #77b2c6;
}

.orpd-gallery-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.orpd-gallery-images a {
    width: 20%;
    height: 20%;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.orpd-gallery-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.orpd-gallery-images a:hover img {
    transform: scale(1.05);
}


/*center the title on the hero image*/
.title-container{
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 100%;
}

.title-container h1{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* slide the title up */
.title-container {
    animation: slidTitleUp 1.5s ease-in-out;
}

@keyframes slidTitleUp {
    from {
        transform: translate(-50%, 500%);
    }
    to {
        transform: translate(-50%, -50%);
    }
}

/* fade in the hero image */
.orpd-property-image {
    animation: fadeImageIn 1.5s ease-in-out;
}

@keyframes fadeImageIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}