
/*=============================*/
/* Tours Section               */
/*=============================*/

/*room card*/
.room-card { max-width: 600px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    font-family: 'Cormorant Garamond', serif;
}
.room-img-wrapper {
    position: relative;
}
.room-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.room-price-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(245, 166, 35, 0.83);
    padding: 10px 14px;
}
.price-text {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
.price-text span {
    font-size: 13px;
    font-weight: 400;
}
.rates-link {
    color: white;
    font-size: 12px;
    cursor: pointer;
    margin-top: 3px;
    display: block;
}
.room-meta {
    display: flex;
    gap: 24px;
    padding: 12px 16px 4px;
    font-size: 13px;
    color: #888;
}
.room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-title {
    font-weight: 600;
    text-align: center;
    color: #222;
    margin: 4px 0 8px;
    font-family: 'Cormorant Garamond', serif;
}

.room-desc {
    font-size: 13px;
    color: #555;
    text-align: justify;
    line-height: 1.6;
    margin: 0 16px 16px;
}

.btn-row {
    display: flex;
    gap: 10px;
    padding: 0 16px 20px;
}

.btn-see-more {
    flex: 1;
    background: #ffffff;
    color: #333333;
    border: 1.5px solid #bbbbbb;
    border-radius: 4px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.btn-see-more:hover {
    background: #f5f5f5;
}

.btn-book-now {
    flex: 1;
    background: #C47C2A;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}
.btn-book-now:hover {
    background: #a86820;
}
.room_card-mid{
    padding: 2rem; background: #f0f0f0;
}
.room_title-card{
    padding: 0 16px;
}


/*=============================*/
/* Tranquil Down South              */
/*=============================*/
.tranquil-down-img {
    border: 5px solid #ff8c00; /* Use hex or CSS variable for consistency */
    border-radius: 10px;
    max-height: 300px;
    width: 100%;
    object-fit: cover; /* Prevents image distortion */
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Optional depth */
}

/* Responsive tweak: remove large left margin on smaller screens */
@media (max-width: 767px) {
    .tranquil-down-img {
        max-height: 250px;
        margin: 0 auto; /* Center image on mobile */
    }
}


#tranquil-down-south h2 {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

#tranquil-down-south h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ffb347, #ffcc00);
    border-radius: 2px;
    box-shadow: 0 3px 10px rgba(255, 140, 0, 0.35);
    transition: width 0.4s ease, box-shadow 0.4s ease;
}

#tranquil-down-south h2:hover::after {
    width: 100%;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.5);
}






















