/* Individual room/suite pages + rooms overview — shared page-specific styles */

.room-eyebrow {
    color: #8a6d3b;
}

/* ---------- Scroll reveal ---------- */
.room-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.room-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Guest reviews (part/reviews.php) ---------- */
.guest-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .guest-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .guest-reviews-grid { grid-template-columns: 1fr; }
}
.guest-review-card {
    display: block;
    background: #ffffff;
    border-radius: 6px;
    padding: 28px 26px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    color: inherit;
    text-decoration: none;
}
.guest-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.14);
    color: inherit;
}
.guest-review-stars {
    color: #f5b400;
    font-size: 0.9em;
    margin-bottom: 12px;
}
.guest-review-title {
    font-weight: 700;
    margin-bottom: 8px;
}
.guest-review-text {
    font-size: 0.92em;
    line-height: 1.6;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.guest-review-author {
    display: block;
    margin-top: 14px;
    font-weight: 600;
    color: #8a6d3b;
}

/* ---------- Room/suite overview grid (rooms/index.php) ---------- */
.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .room-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .room-grid { grid-template-columns: 1fr; }
}
.room-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.14);
}
.room-card-ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #8a6d3b;
    color: #ffffff;
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}
.room-card-img {
    overflow: hidden;
    aspect-ratio: 600 / 400;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img {
    transform: scale(1.08);
}
.room-card-body {
    padding: 24px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.room-card-body h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #343432;
}
.room-card-body p {
    color: #4a4a4a;
    font-size: 0.92em;
    flex: 1;
}
.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0 18px;
}
.room-card-amenities span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f7f3ea;
    color: #8a6d3b;
    font-size: 0.74em;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 30px;
}
.room-card-body .btn {
    align-self: flex-start;
}

/* ---------- Feature icon row (per-room "Room/Suite Features") ---------- */
.room-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 767px) {
    .room-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .room-feature-grid { grid-template-columns: 1fr; }
}
.room-feature {
    background: #ffffff;
    border: 1px solid #ece5d6;
    border-radius: 6px;
    padding: 22px 18px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.room-feature:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}
.room-feature-icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #f7f3ea;
    color: #8a6d3b;
    font-size: 1.4em;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.room-feature:hover .room-feature-icon {
    background: #8a6d3b;
    color: #ffffff;
    transform: rotateY(180deg);
}
.room-feature span {
    display: block;
    font-size: 0.92em;
    font-weight: 600;
    color: #343432;
}

/* ---------- "Perfect For" chip row ---------- */
.room-chip-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 575px) {
    .room-chip-row { grid-template-columns: 1fr; }
}
.room-chip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border-radius: 6px;
    padding: 16px 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.room-chip:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 24px rgba(138, 109, 59, 0.16);
    background: #fbf8f1;
}
.room-chip i {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: #f7f3ea;
    color: #8a6d3b;
    font-size: 1em;
    transition: background 0.3s ease, color 0.3s ease;
}
.room-chip:hover i {
    background: #8a6d3b;
    color: #ffffff;
}
.room-chip p {
    font-size: 0.92em;
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ---------- Gallery thumbnails (lightbox grid) ---------- */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width: 767px) {
    .room-gallery { grid-template-columns: repeat(2, 1fr); }
}
.room-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    position: relative;
}
.room-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-gallery a:hover img {
    transform: scale(1.1);
}
.room-gallery .zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 20, 10, 0);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}
.room-gallery a:hover .zoom {
    opacity: 1;
    background: rgba(26, 20, 10, 0.35);
}

/* ---------- Included-with-stay chip list ---------- */
.room-included {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.room-included span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f7f3ea;
    color: #8a6d3b;
    font-size: 0.85em;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 30px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.room-included span:hover {
    background: #8a6d3b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- Other-rooms cross-link strip ---------- */
.room-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 991px) {
    .room-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
    .room-related-grid { grid-template-columns: repeat(2, 1fr); }
}
.room-related-card {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}
.room-related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-related-card:hover img {
    transform: scale(1.08);
}
.room-related-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 10px 10px;
    background: linear-gradient(to top, rgba(20, 16, 8, 0.85), rgba(20, 16, 8, 0));
    color: #fff;
    font-size: 0.85em;
    font-weight: 700;
    text-align: center;
}

/* ---------- Sticky reserve CTA banner ---------- */
.room-final-cta {
    position: relative;
    background-size: cover;
    padding: 90px 0;
    text-align: center;
}
.room-final-cta:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 10, 0.76);
}
.room-final-cta .container {
    position: relative;
    z-index: 1;
}
.room-final-cta h2 { color: #ffffff; }
.room-final-cta p {
    color: #ece3d1;
    font-size: 1.1em;
    max-width: 640px;
    margin: 0 auto 30px;
}
.room-final-cta .btn { margin: 0 8px 12px; }
