/*
Theme Name: Waikiki Beachside Hostel
Theme URI: https://www.waikikibeachsidehostel.com
Author: Steve Fagaly
Description: Custom conversion-optimized WordPress theme for Waikiki Beachside Hostel
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: waikiki-beachside
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --teal:        #2b9eb9;
  --teal-dark:   #2A9EB8;
  --teal-light:  #8DC0BC;
  --coral:       #fe9d12;
  --coral-dark:  #e17a01;
  --navy:        #2b9eb9;
  --navy-light:  #1A6F80;
  --sand:        #f5f0e8;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #444444;
  --text-light:  #777777;
  --gold:        #EDC14F;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Nunito', 'Helvetica Neue', sans-serif;
  --font-accent: 'Pacifico', cursive;
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --radius:      10px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.section-subtitle {
  font-family: var(--font-accent);
  text-align: center;
  color: #8a8a8a;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--teal);
}
.section-divider span { font-size: 1.2rem; color: var(--teal); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(253,104,0,0.35);
}
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(253,104,0,0.45); color: var(--white); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(4,177,184,0.35);
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(237,193,79,0.4);
}
.btn-gold:hover { background: #D4A83A; transform: translateY(-2px); }

/* ============================================================
   PROMO BAR (top of page)
============================================================ */
#promo-bar {
  background: var(--coral);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 200;
}
#promo-bar a { color: var(--gold); text-decoration: underline; margin-left: 0.5rem; }
#promo-bar a:hover { color: var(--white); }


/* ============================================================
   Steve Adjustments
============================================================ */

.page-booking-cta{
	text-align:center !important;
}

.nav-cta {
    background: #fe9d12 !important;
    color: #fff !important;
    padding: 0.25rem .77rem;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #e17a01 !important;
  color: #fff !important;
}
.nav-cta a:hover {
  background: #e17a01 !important;
  color: #fff !important;
}

.amenities-inner {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
#promo-section {
    padding-top: 4rem !important;
}




/* ============================================================
   HEADER & NAVIGATION
============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to right, #c6992c 0%, #eec050 50%, #c6992c 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  border-bottom: solid 2px #edbf4f;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo img { height: 50px; width: auto; }

#primary-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
#primary-nav ul li a {
  color: #6a6a6a;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
#primary-nav ul li a:hover { background: rgba(0,0,0,0.08); color: #000000; }
#primary-nav > ul > li:last-child,
#primary-nav ul li.book-btn {
  background: transparent !important;
  padding: 0 !important;
}
#primary-nav > ul > li:last-child > a,
#primary-nav ul li.book-btn a {
  background: var(--coral) !important;
  color: #ffffff !important;
  padding: 0.5rem 1.2rem !important;
  border: none !important;
  border-radius: var(--radius) !important;
}
#primary-nav > ul > li:last-child > a:hover,
#primary-nav ul li.book-btn a:hover { background: var(--coral-dark) !important; color: #ffffff !important; }

/* Dropdown menu */
#primary-nav ul li.menu-item-has-children {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}
#primary-nav ul li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
#primary-nav ul .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.98) 0%, rgba(4,177,184,0.06) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 16px 48px rgba(4,177,184,0.18), 0 2px 8px rgba(0,0,0,0.08);
  border-top: 3px solid var(--teal);
  min-width: 220px;
  padding: 0.4rem 0 0.5rem;
  z-index: 300;
  flex-direction: column;
  gap: 0;
}
#primary-nav ul .sub-menu::before {
  content: '';
  display: block;
  height: 6px;
  margin-top: -6px;
}
#primary-nav ul li.menu-item-has-children:hover > .sub-menu {
  display: flex;
  animation: dropdownSlide 0.2s ease forwards;
}
#primary-nav ul .sub-menu li {
  width: 100%;
}
#primary-nav ul .sub-menu li a {
  display: block;
  width: 100%;
  color: var(--text-dark);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.72rem 1.4rem;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, padding-left 0.15s ease;
}
#primary-nav ul .sub-menu li a:hover {
  background: rgba(4,177,184,0.12);
  color: #1a4a55;
  border-left-color: var(--teal);
  padding-left: 1.75rem;
}
#primary-nav ul .sub-menu li:not(:last-child) a {
  border-bottom: 1px solid rgba(4,177,184,0.08);
}
.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}
#primary-nav ul li.menu-item-has-children:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile menu toggle */
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  position: relative;
  z-index: 99999;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
#menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #6a6a6a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Hide the checkbox — label acts as the visible toggle */
#menu-check { display: none !important; }

/* 3 bars → X when menu is open (CSS-only, no JS) */
#site-header:has(#menu-check:checked) #menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#site-header:has(#menu-check:checked) #menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#site-header:has(#menu-check:checked) #menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sticky mobile book button */
#sticky-book-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--coral);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
#sticky-book-btn:hover { background: var(--coral-dark); color: var(--white); }

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  padding-bottom: 2rem;
  background-color: rgb(252 237 155 / 36%);
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-mobile-fade {
  display: none;
}
@media (max-width: 776px) {
  #hero {
    background-color: #f5f0e8;
    padding-bottom: 6rem !important;
  }
  #site-header {
    box-shadow: 0 2px 20px rgb(0 0 0) !important;
  }
  #rooms-section {
    padding: 0rem 1.5rem !important;
  }
  .rooms-cta {
    padding-bottom: 1.5rem;
  }
  .footer-logo-wbsh {
    height: 134px;
    margin: auto;
  }
  .hero-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
  }
  .hero-overlay {
    display: none;
  }
  .hero-mobile-fade {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 3;
    pointer-events: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(43, 158, 185, 0.3) 0%, rgba(43, 158, 185, 0.15) 40%, rgb(252 237 155 / 36%) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 2rem 0;
  text-align: center;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  text-shadow: 0 3px 20px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.hero-content .hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #2b9eb9;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgb(255 255 255 / 76%);
}

/* Hero Booking Widget */
.hero-booking-widget {
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  transform: translateY(0);
  position: relative;
  z-index: 10;
}

.booking-field {
  flex: 1;
  min-width: 160px;
}
.booking-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.booking-field input,
.booking-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}
.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--teal);
}
.booking-field.search-btn { flex: 0 0 auto; }
.booking-field.search-btn .btn { width: 100%; white-space: nowrap; padding: 0.75rem 2rem; font-size: 1rem; }

/* ============================================================
   PROMO BADGE SECTION
============================================================ */
#promo-section {
  background: var(--navy);
  padding: 7rem 1.5rem 4rem;
  text-align: center;
}

.promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.promo-badge {
  background: radial-gradient(circle, #F0A020, var(--coral-dark));
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(253,104,0,0.5), 0 0 0 8px rgba(237,193,79,0.2);
  flex-shrink: 0;
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 8px 30px rgba(253,104,0,0.5), 0 0 0 8px rgba(237,193,79,0.2); }
  50% { box-shadow: 0 8px 30px rgba(253,104,0,0.6), 0 0 0 14px rgba(237,193,79,0.15); }
}
.promo-badge .badge-price {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.promo-badge .badge-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.3;
}

.promo-text { color: var(--white); }
.promo-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.promo-text .promo-sub {
  font-size: 1.1rem;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
}
.promo-text .promo-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
}

/* ============================================================
   ROOMS SECTION
============================================================ */
#rooms-section {
  padding: 5rem 1.5rem;
  background: var(--sand);
}

.rooms-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.07); }

.room-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(43,158,185,0.92));
  color: var(--white);
  padding: 2rem 1.5rem 1.2rem;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
}

.room-card-body {
  background: var(--white);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.best-for {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.room-price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--coral);
  font-weight: 700;
}

.rooms-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   SOCIAL VIBE / ACTIVITIES
============================================================ */
#social-vibe {
  padding: 5rem 1.5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#social-vibe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/social-bg.jpg') center / cover no-repeat;
  opacity: 0.15;
}

.social-vibe-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
#social-vibe .section-title { color: var(--white); }
#social-vibe .section-subtitle { color: var(--teal-light); }

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vibe-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: default;
}
.vibe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease;
  will-change: filter;
}
.vibe-card:hover img,
.vibe-card:focus-within img,
.vibe-card.tapped img { filter: blur(4px) brightness(0.65); }

/* Normal state: title at bottom */
.vibe-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 1.3rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.vibe-card:hover .vibe-card-label,
.vibe-card:focus-within .vibe-card-label,
.vibe-card.tapped .vibe-card-label { opacity: 0; transform: translateY(-10px); pointer-events: none; }

