
.season-title {
    font-weight: 600;
}


/* Nearby / Seasonality / Itinerary Sections */
.hotel-nearby, .hotel-seasonality, .hotel-itinerary {
    margin-top: 60px;
}
.section-title {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}
.section-content {
    line-height: 1.8;
    font-size: 21px;
}
.section-content p { margin-bottom: 1em; }
.section-content ul, .section-content ol { padding-left: 20px; margin-bottom: 1em; }



/* Image Slideshow Styles */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-slide {
  display: none;
}
.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    vertical-align: middle;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Slow zoom animation for the active slide image */
.gallery-slide.active img {
    animation: slowZoom 20s linear forwards;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 20px 20px 0;
    user-select: none;
    background-color: rgba(5, 69, 52, .5);
}

.next {
    right: 0;
    border-radius: 20px 0 0 20px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dots-container {
    text-align: center;
    position: absolute;
    bottom: 7px;
    width: 100%;
    z-index: 10;
    padding-bottom: 5px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 10px;
    background-color: transparent;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

/* This pseudo-element is the visible indicator */
.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    /* Parent (.dot) is 15px wide, this circle is 12px wide. */
    /* (15 - 12) / 2 = 1.5px. This centers it initially. */
    left: 1.5px;
    transform: translateY(-50%); /* Only center vertically */
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: all 0.4s ease-in-out; /* Animates the collapse */
}

.dot:hover::before {
  background-color: rgb(148 126 68);
}

.dot.active::before {
    background-color: rgb(148 126 68);
    /* The animation will expand the width. This is the end state. */
    width: 35px;
    border-radius: 6px; /* Pill shape */
    animation-name: elongate;
    animation-duration: 10s; /* MUST MATCH the JavaScript interval */
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}


/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Elongating animation for the active dot */
@keyframes elongate {
  from {
    width: 12px; /* Start as a circle */
  }
  to {
    width: 35px; /* End as a pill */
  }
}

/* Amenities Section */
.hotel-amenities {
    margin-top: 60px;
    /* padding-top: 30px; */
    /* border-top: 1px solid #eee; */
    /* background-color: aliceblue; */
    border: 2px solid hsl(49 22% 92% / 1);
    border-radius: 15px;
    padding: 25px 30px 35px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
}
.amenity-item {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.amenities-title {
    font-size: 21px;
    color: hsl(0deg 0% 38.73%);
    margin-bottom: 32px;
    font-weight: 600;
}

.amenity-icon {
    margin-right: 10px;
    width: 25px;
    height: 25px;
    object-fit: contain;
    flex-shrink: 0;
}

.amenity-text {
    color: #555;
    font-weight: 500;
    font-size: 17px;
}

/* How to Get There Section */
.hotel-how-to-get-there {
    margin-top: 60px;

}

.how-to-get-there-title {
    /* font-size: 21px; */
    /* color: hsl(0deg 0% 38.73%); */
    /* margin-bottom: 32px; */
    /* font-weight: 600; */
    font-size: 28px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.how-to-get-there-content {
    line-height: 1.8;
    font-size: 21px;
    /* color: #555; */
}

.how-to-get-there-content p {
    margin-bottom: 1em;
}
.how-to-get-there-content ul,
.how-to-get-there-content ol {
    padding-left: 20px;
    margin-bottom: 1em;
}

/* Hotel Extra Details */
.hotel-extra-details {
    margin-top: 50px;
    padding: 0;
    border: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    align-items: center;
    margin-bottom: 60px;
}
.detail-item {
    font-size: 21px;
    margin-bottom: 15px;
}

/* Make selected detail rows take a full line */
.detail-item.full {
    flex: 0 0 100%;
    display: block;
}


.detail-label {
    font-weight: 700;
    color: #555;
    margin-right: 8px;
}

.detail-value {
    color: #333;
    font-weight: 500;
}

.detail-value a {
    /* color: #003580; */
    /* text-decoration: none; */
    font-weight: 500;
    line-height: 1.4;
    /* margin-top: 10px; */
}

.detail-value a:hover {
    text-decoration: underline;
}

/* Other Information Section */
.hotel-other-information {
    margin-top: 60px;
}
.other-information-title {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}
.hotel-other-information .hotel-extra-details {
    margin-top: 0;
    margin-bottom: 0;
}


/* Add or modify these styles in hotel-details.css */
/* Ensure bullets show in the trip-planning CTA */
.hr-cta ul.cta-list {
  list-style: disc outside;   /* force bullets */
  padding-left: 1.25rem;      /* space for the marker */
  margin: 6px 0 12px;         /* no left margin needed */
}

.hr-cta ul.cta-list li {
    margin: 4px 0 12px;
    font-weight: 500;
    line-height: 1.2;
}

/* Optional: brand the bullet color */
.hr-cta ul.cta-list li::marker {
  color: #947e44;
}


/* ── HavenRank: Planning CTA (email-only) ─────────────────────── */

.hr-cta p {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 12px;
    font-weight: 500;
}

.hr-cta .cta-email { font-weight: 700; font-size: 18px; }
.hr-cta small { color: #666; display: block; margin-top: 6px; }
@media (max-width: 640px) { .hr-cta h3{font-size:21px} .hr-cta p,.hr-cta .cta-email{font-size:17px} }



/* ── HavenRank: Planning / Itinerary CTA ───────────────────────── */
.hr-cta {
    /* margin: 50px 0 20px; */
    /* border: 2px solid hsl(49 22% 92% / 1); */
    /* border-radius: 16px; */
    /* padding: 22px 27px 26px; */
    background: #FAF8F4;
    box-sizing: border-box;
    max-width: 720px;
    margin: 40px 0px;
    padding: 20px 24px;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    /* background: #fff; */
}
.hr-cta h3 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #16574f;
    line-height: 1.3;
}

.hr-cta p {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 12px;
}

.hr-cta .cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px !important;
}

.hr-cta .cta-btn {
    background: #16574f;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.hr-cta .cta-btn:hover {
    background: #0e3b35;
    color: #fff;
}

.hr-cta .cta-email {
    font-weight: 700;
    font-size: 18px;
}

.hr-cta small {
    color: #666;
    display: block;
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.2;
}

/* Main row for stars, overall rating, review count, and booking logo */
.htdt-hotel-info-row {
    display: flex;
    justify-content: space-between; /* Pushes booking logo to the far right */
    align-items: center; /* Vertically aligns items in the row */
    padding-bottom: 5px; /* Small space before the notch and detailed ratings */
    margin-bottom: 0; /* Reset margin if any, detailed-ratings will handle spacing */
    position: relative; /* Useful if any child needs absolute positioning relative to this row */
}

/* Container for stars, overall rating, and review count */
.htdt-hotel-stars-rating {
    display: flex;
    align-items: center; /* Align these items horizontally */
    gap: 20px; /* Space between "stars", "overall rating", and "review count" groups */
}

/* Styling for the star display (e.g., ★★★★★ 5-star) */
.htdt-hotel-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 16px;
    color: #555;
}

.htdt-hotel-stars .star {
    color: #937e3e;
    font-size: 23px;
}

/* Styling for overall rating (e.g., 9.4/10 Rating) */
.htdt-overall-rating {
    display: flex;
    align-items: baseline; /* Aligns the score and label text nicely */
    gap: 5px; /* Space between score and "Rating" label */
}

.htdt-overall-rating .htdt-rating-score {
    font-weight: bold;
    font-size: 16px; /* Font size for the numerical score */
    color: #222; /* Dark color for the score */
}

.htdt-overall-rating .htdt-rating-label {
    font-size: 15px; /* Font size for the "Rating" text */
    color: #555; /* Medium gray for the label */
}

/* Styling for review count (e.g., 7,700 Reviews) */
.htdt-review-count {
    display: flex;
    align-items: baseline; /* Aligns the count and label text */
    gap: 5px; /* Space between count and "Reviews" label */
}

.htdt-review-count .count-number {
    font-weight: bold;
    font-size: 16px; /* Font size for the review number */
    color: #222; /* Dark color for the number */
}

.htdt-review-count .review-label {
    font-size: 15px; /* Font size for the "Reviews" text */
    color: #555; /* Medium gray for the label */
}



/* Styling for the detailed ratings bar (Location, Comfort, etc.) */
.htdt-detailed-ratings {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px 25px; /* Gap between items: 15px row-gap, 25px column-gap */
    background-color: #f5f2e9; /* Light beige background */
    padding: 10px 15px; /* Padding inside the beige bar */
    border-radius: 5px; /* Slightly rounded corners */
    margin-top: 12px; /* Space above the bar (after the notch) */
    margin-bottom: 25px; /* Space below the bar */
    position: relative; /* Needed for the ::before pseudo-element (notch) */

    /* ADD THIS LINE to make the bar wrap its content */
    width: fit-content;
    /* For wider browser compatibility for fit-content, you might add: */
    /* width: -moz-fit-content; */
    /* width: -webkit-fit-content; */
}

/* The upward-pointing triangle (notch) */
/* In hotel-details.css */

/* The upward-pointing triangle (notch) */
.htdt-detailed-ratings::before {
    content: "";
    position: absolute;
    top: -8px; /* Positions the notch above the bar */
    /* UPDATED LEFT VALUE:
       Adjusted to be relative to the now shrink-wrapped bar,
       aiming to be above the "Comfort X.X" rating item.
       This value may need fine-tuning (+/- 10px) based on actual content widths.
    */
    left: 180px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid #f5f2e9; /* Same color as the bar */
}

/* Styling for each item within the detailed ratings bar (e.g., "Location 9.6") */
.htdt-rating-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

h2.locations-map-title {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.htdt-rating-item .htdt-rating-label {
    font-size: 15px;
    color: #333;
    font-weight: normal;
}


.htdt-rating-item .htdt-rating-value {
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

/* In style.css (or hotel-details.css if you prefer) */

.booking-cta {
    text-align: center; /* Centers the inline-block button */
    margin-top: 30px;   /* Space above the button */
    margin-bottom: 20px; /* Optional: Space below the button before the footer */
}

.btn-book {
    background-color: #003580;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block; /* Allows centering via text-align on parent and respects padding */
    text-decoration: none; /* Ensure no underline from default <a> styling */
}

.btn-book:hover {
    background-color: #00285e; /* Darker shade on hover */
    color: white; /* Keep text color white */
}

@media only screen and (max-width: 768px) {
  .dots-container {
    display: none; /* visible on mobile */
  }
}

/* Location Map Section */
.hotel-location-section {
    margin-top: 60px;
    margin-bottom: 35px;
}

#hotel-location-map {
    height: 450px;
    width: 100%;
    border-radius: 15px;
    border: 2px solid hsl(49 22% 92% / 1); /* Match amenities box border */
    overflow: hidden; /* Ensures map respects the border-radius */
}