/*=============================*/
/* 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;
}



/*=============================*/
/* Hotel Updates Carousel      */
/*=============================*/
#hotelUpdatesCarousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

#hotelUpdatesCarousel .carousel-inner {
    border-radius: 12px;
}

#hotelUpdatesCarousel .carousel-item img {
    height: 380px;
    object-fit: cover;
}

#hotelUpdatesCarousel .carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 20px 20px;
    border-radius: 0 0 12px 12px;
}

#hotelUpdatesCarousel .carousel-caption h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

#hotelUpdatesCarousel .carousel-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    opacity: 0.8;
}

.carousel-indicators .active {
    background: #fff;
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#hotelUpdatesCarousel:hover .carousel-control-prev,
#hotelUpdatesCarousel:hover .carousel-control-next {
    opacity: 1;
}

@media (max-width: 768px) {
    #hotelUpdatesCarousel .carousel-item img {
        height: 260px;
    }
    #hotelUpdatesCarousel .carousel-caption {
        display: block !important;
        padding: 20px 15px 15px;
    }
    #hotelUpdatesCarousel .carousel-caption h5 {
        font-size: 1.1rem;
    }
    #hotelUpdatesCarousel .carousel-caption p {
        font-size: 0.85rem;
    }
}
.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);
}

/*=============================*/
/* Weather Widget              */
/*=============================*/
.weather-widget {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    font-family: 'Jost', sans-serif;
    transition: all 0.4s ease;
    height: 92%;
}

/* Success State */
.weather-widget--success {
    background: linear-gradient(160deg, #1a3c34 0%, #1e5646 40%, #2c7a5e 100%);
    padding: 2rem 1.5rem 1.8rem;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 70, 50, 0.25);
}

.weather-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.weather-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    animation: weatherFloat 3s ease-in-out infinite;
}

@keyframes weatherFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.weather-location {
    font-size: 0.9rem;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

.weather-location i {
    font-size: 0.75rem;
    color: #f9c74f;
}

.weather-temp {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.3rem 0;
    letter-spacing: -1px;
}

.weather-condition {
    font-size: 0.95rem;
    text-transform: capitalize;
    opacity: 0.9;
    margin-bottom: 0.2rem;
}

.weather-feels {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 1.2rem;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    padding: 1rem 0.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 0.8rem;
}

.weather-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.weather-detail i {
    font-size: 1rem;
    color: #f9c74f;
    margin-bottom: 2px;
}

.weather-detail span {
    font-size: 0.85rem;
    font-weight: 600;
}

.weather-detail small {
    font-size: 0.65rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weather-attribution {
    font-size: 0.65rem;
    opacity: 0.5;
}

.weather-attribution a {
    color: inherit;
    text-decoration: none;
}

.weather-attribution a:hover {
    opacity: 0.8;
}

/* Loading / Skeleton State */
.weather-widget--loading {
    background: linear-gradient(160deg, #1a3c34 0%, #1e5646 40%, #2c7a5e 100%);
    padding: 2rem 1.5rem 1.8rem;
    box-shadow: 0 8px 30px rgba(0, 70, 50, 0.25);
}

.weather-skeleton {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.weather-skeleton__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: weatherPulse 1.5s ease-in-out infinite;
}

.weather-skeleton__line {
    height: 14px;
    border-radius: 7px;
    background: rgba(255,255,255,0.1);
    animation: weatherPulse 1.5s ease-in-out infinite;
    width: 60%;
}

.weather-skeleton__line--short { width: 35%; }
.weather-skeleton__line--large { width: 35%; height: 36px; border-radius: 18px; margin: 0.3rem 0; }

@keyframes weatherPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Error State */
.weather-widget--error {
    background: linear-gradient(160deg, #3b2a2a 0%, #5c3030 40%, #7a3e3e 100%);
    padding: 2rem 1.5rem;
    color: #fff;
    box-shadow: 0 8px 30px rgba(80, 30, 30, 0.25);
}

.weather-error__icon {
    font-size: 2.5rem;
    color: #f9c74f;
    margin-bottom: 0.8rem;
}

.weather-error__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.weather-error__text {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.weather-error__retry {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s;
}

.weather-error__retry:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .weather-widget--success,
    .weather-widget--loading,
    .weather-widget--error {
        padding: 1.5rem 1rem;
    }
    .weather-temp {
        font-size: 2.5rem;
    }
    .weather-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}


/*=============================*/
/* Hotel Timeline Updates      */
/*=============================*/

.hotel-timeline-section {
    background: #fff;
}

.hotel-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Card */
.hotel-timeline-card {
    display: grid;
    grid-template-columns: 175px 1fr;
    align-items: start;
    gap: 2rem;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 1.8rem 2rem;
    transition: box-shadow 0.25s ease;
}

.hotel-timeline-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

/* Date Column */
.htl-date-text {
    font-family: 'Cormorant Garamond', serif;
    margin: 0 0 10px;
    line-height: 1.15;
}

.htl-day {
    font-size: 3.6rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.htl-month-year {
    font-size: 1.1rem;
    color: #aaa;
    font-weight: 400;
}

.htl-accent {
    width: 46px;
    height: 3px;
    background: linear-gradient(90deg, #C47C2A, #f5a623);
    border-radius: 2px;
    margin-top: 6px;
}

/* Content Column */
.hotel-timeline-content p {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 0.65rem;
}

.hotel-timeline-content p:last-child {
    margin-bottom: 0;
}

.hotel-timeline-content .update-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hotel-timeline-content a {
    color: #C47C2A;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.hotel-timeline-content a:hover {
    color: #a86820;
}

/* Notice variant — amber text */
.hotel-timeline-card--notice .hotel-timeline-content p {
    color: #C47C2A;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 767px) {
    .hotel-timeline-card {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 1.2rem 1.25rem;
    }

    .htl-day {
        font-size: 2.6rem;
    }

    .htl-month-year {
        font-size: 1rem;
    }
}