/* Hover reveal panel: title at top + description */
.vibe-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  padding: 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.45s ease;
  pointer-events: none;
}
.vibe-card:hover .vibe-card-hover,
.vibe-card:focus-within .vibe-card-hover,
.vibe-card.tapped .vibe-card-hover { opacity: 1; transform: translateY(0); pointer-events: auto; }

.vibe-hover-title {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}
.vibe-hover-desc {
  color: rgba(255,255,255,0.93);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* White divider lines inside the teal social vibe section */
#social-vibe .section-divider::before,
#social-vibe .section-divider::after { background: rgba(255,255,255,0.55); }
#social-vibe .section-divider span { color: var(--white); }

/* ============================================================
   AMENITIES STRIP
============================================================ */
#amenities-strip {
  background: #eec050;
  padding: 3rem 1.5rem;
}
.amenities-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.amenity-item { color: #8a8a8a; }
.amenity-item .amenity-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.amenity-item p { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; }

/* ============================================================
   REVIEWS + MAP SECTION
============================================================ */
#reviews-section {
  padding: 5rem 1.5rem;
  background: var(--sand);
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.reviews-left h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--teal);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.6rem; }
.review-text {
  font-size: 1rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}
.review-author { font-weight: 700; color: var(--teal-dark); font-size: 0.9rem; }

.reviews-right .map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.reviews-right .map-embed iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}
.map-cta {
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  text-align: center;
}
.map-cta p { font-size: 0.9rem; opacity: 0.85; }
.map-cta strong { color: var(--teal-light); font-size: 1rem; }

/* ============================================================
   CONTENT/IMAGE SLIDER
============================================================ */
#content-slider {
  padding: 5rem 1.5rem;
  background: var(--white);
  overflow: hidden;
}
.slider-inner { max-width: 1200px; margin: 0 auto; }

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.slide-image {
  position: relative;
  overflow: hidden;
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-content {
  background: #eec050;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide-content .slide-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8a8a;
  margin-bottom: 0.8rem;
}
.slide-content h3 {
  font-size: 1.8rem;
  color: #676767;
  margin-bottom: 1rem;
}
.slide-content p {
  color: #8a8a8a;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider-btn {
  background: var(--teal);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--teal-dark); transform: scale(1.1); }
.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--teal); transform: scale(1.3); }

/* ============================================================
   ABOUT ROTOR
============================================================ */
#about-rotor {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.about-rotor-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 420px;
}
.about-slide.active { display: grid; }
.about-slide.flip { direction: rtl; }
.about-slide.flip > * { direction: ltr; }
.about-slide-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.about-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-slide-content { padding: 1rem 0; }
.about-slide-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.25;
}
.about-slide-text {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.welcome-slide .about-slide-content { text-align: center; }
.welcome-slide .about-slide-title { text-align: center; }
.about-rotor-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .about-slide { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-slide.flip { direction: ltr; }
  .about-slide-img { height: 260px; }
  .about-slide-title { text-align: center; }
  .about-slide-content { text-align: center; }
  .about-slide-content .section-divider { justify-content: center; }
}

/* ============================================================
   BLOG SECTION
============================================================ */
#blog-section {
  padding: 5rem 1.5rem;
  background: var(--sand);
}
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--navy);
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-cta:hover { color: var(--teal-dark); gap: 0.7rem; }
.blog-cta { text-align: center; margin-top: 2.5rem; }

/* blog in-post CTA strip */
.blog-booking-cta {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 1.2rem 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}
.blog-booking-cta p { margin-bottom: 0.6rem; font-weight: 600; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
}

.footer-top {
  max-width: 1300px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0rem;
}
.footer-brand,
.footer-col { min-width: 0; word-break: break-word; }

.footer-brand .footer-logo { height: 55px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 16px; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-light);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 16px;
}
.footer-contact-item .icon { color: var(--teal); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--white); }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .rooms-grid, .vibe-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .reviews-inner { grid-template-columns: 1fr; }
  .slide { grid-template-columns: 1fr; }
  .slide-image { height: 250px; }
}

