 :root {
      --brand-blue: #071b3f;
      --deep-cream: #f5e0c3;
      --soft-cream: #f9f3e9;
      --glass-bg: rgba(255, 255, 255, 0.12);
      --glass-border: rgba(255, 255, 255, 0.35);
      --accent-gold: #d5a253;
      --text-main: #0f172a;
      --text-muted: #4b5563;
      --radius-xl: 22px;
      --shadow-soft: 0 18px 45px rgba(7, 27, 63, 0.35);
      --transition-fast: 0.25s ease-out;
      --transition-med: 0.4s ease-out;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
      background: radial-gradient(circle at top, #0b1f45 0%, #020617 35%, #02040a 100%);
      color: #f9fafb;
      min-height: 100vh;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 18px 16px 40px;
    }

    .section-label {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(249, 250, 251, 0.7);
      margin-bottom: 8px;
    }

    .section-title {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #f9fafb;
      margin-bottom: 6px;
    }

    .section-subtitle {
      font-size: 14px;
      color: rgba(226, 232, 240, 0.8);
      max-width: 420px;
    }

    .section {
      margin-top: 40px;
    }

    .section-header {
      margin-bottom: 18px;
    }

    /* HERO */
    .hero {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      background: radial-gradient(circle at top left, #d5a25322 0%, transparent 55%),
                  radial-gradient(circle at bottom right, #22c55e11 0%, transparent 60%),
                  #020617;
      padding: 18px 16px 20px;
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 18px;
      align-items: center;
    }

    @media (max-width: 800px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .hero {
        padding: 18px 14px 20px;
      }
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.75);
      border: 1px solid rgba(148, 163, 184, 0.35);
      font-size: 11px;
      color: rgba(226, 232, 240, 0.9);
      margin-bottom: 10px;
    }

    .hero-tag-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
    }

    .hero-title {
      font-size: clamp(26px, 4vw, 34px);
      line-height: 1.1;
      margin-bottom: 10px;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .hero-title span {
      color: var(--deep-cream);
    }

    .hero-subtext {
      font-size: 14px;
      color: rgba(226, 232, 240, 0.85);
      max-width: 420px;
      margin-bottom: 16px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 14px;
    }

    .btn {
      border-radius: 999px;
      padding: 9px 18px;
      font-size: 13px;
      border: none;
      outline: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      letter-spacing: 0.01em;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
                  background var(--transition-fast), color var(--transition-fast);
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent-gold), #facc6b);
      color: #1f2933;
      box-shadow: 0 12px 25px rgba(213, 162, 83, 0.45);
    }

    .btn-primary:hover {
      transform: translateY(-1px) scale(1.01);
      box-shadow: 0 16px 30px rgba(213, 162, 83, 0.6);
    }

    .btn-outline {
      background: rgba(15, 23, 42, 0.85);
      color: #e5e7eb;
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .btn-outline:hover {
      transform: translateY(-1px);
      background: rgba(15, 23, 42, 1);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 11px;
      color: rgba(148, 163, 184, 0.9);
    }

    .hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12) 0%, rgba(15, 23, 42, 0.7) 60%);
    }

    .hero-rating-stars {
      color: #facc15;
      font-size: 13px;
    }

    .hero-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.96));
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: var(--shadow-soft);
      padding: 10px;
      display: grid;
      grid-template-rows: auto auto;
      gap: 8px;
      animation: floatHero 5s ease-in-out infinite;
    }

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

    .hero-card-top {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background-image: url("images/reception.jpg");
      background-size: cover;
      background-position: center;
      min-height: 150px;
    }

    .hero-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(3, 7, 18, 0.78), rgba(3, 7, 18, 0.1));
    }

    .hero-card-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 11px;
      background: rgba(3, 7, 18, 0.75);
      border: 1px solid rgba(148, 163, 184, 0.5);
      color: #e5e7eb;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-card-badge span {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-card-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 6px 2px 0;
      gap: 8px;
    }

    .hero-card-copy {
      font-size: 11px;
      color: rgba(203, 213, 225, 0.9);
    }

    .hero-card-copy strong {
      display: block;
      font-size: 12px;
      color: #e5e7eb;
      margin-bottom: 2px;
    }

    .hero-badge-mini {
      font-size: 10px;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.8);
      color: rgba(226, 232, 240, 0.9);
    }

    @media (max-width: 800px) {
      .hero-card {
        order: -1;
      }
      .hero-card-top {
        min-height: 170px;
      }
    }

    /* HIGHLIGHTS STRIP */
    .highlights {
      margin-top: 20px;
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 6px;
      scrollbar-width: thin;
    }

    .highlights::-webkit-scrollbar {
      height: 4px;
    }

    .highlights::-webkit-scrollbar-thumb {
      background: rgba(148, 163, 184, 0.5);
      border-radius: 999px;
    }

    .highlight-pill {
      flex: 0 0 auto;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.82);
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 12px;
      color: rgba(226, 232, 240, 0.9);
      display: inline-flex;
      align-items: center;
      gap: 7px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .highlight-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent-gold);
    }

    /* ROOMS & SUITES */
    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    @media (max-width: 900px) {
      .rooms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .rooms-grid {
        grid-template-columns: 1fr;
      }
    }

    .room-card {
      position: relative;
      border-radius: var(--radius-xl);
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.82));
      border: 1px solid rgba(148, 163, 184, 0.65);
      box-shadow: 0 14px 36px rgba(15, 23, 42, 0.7);
      overflow: hidden;
      cursor: pointer;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .room-card:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 22px 40px rgba(15, 23, 42, 0.9);
      border-color: rgba(248, 250, 252, 0.7);
    }

    .room-image {
      position: relative;
      height: 150px;
      background-size: cover;
      background-position: center;
    }

    .room-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0));
    }

    .room-label {
      position: absolute;
      top: 9px;
      left: 9px;
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 10px;
      background: rgba(15, 23, 42, 0.88);
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: rgba(241, 245, 249, 0.95);
    }

    .room-body {
      padding: 10px 11px 11px;
    }

    .room-name {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
      color: #f9fafb;
    }

    .room-copy {
      font-size: 12px;
      color: rgba(209, 213, 219, 0.9);
      margin-bottom: 8px;
    }

    .room-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      color: rgba(209, 213, 219, 0.95);
    }

    .room-price {
      color: var(--deep-cream);
      font-weight: 600;
    }

    .room-btn {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      padding: 5px 10px;
      font-size: 11px;
      color: rgba(226, 232, 240, 0.95);
      background: rgba(15, 23, 42, 0.9);
      cursor: pointer;
      transition: background var(--transition-fast), transform var(--transition-fast);
    }

    .room-btn:hover {
      background: rgba(15, 23, 42, 1);
      transform: translateY(-1px);
    }

    /* GUEST REVIEWS */
    .reviews-section {
      margin-top: 40px;
    }

    .reviews-wrapper {
      border-radius: 26px;
      padding: 18px 16px;
      background: radial-gradient(circle at top left, rgba(213, 162, 83, 0.12) 0%, transparent 55%),
                  linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
      border: 1px solid rgba(148, 163, 184, 0.6);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
    }

    .reviews-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.4fr);
      gap: 22px;
      align-items: center;
    }

    @media (max-width: 800px) {
      .reviews-inner {
        grid-template-columns: 1fr;
      }
    }

    .reviews-left {
      max-width: 320px;
    }

    .reviews-left-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #f9fafb;
    }

    .reviews-left-sub {
      font-size: 13px;
      color: rgba(209, 213, 219, 0.9);
      margin-bottom: 12px;
    }

    .reviews-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 11px;
      color: rgba(209, 213, 219, 0.95);
      margin-bottom: 4px;
    }

    .reviews-meta-pill {
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.65);
      background: rgba(15, 23, 42, 0.9);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .reviews-stars {
      color: #facc15;
      font-size: 13px;
    }

    .reviews-slider {
      position: relative;
      min-height: 170px;
    }

    .review-card {
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.22) 0%, rgba(15, 23, 42, 0.95) 45%);
      border: 1px solid rgba(248, 250, 252, 0.6);
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.85);
      padding: 14px 14px 14px;
      opacity: 0;
      transform: translateY(8px) scale(0.98);
      pointer-events: none;
      transition: opacity var(--transition-med), transform var(--transition-med);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-card.active {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      background-size: cover;
      background-position: center;
      border: 2px solid rgba(248, 250, 252, 0.8);
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.7);
    }

    .review-info-name {
      font-size: 14px;
      font-weight: 600;
      color: #f9fafb;
    }

    .review-info-meta {
      font-size: 11px;
      color: rgba(209, 213, 219, 0.9);
    }

    .review-text {
      font-size: 13px;
      color: rgba(226, 232, 240, 0.96);
      margin-bottom: 10px;
    }

    .review-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      color: rgba(209, 213, 219, 0.95);
    }

    .review-rating {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .review-rating span.stars {
      color: #facc15;
      font-size: 13px;
    }

    .review-dots {
      display: flex;
      gap: 6px;
    }

    .review-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.5);
      transition: transform var(--transition-fast), background var(--transition-fast);
    }

    .review-dot.active {
      background: var(--accent-gold);
      transform: scale(1.35);
    }

    /* AMENITIES GRID */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    @media (max-width: 900px) {
      .amenities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .amenity-card {
      border-radius: 18px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.6);
      padding: 10px 10px 9px;
      font-size: 12px;
      color: rgba(226, 232, 240, 0.96);
      display: flex;
      flex-direction: column;
      gap: 4px;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .amenity-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(148, 163, 184, 0.9);
    }

    /* DINING */
    .dining {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 18px;
      align-items: center;
    }

    @media (max-width: 800px) {
      .dining {
        grid-template-columns: 1fr;
      }
    }

    .dining-image {
      border-radius: 22px;
      min-height: 180px;
      background-image: url("images/dinning.jpg");
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.9);
    }

    .dining-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.93), rgba(15, 23, 42, 0.1));
    }

    .dining-text {
      font-size: 14px;
      color: rgba(226, 232, 240, 0.95);
      max-width: 420px;
    }

    /* GALLERY STRIP */
    .gallery-strip {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 6px;
      scroll-snap-type: x mandatory;
    }

    .gallery-strip::-webkit-scrollbar {
      height: 4px;
    }

    .gallery-strip::-webkit-scrollbar-thumb {
      background: rgba(148, 163, 184, 0.6);
      border-radius: 999px;
    }

    .gallery-item {
      flex: 0 0 210px;
      height: 150px;
      border-radius: 18px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      scroll-snap-align: start;
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.9);
      transform: translateY(0);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .gallery-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 38px rgba(15, 23, 42, 1);
    }

    .gallery-tag {
      position: absolute;
      bottom: 8px;
      left: 10px;
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 11px;
      background: rgba(15, 23, 42, 0.88);
      color: rgba(226, 232, 240, 0.98);
      border: 1px solid rgba(148, 163, 184, 0.7);
    }

    /* MAP AND CONTACT */
    .map-card {
      border-radius: 22px;
      background: radial-gradient(circle at top left, rgba(213, 162, 83, 0.12) 0%, transparent 55%),
                  rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.7);
      padding: 12px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
    }

    .map-fake {
      border-radius: 16px;
      height: 180px;
      background-image: linear-gradient(to bottom right, #0f172a, #020617);
      position: relative;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .map-fake::before {
      content: "";
      position: absolute;
      inset: 12% 18%;
      border-radius: 100%;
      background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent 60%);
      border: 1px dashed rgba(148, 163, 184, 0.7);
    }

    .map-pin {
      position: absolute;
      top: 50%;
      left: 55%;
      transform: translate(-50%, -50%);
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: var(--accent-gold);
      box-shadow: 0 0 0 10px rgba(213, 162, 83, 0.32);
    }

    .map-address {
      font-size: 12px;
      color: rgba(226, 232, 240, 0.96);
      margin-bottom: 6px;
    }

    .map-note {
      font-size: 11px;
      color: rgba(148, 163, 184, 0.95);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
      gap: 16px;
    }

    @media (max-width: 800px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    .contact-card {
      border-radius: 20px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.7);
      padding: 12px 12px 13px;
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.9);
      font-size: 13px;
      color: rgba(226, 232, 240, 0.98);
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .contact-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(148, 163, 184, 0.95);
    }

    .contact-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      font-size: 13px;
    }

    .contact-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 6px;
    }

    .btn-ghost {
      border-radius: 999px;
      border: 1px dashed rgba(148, 163, 184, 0.7);
      background: transparent;
      padding: 6px 11px;
      font-size: 11px;
      color: rgba(226, 232, 240, 0.95);
      cursor: pointer;
      transition: background var(--transition-fast), transform var(--transition-fast);
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 0.9);
      transform: translateY(-1px);
    }

    .btn-reserve-main {
      border-radius: 999px;
      padding: 9px 18px;
      background: linear-gradient(135deg, var(--deep-cream), #fbbf77);
      color: #111827;
      border: none;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      box-shadow: 0 16px 38px rgba(213, 162, 83, 0.6);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      width: 100%;
    }

    .btn-reserve-main:hover {
      transform: translateY(-1px) scale(1.01);
      box-shadow: 0 22px 46px rgba(213, 162, 83, 0.85);
    }

    /* SIMPLE FADE-IN ON SCROLL */
    .reveal {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* === FORCE HOTEL SECTIONS TO SHOW, IGNORE GLOBAL .section RULES === */

.page .section {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
  height: auto !important;
}
/* === FORCE HOTEL PAGE TO USE ITS OWN FONT, IGNORING GLOBALS === */

.hotel-page, 
.hotel-page * {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif !important;
}
html, body {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
/* Push hotel hero below the fixed glass header */
.hotel-page .hero {
    margin-top: 90px; /* adjust between 80–100 if needed */
}
/* Luxury Cream–Gold Glow Hero Background (no image) */
.hotel-page .hero {
  background: radial-gradient(
      circle at top,
      rgba(245, 241, 230, 0.92) 0%,   /* cream glow */
      rgba(212, 175, 55, 0.20) 35%,   /* soft gold wash */
      rgba(8, 15, 24, 0.96) 100%      /* deep elegant fade */
  );
}
/* Remove the pill above the main hero heading */
.hero .hero-tag {
  display: none !important;
}
/* Keep hero buttons side-by-side on mobile */
.hero-actions {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
}

/* Make sure they fit cleanly on small screens */
.hero-actions .btn {
  flex: 1;           /* they share the row */
  min-width: 0;      /* prevents overflow */
}
/* Tighter hero buttons on small screens */
@media (max-width: 480px) {
  .hero-actions .btn {
    font-size: 0.85rem;
    padding: 0.75rem 0.6rem;
    white-space: nowrap;   /* keep text on one line */
  }
}
/* Hide the second meta pill (Top Rated City Hotel · 2025) */
.hero-meta .hero-meta-item:last-child {
  display: none;
}
/* Stronger bouncing/float animation for the hero image card */
.hero-card {
  animation: heroFloat 3.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heroFloat {
  0%   { transform: translateY(0) scale(1); }
  25%  { transform: translateY(-10px) scale(1.01); }
  50%  { transform: translateY(0) scale(1); }
  75%  { transform: translateY(-6px) scale(1.005); }
  100% { transform: translateY(0) scale(1); }
}
.hero-actions a {
  text-decoration: none !important;
}

.hero-actions a:hover,
.hero-actions a:active,
.hero-actions a:focus {
  text-decoration: none !important;
}

#rooms {
    background: #4b2d13 !important;  /* rich brown */
    padding-top: 4rem;
    padding-bottom: 4rem;
}

#rooms {
  background: #4b2d13;                    /* brown */
  padding: 4rem 16px;

  /* break out of the .page padding and go full width */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Rooms section can host absolutely-positioned children */
#rooms {
  position: relative;
  overflow: hidden;
}

/* Engraved flower inside ONLY the Rooms section */
.rooms-flower {
  position: absolute;
  top: 90%;              /* move UP/DOWN */
  right: 0%;             /* move LEFT/RIGHT, or use left: 5% */
  width: 800px;          /* size */
  height: 800px;
  background: url("images/flower5.png") no-repeat center/contain;
  opacity: 0.79;         /* strength of engraving */
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

/* Keep all real content above the flower */
#rooms > *:not(.rooms-flower) {
  position: relative;
  z-index: 1;
}
.booking-modal {
  position: fixed;
  inset: 0;
  display: none;                 /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.booking-modal.is-open {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.booking-modal-panel {
  position: relative;
  max-width: 420px;
  width: 90%;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 22px;
  background: radial-gradient(circle at top left,
      rgba(255, 255, 255, 0.22),
      rgba(35, 24, 12, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  color: #f9f9f9;
  font-size: 1.1rem;
  line-height: 1;
}

.booking-modal-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 245, 0.7);
}

.booking-modal-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.booking-modal-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.85);
}

.booking-modal-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.booking-modal-btn {
  flex: 1;
  min-width: 140px;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  border: none;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.booking-modal-primary {
  background: linear-gradient(135deg, #d4af37, #b88a1f);
  color: #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.booking-modal-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}

.booking-modal-ghost {
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.3);
  color: #f5f5f5;
}

.booking-modal-ghost:hover {
  background: rgba(0, 0, 0, 0.25);
}
/* Guest reviews cream band */
#guest-reviews {
  background: #e8dcc3;                 /* deeper cream */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4rem 16px 3rem;

  /* kill the blue gap between brown + cream */
  margin-top: 0;
}


#guest-reviews {
  background: #dec79f !important;           /* richer cream */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3rem 16px 3rem;

  /* 🔥 kill the visible gap by overlapping the brown */
  margin-top: -12px;                        /* tweak -6 / -8 / -12 if needed */
  position: relative;
  z-index: 1;
}

#amenities {
  background: #dec79f !important;       
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 3rem;
  padding-bottom: 3rem;

 
  margin-top: -10px !important;
  position: relative;
  z-index: 1;
}

#amenities {
    background: #dec79f !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 3rem 20px 3rem !important;  
    margin-top: -10px !important;
}