/* Mobile nav — triggers at 980px */
@media (max-width: 980px) {
  #menu-toggle { display: flex; }

  /* Nav panel: fixed so it always clears the sticky header on any device */
  #primary-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: #eec050;
    padding: 0.5rem 1rem 2rem;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }
  #site-header:has(#menu-check:checked) #primary-nav { display: block; }

  /* All top-level items full width */
  #primary-nav ul { flex-direction: column; gap: 0; width: 100%; }
  #primary-nav ul li { width: 100%; }
  #primary-nav ul li a {
    display: block;
    width: 100%;
    padding: 8px 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: #3a3a3a;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    text-align: left;
  }

  /* Sub-menus: always expanded, slightly offset color */
  #primary-nav ul .sub-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    margin: 0;
    padding: 0;
    min-width: unset;
    animation: none;
  }
  #primary-nav ul .sub-menu li a {
    background: rgba(0,0,0,0.06);
    padding-left: 1.8rem;
    font-size: 0.88rem;
    color: #555;
    border-radius: 0;
  }

  /* Book Now button full width */
  #primary-nav ul li.book-btn a,
  #primary-nav > ul > li:last-child > a {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.9rem 1rem !important;
    border-radius: var(--radius) !important;
  }

  /* Hide sticky bottom bar on mobile — removed per request */
  #sticky-book-btn { display: none; }

  /* Footer stacks to single column on all mobile devices */
  .footer-top { grid-template-columns: 1fr !important; gap: 1.5rem !important; padding: 2.5rem 1.2rem 1.5rem !important; }
  .footer-bottom { flex-direction: column !important; gap: 0.75rem; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  /* Compare At A Glance — mobile: hide label panel + Best For column */
  .compare-widget { padding: 0; }
  .compare-widget > div > div:first-child { display: none !important; }
  .compare-widget table th:nth-child(2),
  .compare-widget table td:nth-child(2) { display: none; }
}

/* Layout adjustments — small tablets and phones */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-booking-widget { flex-direction: column; transform: translateY(0); margin-top: 1.5rem; }
  #promo-section { padding: 3rem 1.5rem; }
  .promo-inner { flex-direction: column; gap: 1.5rem; }

  .rooms-grid, .vibe-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr !important; gap: 1.5rem !important; padding: 2.5rem 1.2rem 1.5rem !important; }
  .footer-bottom { flex-direction: column !important; gap: 0.75rem; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .promo-badge { width: 150px; height: 150px; }
  .promo-badge .badge-price { font-size: 2.5rem; }
}

#promo-section {
  padding-top: 4rem;
}

.price-badge{
	color: #fff !important;
}

/* ============================================================
   SINGLE POST PAGE
============================================================ */
.post-hero {
  background: var(--navy);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center / cover no-repeat;
  opacity: 0.12;
}
.post-hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.post-category-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.post-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); line-height: 1.25; margin-bottom: 1.2rem; }
.post-meta { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.post-meta span { display: flex; align-items: center; gap: 0.4rem; }
.post-meta i { color: var(--teal-light); }
.post-featured-image { max-width: 1000px; margin: -2rem auto 0; padding: 0 1.5rem; position: relative; z-index: 2; }
.post-featured-image img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.post-layout { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem 4rem; display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.post-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); }
.post-content h2 { font-size: 1.7rem; color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 3px solid var(--teal); }
.post-content h3 { font-size: 1.3rem; color: var(--navy); margin: 2rem 0 0.75rem; }
.post-content h4 { font-size: 1.1rem; color: var(--teal-dark); margin: 1.5rem 0 0.5rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.post-content p { margin-bottom: 1.3rem; }
.post-content ul, .post-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.5rem; color: var(--text-mid); }
.post-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--teal-dark); }
.post-content img { width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; box-shadow: var(--shadow); }
.post-content strong { color: var(--text-dark); }
.post-content blockquote { border-left: 4px solid var(--teal); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--sand); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text-mid); }
.post-content .blog-booking-cta { background: var(--teal) !important; color: var(--white) !important; text-align: center !important; padding: 1.5rem 2rem !important; border-radius: var(--radius-lg) !important; margin: 2.5rem 0 !important; }
.post-content .blog-booking-cta p { color: var(--white) !important; font-weight: 600 !important; margin-bottom: 0.8rem !important; font-size: 1rem !important; }
.post-tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e0e0e0; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.post-tags span { font-size: 0.8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.post-tag { background: var(--sand); color: var(--teal-dark); padding: 0.3rem 0.9rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; transition: var(--transition); }
.post-tag:hover { background: var(--teal); color: var(--white); }
.author-box { background: var(--sand); border-radius: var(--radius-lg); padding: 1.5rem; margin-top: 2.5rem; display: flex; gap: 1.2rem; align-items: center; }
.author-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; font-weight: 700; flex-shrink: 0; font-family: var(--font-head); }
.author-info h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.author-info p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e0e0e0; }
.post-nav a { background: var(--white); border: 2px solid #e0e0e0; border-radius: var(--radius); padding: 1rem 1.2rem; transition: var(--transition); }
.post-nav a:hover { border-color: var(--teal); }
.post-nav .nav-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); font-weight: 700; display: block; margin-bottom: 0.4rem; }
.post-nav .nav-title { font-size: 0.9rem; color: var(--navy); font-weight: 600; line-height: 1.4; display: block; }
.post-nav .nav-next { text-align: right; }
.post-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.sidebar-widget-header { background: var(--navy); color: var(--white); padding: 0.9rem 1.3rem; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.sidebar-widget-body { padding: 1.3rem; }
.sidebar-book-widget { background: linear-gradient(135deg, var(--teal-dark), var(--navy)); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; margin-bottom: 1.5rem; box-shadow: var(--shadow-lg); }
.sidebar-book-widget .price-badge { background: var(--coral); color: var(--white); font-size: 1.8rem; font-weight: 900; font-family: var(--font-head); display: inline-flex; flex-direction: column; align-items: center; padding: 0.45rem 1.1rem 0.55rem; border-radius: var(--radius); margin-bottom: 0.75rem; line-height: 1.1; }
.sidebar-book-widget .price-badge .starting-from { font-size: 0.6rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.07em; line-height: 1.4; }
.sidebar-book-widget .price-label { color: var(--teal-light); font-size: 0.82rem; margin-bottom: 1rem; display: block; }
.sidebar-book-widget h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.6rem; }
.sidebar-book-widget p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 1.3rem; line-height: 1.5; }
.sidebar-book-widget .btn { width: 100%; display: block; text-align: center; margin-bottom: 0.6rem; }
.sidebar-book-widget .urgency { color: var(--gold); font-size: 0.78rem; font-weight: 600; margin-top: 0.4rem; margin-bottom: 0; }
.recent-post-item { display: flex; gap: 0.8rem; align-items: flex-start; padding-bottom: 0.9rem; margin-bottom: 0.9rem; border-bottom: 1px solid #f0f0f0; }
.recent-post-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post-thumb { width: 60px; height: 60px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.recent-post-thumb-placeholder { width: 60px; height: 60px; border-radius: var(--radius); background: var(--teal); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.recent-post-info a { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.4; display: block; margin-bottom: 0.25rem; }
.recent-post-info a:hover { color: var(--teal); }
.recent-post-date { font-size: 0.75rem; color: var(--text-light); }
.category-list li { border-bottom: 1px solid #f0f0f0; }
.category-list li:last-child { border-bottom: none; }
.category-list li a { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; font-size: 0.88rem; color: var(--text-mid); font-weight: 600; }
.category-list li a:hover { color: var(--teal); }
.category-list li a span { background: var(--sand); color: var(--teal); font-size: 0.75rem; font-weight: 700; padding: 0.15rem 0.6rem; border-radius: 50px; }
#related-posts { background: var(--sand); padding: 4rem 1.5rem; }
.related-posts-inner { max-width: 1100px; margin: 0 auto; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.back-to-blog { text-align: center; padding: 2rem 1.5rem; background: var(--white); }
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .post-featured-image img { height: 260px; }
}
@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-hero { padding: 3rem 1.5rem 2rem; }
}

/* ============================================================
   BLOG ARCHIVE + HOME PAGES
============================================================ */
.archive-hero {
  background: var(--navy);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.archive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center / cover no-repeat;
  opacity: 0.12;
}
.archive-hero-inner { position: relative; z-index: 1; }
.archive-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 0.5rem; }
.archive-hero p { font-family: var(--font-accent); color: var(--teal-light); font-size: 1.2rem; }
.blog-filter-bar { background: var(--white); border-bottom: 1px solid #e8e8e8; padding: 1rem 1.5rem; position: sticky; top: 70px; z-index: 50; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.blog-filter-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.filter-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-right: 0.5rem; }
.filter-btn { background: var(--sand); color: var(--text-mid); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; transition: var(--transition); border: 2px solid transparent; }
.filter-btn:hover, .filter-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
/* Blog home — two-column with sidebar */
body.blog .archive-layout { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem 4rem; display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
body.blog .archive-sidebar { position: sticky; top: 130px; }
/* Archive / category — single column, no sidebar */
body.archive .archive-layout { max-width: 860px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
body.archive .archive-sidebar { display: none !important; }
.archive-post-card { display: grid; grid-template-columns: 280px 1fr; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 1.5rem; transition: var(--transition); }
.archive-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.archive-post-thumb { overflow: hidden; height: 220px; }
.archive-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.archive-post-card:hover .archive-post-thumb img { transform: scale(1.05); }
.archive-post-thumb-placeholder { width: 100%; height: 220px; background: linear-gradient(135deg, var(--teal), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.archive-post-body { padding: 1.8rem; display: flex; flex-direction: column; justify-content: center; }
.archive-post-cat { display: inline-block; background: var(--teal); color: var(--white); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.8rem; border-radius: 50px; margin-bottom: 0.8rem; }
.archive-post-body h2 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.7rem; line-height: 1.4; }
.archive-post-body h2 a { color: inherit; }
.archive-post-body h2 a:hover { color: var(--teal); }
.archive-post-excerpt { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.card-book-cta { background: var(--teal); text-align: center; padding: 0.65rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; }
.card-book-cta a { color: var(--white); font-weight: 700; font-size: 0.82rem; text-decoration: none; }
.card-book-cta a:hover { color: var(--gold); }
.archive-post-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.archive-post-meta { font-size: 0.78rem; color: var(--text-light); display: flex; gap: 0.8rem; }
.archive-post-meta i { color: var(--teal); }
.read-more-link { color: var(--teal); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.3rem; transition: var(--transition); }
.read-more-link:hover { color: var(--teal-dark); gap: 0.6rem; }
.archive-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.archive-pagination .page-numbers { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; background: var(--white); color: var(--text-mid); box-shadow: var(--shadow); transition: var(--transition); }
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current { background: var(--teal); color: var(--white); }
.archive-pagination .page-numbers.dots { box-shadow: none; background: transparent; }
@media (max-width: 900px) {
  body.blog .archive-layout { grid-template-columns: 1fr; }
  body.blog .archive-sidebar { position: static; }
  .archive-post-card { grid-template-columns: 1fr; }
  .archive-post-thumb { height: 200px; }
}
@media (max-width: 700px) {
  .archive-post-body { padding: 1.2rem; }
}

/* ============================================================
   ROOMS PAGE
============================================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s ease; }
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(43,158,185,0.88), rgba(4,177,184,0.75)); }
.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 0.75rem; line-height: 1.2; }
.page-hero-content p { font-family: var(--font-accent); color: var(--teal-light); font-size: 1.15rem; margin-bottom: 1.5rem; }
.page-hero-badges { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.page-hero-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; backdrop-filter: blur(4px); }
.rooms-page { background: var(--sand); }
.room-tabs { background: var(--white); border-bottom: 2px solid #e8e8e8; position: sticky; top: 70px; z-index: 50; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.room-tabs-inner { max-width: 1100px; margin: 0 auto; display: flex; overflow-x: auto; scrollbar-width: none; padding: 0 1.5rem; }
.room-tabs-inner::-webkit-scrollbar { display: none; }
.room-tab-btn { flex-shrink: 0; padding: 1rem 1.5rem; font-size: 0.85rem; font-weight: 700; color: var(--text-mid); border-bottom: 3px solid transparent; transition: var(--transition); white-space: nowrap; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; }
.room-tab-btn:hover { color: var(--teal); }
.room-tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }
.room-section { padding: 4rem 1.5rem; border-bottom: 1px solid #e0e0e0; }
.room-section:nth-child(even) { background: var(--white); }
.room-section:nth-child(odd) { background: var(--sand); }
.room-section-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.room-section-inner.reverse { direction: rtl; }
.room-section-inner.reverse > * { direction: ltr; }
.room-gallery { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.room-gallery-main { width: 100%; height: 380px; object-fit: cover; display: block; }
.room-gallery-placeholder { width: 100%; height: 380px; background: linear-gradient(135deg, var(--teal), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.room-gallery-thumbs { display: flex; gap: 0.5rem; padding: 0.75rem; background: var(--navy); overflow-x: auto; scrollbar-width: none; }
.room-gallery-thumbs::-webkit-scrollbar { display: none; }
.room-thumb { flex-shrink: 0; width: 70px; height: 52px; object-fit: cover; border-radius: var(--radius); cursor: pointer; opacity: 0.65; transition: var(--transition); border: 2px solid transparent; }
.room-thumb:hover, .room-thumb.active { opacity: 1; border-color: var(--teal); }
.room-badge { display: inline-block; background: var(--coral); color: var(--white); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 0.9rem; border-radius: 50px; margin-bottom: 0.75rem; }
.room-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 0.4rem; }
.room-subtitle { font-family: var(--font-accent); color: var(--teal); font-size: 0.95rem; margin-bottom: 1rem; }
.room-description { color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; font-size: 1rem; }
.room-meta-strip { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.room-meta-item { background: var(--white); border: 1px solid #e0e0e0; border-radius: var(--radius); padding: 0.6rem 1rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 700; color: var(--navy); box-shadow: var(--shadow); }
.room-meta-item .meta-icon { color: var(--teal); font-size: 1rem; }
.room-price-tag { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white); border: none; font-size: 1rem; padding: 0.6rem 1.2rem; }
.room-amenities { margin-bottom: 1.5rem; }
.room-amenities h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.75rem; }
.room-amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.room-amenity-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-mid); }
.room-amenity-item::before { content: ''; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
.room-cta-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.rooms-why-strip { background: var(--navy); padding: 3rem 1.5rem; text-align: center; }
.rooms-why-strip h2 { color: var(--white); margin-bottom: 0.5rem; }
.rooms-why-strip p { color: var(--teal-light); font-family: var(--font-accent); margin-bottom: 2rem; }
.rooms-why-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; }
.rooms-why-item { color: var(--white); font-size: 0.9rem; }
.rooms-why-item .why-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.rooms-why-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--teal-light); }
.page-booking-cta { background: linear-gradient(135deg, var(--coral), #e17a01); padding: 4rem 1.5rem; text-align: center; color: var(--white); }
.page-booking-cta h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.page-booking-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 1.5rem; font-family: var(--font-accent); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); }
@media (max-width: 768px) {
  .room-section-inner { grid-template-columns: 1fr; gap: 2rem; }
  .room-section-inner.reverse { direction: ltr; }
  .room-gallery-main { height: 260px; }
  .room-gallery-placeholder { height: 260px; }
  .room-amenities-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-cards-section { background: #fff; padding: 3rem 1.5rem; }
.contact-cards-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.contact-card { background: linear-gradient(135deg, #006064, #00838f 60%, #2b9eb9 100%); border: none; border-radius: var(--radius-lg); padding: 1.8rem 1.5rem; text-align: center; transition: var(--transition); flex: 1; min-width: 170px; max-width: 210px; }
.contact-card:hover { opacity: 0.88; transform: translateY(-3px); }
.contact-card-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.contact-card h3 { color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.contact-card p, .contact-card a { color: var(--white); font-size: 0.85rem; line-height: 1.6; text-decoration: none; word-break: break-word; overflow-wrap: break-word; }
.contact-card a:hover { color: rgba(255,255,255,0.75); }
.contact-card .hours-detail { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; }
.contact-main { max-width: 1100px; margin: 0 auto; padding: 4rem 1.5rem; display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: start; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); position: sticky; top: 90px; }
.contact-form-card h2 { color: var(--navy); font-size: 1.6rem; margin-bottom: 0.4rem; }
.contact-form-card p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 1.5rem; font-family: var(--font-accent); }
.contact-form-card .wpforms-field input,
.contact-form-card .wpforms-field textarea,
.contact-form-card .wpforms-field select { border: 1.5px solid #e0e0e0 !important; border-radius: var(--radius) !important; padding: 0.75rem 1rem !important; font-size: 0.9rem !important; transition: border-color 0.2s !important; width: 100% !important; }
.contact-form-card .wpforms-field input:focus,
.contact-form-card .wpforms-field textarea:focus { border-color: var(--teal) !important; outline: none !important; }
.contact-form-card .wpforms-field label { font-size: 0.82rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; color: var(--text-mid) !important; margin-bottom: 0.4rem !important; }
.contact-form-card .wpforms-submit-container .wpforms-submit { background: var(--coral) !important; color: var(--white) !important; border: none !important; border-radius: 50px !important; padding: 0.9rem 2rem !important; font-size: 0.95rem !important; font-weight: 700 !important; width: 100% !important; cursor: pointer !important; transition: var(--transition) !important; }
.contact-form-card .wpforms-submit-container .wpforms-submit:hover { background: #e17a01 !important; transform: translateY(-1px) !important; }
.contact-map-section { background: var(--sand); padding: 1rem 1.5rem 3rem; }
.contact-map-inner { max-width: 1100px; margin: 0 auto; }
.contact-map-inner h2 { color: var(--navy); margin-bottom: 1rem; font-size: 1.5rem; }
.contact-map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; }
.contact-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map-directions { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.contact-direction-card { background: var(--white); border-radius: var(--radius); padding: 1rem 1.2rem; box-shadow: var(--shadow); flex: 1; min-width: 160px; }
.contact-direction-card strong { display: block; color: var(--navy); font-size: 0.85rem; margin-bottom: 0.3rem; }
.contact-direction-card span { color: var(--text-mid); font-size: 0.82rem; }
.faq-section { background: var(--white); padding: 4rem 1.5rem; text-align: center; }
.faq-inner { max-width: 1080px; margin: 0 auto; }
.faq-inner .section-divider { text-align: center; }
.faq-inner h2 { text-align: center; color: var(--navy); margin-bottom: 0.5rem; }
.faq-inner > p { text-align: center; color: var(--text-mid); font-family: var(--font-accent); margin-bottom: 3rem; }
.faq-cat-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.faq-cat-btn { background: var(--sand); color: var(--text-mid); border: 2px solid transparent; padding: 0.5rem 1.1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
.faq-category-group { display: none; }
.faq-category-group.active { display: block; }
.faq-item { border: 1px solid #e8e8e8; border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; transition: box-shadow 0.2s; text-align: left; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { box-shadow: var(--shadow); }
.faq-question { width: 100%; background: var(--white); border: none; padding: 1.1rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; text-align: left; font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.4; transition: background 0.2s; }
.faq-question:hover { background: #f8f8f8; }
.faq-item.open .faq-question { background: var(--teal); color: var(--white); }
.faq-chevron { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.2s; font-size: 0.75rem; color: var(--teal); }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(255,255,255,0.2); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; background: #fafafa; }
.faq-answer-inner { padding: 1.2rem 1.3rem; color: var(--text-mid); font-size: 0.9rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 600px; }
@media (max-width: 900px) {
  .contact-main { grid-template-columns: 1fr; }
  .contact-form-card { position: static; order: -1; }
}
@media (max-width: 600px) {
  .contact-cards-inner { justify-content: center; flex-wrap: wrap; }
}

That makes perfect sense now!
The .sidebar-book-widget styles are inside the <style> block in single.php — so they only load when a single post page is viewed. When you're on /blog/ it loads index.php instead, which doesn't have those styles.
The clean permanent fix — move ALL the sidebar styles out of single.php and into style.css so they load on every page automatically.
Add these to the bottom of your style.css:
css/* ── Sidebar Widgets ──────────────────────────────────────── */
.sidebar-book-widget {
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.sidebar-book-widget .price-badge {
  background: var(--coral);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  font-family: var(--font-head);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.45rem 1.1rem 0.55rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.sidebar-book-widget .price-badge .starting-from {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}
.sidebar-book-widget .price-label {
  color: var(--teal-light);
  font-size: 0.82rem;
  margin-bottom: 1rem;
  display: block;
}
.sidebar-book-widget h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.sidebar-book-widget p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 1.3rem;
  line-height: 1.5;
}
.sidebar-book-widget .btn {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 0.6rem;
}
.sidebar-book-widget .urgency {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.4rem;
  margin-bottom: 0;
}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.sidebar-widget-header {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sidebar-widget-body { padding: 1.3rem; }
.recent-post-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}
.recent-post-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}
.recent-post-thumb-placeholder {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--teal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.recent-post-info a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: block;
  margin-bottom: 0.25rem;
}
.recent-post-info a:hover { color: var(--teal); }
.recent-post-date {
  font-size: 0.75rem;
  color: var(--text-light);
}
.category-list li { border-bottom: 1px solid #f0f0f0; }
.category-list li:last-child { border-bottom: none; }
.category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 600;
}
.category-list li a:hover { color: var(--teal); }
.category-list li a span {
  background: var(--sand);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
}