#amenities .amenities-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#amenities .section-label,
#amenities .section-title,
#amenities .section-subtitle {
    color: #000 !important;
}
#guest-reviews,
#amenities {
  background: #dec79f; 
}

#guest-reviews {
  padding-bottom: 5rem;  
  margin-bottom: 0;
}

#amenities {
  margin-top: 0;         
  padding-top: 3rem;
}


/* Make the slider container a positioning parent */
.reviews-slider {
  position: relative;
}

/* The review card (profile + message + stars) */
.review-card {
  padding-bottom: 3.5rem;  /* create room above the dots */
}

/* The yellow dots under the card */
.review-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;            /* distance from bottom edge of the card */
  display: flex;
  gap: 6px;
}

.contact-actions {
  display: flex;
  justify-content: space-between;  /* Push left & right */
  gap: 12px;                      /* Small space between buttons */
}


/* Base style for all review stars */
.reviews-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: gold; /* default = gold */
}

/* Make the LAST star grey only in places where rating < 5 */
.reviews-rating .stars::after {
  content: "★★★★☆"; /* 4 gold, 1 grey shape */
}

/* If your HTML shows ★★★★★ as plain text, use nth-child trick */
.reviews-stars {
  background: linear-gradient(90deg, gold 0% 80%, #888 80% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Apply to ALL 5-star text everywhere */
.hero-rating-stars,
.reviews-stars,
.stars {
  background: linear-gradient(
    90deg,
    gold 0% 80%,   /* first 4 stars gold */
    #888 80% 100%  /* last star grey */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
