/*
Theme Name: Source of the Nile Hotel
Theme URI: https://sourceofthenilehotel.com
Author: Kiira Tech Solutions
Author URI: https://www.kiiratech.com
Description: Custom theme for Source of the Nile Hotels — Jinja & Namanve. Ink & Gold design.
Version: 1.0.0
License: Private
Text Domain: sotn
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --gold:        #C9973A;
  --gold-light:  #E8C478;
  --gold-pale:   rgba(201,151,58,0.10);
  --ink:         #1E1E24;
  --ink-mid:     #2A2A33;
  --ink-light:   #3A3A46;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE0;
  --white:       #FFFFFF;
  --text:        #1A1A18;
  --text-mid:    #4A4A42;
  --text-soft:   #7A7A6E;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --radius:      6px;
  --shadow:      0 4px 20px rgba(30,30,36,0.10);
}

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

html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }
ul { list-style: none; }

h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.gold-rule::before {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: var(--gold);
}
.gold-rule span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-rule--center { justify-content: center; }
.gold-rule--center::before { display: none; }
.gold-rule--center::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: var(--gold);
  order: -1;
}

.section-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 44px;
}
.section-intro h2 { font-size: 28px; margin-bottom: 10px; }
.section-intro p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

.tag-chip {
  display: inline-block;
  font-size: 13px;
  color: var(--text-mid);
  background: var(--cream);
  border: .5px solid var(--cream-dark);
  padding: 3px 9px;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn--gold  { background: var(--gold);  color: var(--white); }
.btn--gold:hover { background: #b5852e; color: var(--white); }
.btn--ink   { background: var(--ink);   color: var(--white); }
.btn--ink:hover { background: var(--ink-mid); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.35);
}
.btn--ghost:hover { color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--white); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--ink);
  padding: 7px 0;
  font-size: 11px;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}
.top-bar-info a,
.top-bar-info span {
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  letter-spacing: .02em;
}
.top-bar-info a:hover { color: var(--gold-light); }
.top-bar-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.top-bar-social a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: .5px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  transition: border-color .2s, color .2s;
}
.top-bar-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: .5px solid rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.site-logo--custom .custom-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.site-logo--custom .site-logo-text {
  min-width: 0;
}

.site-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-logo-mark img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.site-logo-mark span {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  font-style: italic;
}
.site-logo-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: .01em;
}
.site-logo-text em {
  font-size: 10px;
  color: var(--gold);
  font-style: normal;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* Nav links */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  font-size: 15px;
  color: var(--text-mid);
  padding: 24px 14px;
  display: block;
  border-bottom: 2px solid transparent;
  letter-spacing: .01em;
  transition: color .2s, border-color .2s;
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* Reserve button */
.nav-reserve {
  flex-shrink: 0;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 745px;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://sourceofthenilehotel.com/wp-content/uploads/2026/06/hero_source_of_the_nile_hotel_jinja.jpg');
  background-size: cover;
  background-position: center;
  /*opacity: .45;*/
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30,30,36,.96) 0%,
    rgba(30,30,36,.65) 50%,
    rgba(30,30,36,.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 560px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  font-size: 48px;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 16.5px;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: rgba(201,151,58,.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: .5px solid rgba(201,151,58,.2);
  border-top: .5px solid rgba(201,151,58,.2);
  padding: 20px 32px;
  display: flex;
  gap: 32px;
}
.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

/* ============================================================
   LOCATION CARDS SECTION
   ============================================================ */
.locations-section {
  background: var(--white);
  padding: 72px 0;
}
.loc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.loc-card {
  border-radius: 10px;
  overflow: hidden;
  border: .5px solid var(--cream-dark);
  transition: box-shadow .25s, transform .25s;
}
.loc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.loc-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.loc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.loc-card:hover .loc-card-img img { transform: scale(1.04); }
.loc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.loc-card-body { padding: 22px 24px 26px; }
.loc-card-body h3 {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 8px;
}
.loc-card-body p {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.loc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.loc-card-body .link-arrow {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.loc-card-body .link-arrow:hover { color: var(--ink); }
.link-arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   PROPERTY GALLERY
   ============================================================ */
.property-gallery-section {
  background: var(--cream);
  padding: 64px 0;
}
.property-gallery-intro {
  max-width: 610px;
  margin: 0 auto 32px;
  text-align: center;
}
.property-gallery-intro h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.property-gallery-intro p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}
.property-gallery-strip {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 176px;
  gap: 14px;
}
.property-gallery-strip figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}
.property-gallery-feature { grid-row: span 2; }
.property-gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.property-gallery-strip figure:hover img { transform: scale(1.035); }
.property-gallery-strip figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  color: var(--white);
  background: rgba(30,30,36,.68);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--ink);
  padding: 52px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: .5px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 72px 0; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.svc-card {
  background: var(--white);
  border: .5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  transition: box-shadow .2s;
}
.svc-card:hover { box-shadow: var(--shadow); }
.svc-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.svc-body h3 { font-family: var(--serif); font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.svc-body p { font-size: 15.5px; color: var(--text-soft); line-height: 1.65; margin-bottom: 7px; }
.svc-from { font-size: 11px; color: var(--gold); font-weight: 500; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  background: var(--ink-mid);
  padding: 64px 0;
}
.testimonial-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}
.testimonial-quote { flex: 1; }
.testimonial-quote blockquote {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 18px;
}
.testimonial-quote cite {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  font-style: normal;
}
.testimonial-score {
  flex-shrink: 0;
  text-align: center;
  padding: 24px 32px;
  border: .5px solid rgba(201,151,58,.2);
  border-radius: 10px;
  background: rgba(201,151,58,.06);
}
.testimonial-score strong {
  display: block;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stars { display: flex; gap: 3px; justify-content: center; margin: 8px 0; }
.stars svg { width: 14px; height: 14px; fill: var(--gold); }
.testimonial-score span {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--ink);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(201,151,58,.05);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 560px; }
.page-hero h1 { font-size: 34px; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 15.5px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ============================================================
   ROOMS PAGE
   ============================================================ */
.rooms-section { padding: 52px 0 72px; background: var(--cream); }
.rooms-location-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: .5px solid var(--cream-dark);
}
.rooms-location-header h2 { font-size: 22px; color: var(--ink); }
.rooms-location-header span { font-size: 12px; color: var(--text-soft); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.room-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: .5px solid var(--cream-dark);
  transition: box-shadow .25s, transform .25s;
}
.room-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.room-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-price {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 4px;
  border: .5px solid rgba(201,151,58,.25);
  line-height: 1;
}
.room-price sub { font-size: 10px; font-family: var(--sans); font-weight: 300; color: rgba(255,255,255,.45); }
.room-card-body { padding: 16px 18px 20px; }
.room-location-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.room-card-body h3 { font-family: var(--serif); font-size: 16px; color: var(--ink); margin-bottom: 7px; }
.room-card-body p { font-size: 14px; color: var(--text-soft); line-height: 1.55; margin-bottom: 10px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.room-amenities span { font-size: 12px; background: var(--cream); color: var(--text-mid); padding: 2px 7px; border-radius: 2px; }
.room-card-body .link-arrow { font-size: 12.5px; font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; }

/* ============================================================
   ROOM DETAIL PAGE
   ============================================================ */
.breadcrumb {
  background: var(--white);
  border-bottom: .5px solid var(--cream-dark);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-soft);
}
.breadcrumb-inner a { color: var(--text-soft); }
.breadcrumb-inner a:hover { color: var(--ink); }
.breadcrumb-sep { font-size: 10px; color: var(--cream-dark); }

.room-hero {
  position: relative;
  min-height: 320px;
  background: var(--ink);
  overflow: hidden;
}
.room-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .6;
}
.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,36,.92) 0%, rgba(30,30,36,.2) 60%);
}
.room-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}
.room-hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.room-hero-content h1 { font-size: 34px; color: var(--white); margin-bottom: 6px; }
.room-hero-price { font-family: var(--serif); font-size: 22px; color: var(--gold); display: inline; }
.room-hero-price-note { font-size: 13px; color: rgba(255,255,255,.45); margin-left: 6px; }

.room-detail-body {
  padding: 36px 0 72px;
  background: var(--cream);
}
.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.room-detail-card {
  background: var(--white);
  border: .5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 20px;
}
.room-detail-card h2 { font-size: 18px; color: var(--ink); margin-bottom: 12px; }
.room-detail-card p { font-size: 13.5px; color: var(--text-soft); line-height: 1.75; }
.room-divider { height: .5px; background: var(--cream-dark); margin: 22px 0; }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.amenity-item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-mid); }
.amenity-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.room-gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; }

/* Booking widget */
.booking-widget {
  background: var(--white);
  border: .5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 24px 22px;
  position: sticky;
  top: 84px;
}
.booking-widget h3 { font-family: var(--serif); font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.booking-from { font-size: 11px; color: var(--text-soft); margin-bottom: 20px; }
.booking-from strong { display: block; font-family: var(--serif); font-size: 24px; color: var(--gold); margin-top: 2px; line-height: 1; }
.form-field { margin-bottom: 13px; }
.form-field label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 5px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--cream);
  border: .5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 15.5px;
  font-family: var(--sans);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-book {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--sans);
  padding: 13px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 6px;
  transition: background .2s;
  letter-spacing: .02em;
}
.btn-book:hover { background: #b5852e; }
.booking-email-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--gold);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 52px 0 72px; background: var(--cream); }
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-card {
  background: var(--white);
  border: .5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 22px 26px;
}
.contact-card h3 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-card h3 svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.contact-row { display: flex; gap: 9px; margin-bottom: 9px; align-items: flex-start; }
.contact-row svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.contact-row span { font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.contact-row a { font-size: 15px; color: var(--gold); }
.contact-row a:hover { color: var(--ink); }

.contact-form-wrap {
  background: var(--white);
  border: .5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 32px;
}
.contact-form-wrap h3 { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 13px; color: var(--text-soft); margin-bottom: 24px; }

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.newsletter-strip {
  background: rgba(201,151,58,.08);
  border-top: .5px solid rgba(201,151,58,.2);
  border-bottom: .5px solid rgba(201,151,58,.2);
  padding: 30px 0;
}
.newsletter-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.newsletter-strip h3 { font-family: var(--serif); font-size: 17px; color: var(--ink); margin-bottom: 3px; }
.newsletter-strip p { font-size: 13px; color: var(--text-soft); }
.newsletter-form { display: flex; gap: 8px; flex-shrink: 0; }
.newsletter-form input {
  background: var(--white);
  border: .5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--text);
  outline: none;
  width: 230px;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--ink-mid); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.footer-brand-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-about {
  font-size: 12.5px;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  margin-bottom: 18px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: .5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: 13px;
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 14.5px; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col .footer-info-row {
  display: flex;
  gap: 8px;
  margin-bottom: 9px;
  align-items: flex-start;
}
.footer-col .footer-info-row svg {
  width: 13px; height: 13px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  flex-shrink: 0; margin-top: 2px;
}
.footer-col .footer-info-row span,
.footer-col .footer-info-row a {
  font-size: 13.5px;
  color: rgba(255,255,255,.38);
  line-height: 1.55;
}
.footer-col .footer-info-row a:hover { color: var(--white); }
.footer-bottom {
  border-top: .5px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.25); }
.footer-bottom a { color: var(--gold); font-size: 11px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page-section { padding: 56px 0 72px; background: var(--cream); }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.services-images {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.services-images figure { min-width: 0; }
.services-images figure img {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.services-images figcaption { font-size: 12px; color: var(--text-soft); }
.cta-banner {
  background: var(--white);
  border: .5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner h3 { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-bottom: 6px; }
.cta-banner p { font-size: 13px; color: var(--text-soft); }

/* ============================================================
   MOBILE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Top bar */
  .top-bar-info span:nth-child(2) { display: none; }


  .top-bar-info {
    gap: 5px 12px;
  }
  .top-bar-info a,
  .top-bar-info span {
    font-size: 10px;
  }
  .site-logo--custom .custom-logo {
    height: 38px;
    max-width: 64px;
  }
  .site-logo-text strong {
    font-size: 12.5px;
  }
  .site-logo-text em {
    font-size: 8.5px;
    letter-spacing: .07em;
  }

  /* Nav */
  .main-nav, .nav-reserve { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-top: .5px solid var(--cream-dark);
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(30,30,36,.1);
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open a { padding: 12px 24px; border-bottom: none; }
  .main-nav.open + .nav-reserve { display: block; margin: 0 20px 16px; }

  /* Hero */
  .hero { min-height: 420px; }
  .hero h1 { font-size: 32px; }
  .hero-stats { position: static; border: none; background: rgba(201,151,58,.1); padding: 20px; gap: 20px; }
  .hero-stat strong { font-size: 22px; }

  /* Grids → single column */
  .loc-cards,
  .property-gallery-strip,
  .services-grid,
  .services-full-grid,
  .rooms-grid,
  .contact-info-grid,
  .services-images { grid-template-columns: 1fr; }
  .property-gallery-strip { grid-auto-rows: 210px; }
  .property-gallery-intro h2 { font-size: 22px; }
  .property-gallery-feature { grid-row: auto; }

  .stats-bar .container { grid-template-columns: repeat(2,1fr); gap: 24px 0; }
  .stat-item { border-right: none; border-bottom: .5px solid rgba(255,255,255,.08); padding: 0 0 20px; }
  .stat-item:nth-child(odd) { border-right: .5px solid rgba(255,255,255,.08); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .newsletter-strip .container { flex-direction: column; align-items: flex-start; }
  .testimonial-inner { flex-direction: column; gap: 32px; }
  .section-intro h2 { font-size: 22px; }
  .page-hero h1 { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* ============================================================
   MOBILE HEADER — Reservation button always visible in top bar
   Social icons hidden on mobile (moved to footer)
   Compact Jinja/Namanve call buttons replace long text links
   ============================================================ */

/* Mobile top bar — compact layout with social icons restored */
@media (max-width: 768px) {
  /* Keep social icons but shrink them slightly */
  .top-bar-social { display: flex !important; gap: 6px !important; }
  .top-bar-social a { width: 20px !important; height: 20px !important; font-size: 10px !important; }

  /* Show mobile buttons, hide desktop text links */
  .top-bar-info { display: none !important; }
  .top-bar-mobile-btns {
    display: flex !important;
    gap: 6px;
    align-items: center;
  }
  .top-bar-mobile-btns a {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.85) !important;
    background: rgba(255,255,255,.1);
    border: .5px solid rgba(255,255,255,.25);
    border-radius: 3px;
    padding: 4px 10px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .top-bar-mobile-btns a:hover {
    background: rgba(201,151,58,.25);
    border-color: var(--gold);
    color: var(--gold-light) !important;
  }

  /* Make nav header a row: [logo] [reserve btn] [hamburger] */
  .site-header .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    height: auto !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    gap: 8px !important;
  }
  .site-logo { flex: 1 !important; }
  /* Reserve button always visible on mobile, compact */
  .nav-reserve {
    display: inline-block !important;
    order: 0 !important;
    width: auto !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  .nav-toggle {
    flex-shrink: 0 !important;
    order: 1 !important;
  }
  .main-nav {
    display: none !important;
  }
  .main-nav.open {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important; right: 0 !important;
    background: var(--white) !important;
    border-top: .5px solid var(--cream-dark) !important;
    padding: 8px 0 16px !important;
    box-shadow: 0 8px 24px rgba(30,30,36,.1) !important;
    z-index: 300 !important;
  }
  .main-nav.open ul { flex-direction: column !important; gap: 0 !important; }
  .main-nav.open a { padding: 12px 24px !important; border-bottom: none !important; display: block !important; }

  /* Loc cards single column */
  .loc-cards { grid-template-columns: 1fr !important; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  font-family: var(--sans);
}
.wa-float-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
  margin-left: auto;
}
.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.wa-float-btn svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
.wa-float-panel {
  display: none;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(30,30,36,.18);
  padding: 18px 16px 14px;
  margin-bottom: 12px;
  min-width: 220px;
  border: .5px solid var(--cream-dark);
}
.wa-float-panel.open { display: block; }
.wa-float-panel h4 {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.wa-float-panel p {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 12px;
  line-height: 1.5;
}
.wa-float-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: .5px solid var(--cream-dark);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  cursor: pointer;
}
.wa-float-option:hover {
  background: rgba(37,211,102,.08);
  border-color: #25D366;
}
.wa-float-option:last-child { margin-bottom: 0; }
.wa-float-option-icon {
  width: 34px; height: 34px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-float-option-icon svg { width: 18px; height: 18px; fill: #fff; }
.wa-float-option-text strong {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.wa-float-option-text span {
  font-size: 11px;
  color: var(--text-soft);
}
.wa-float-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-soft);
  cursor: pointer;
  line-height: 1;
  padding: 0;
}



/* ============================================================
   CONTACT FORM 7 — Ink & Gold styling
   ============================================================ */

/* Layout grid */
.cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cf7-col { display: flex; flex-direction: column; }
.cf7-col.cf7-full { grid-column: 1 / -1; }

/* Labels */
.wpcf7 label {
  display: block;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  color: var(--text-soft) !important;
  margin-bottom: 6px !important;
  font-family: var(--sans) !important;
}

/* Inputs, selects, textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100% !important;
  background: var(--cream) !important;
  border: 0.5px solid var(--cream-dark) !important;
  border-radius: var(--radius) !important;
  padding: 11px 13px !important;
  font-size: 15px !important;
  font-family: var(--sans) !important;
  color: var(--text) !important;
  outline: none !important;
  transition: border-color .2s !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--gold) !important;
}

.wpcf7 textarea {
  resize: vertical !important;
  min-height: 120px !important;
}

/* Submit button */
.wpcf7 input[type="submit"] {
  background: var(--gold) !important;
  color: #ffffff !important;
  font-family: var(--sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 13px 32px !important;
  border: none !important;
  border-radius: var(--radius) !important;
  cursor: pointer !important;
  letter-spacing: .02em !important;
  transition: background .2s !important;
  margin-top: 8px !important;
}
.wpcf7 input[type="submit"]:hover {
  background: #b5852e !important;
}

/* Validation messages */
.wpcf7-not-valid-tip {
  font-size: 11px !important;
  color: #c0392b !important;
  margin-top: 4px !important;
  display: block !important;
}
.wpcf7-response-output {
  margin-top: 16px !important;
  padding: 12px 16px !important;
  border-radius: var(--radius) !important;
  font-size: 13.5px !important;
  font-family: var(--sans) !important;
  border: 0.5px solid var(--gold) !important;
  background: var(--gold-pale) !important;
  color: var(--ink) !important;
}
.wpcf7-mail-sent-ok {
  border-color: #27ae60 !important;
  background: rgba(39,174,96,.08) !important;
  color: #1a5c35 !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked {
  border-color: #c0392b !important;
  background: rgba(192,57,43,.06) !important;
  color: #7b1e13 !important;
}

/* Loading spinner */
.wpcf7 .wpcf7-spinner {
  margin-left: 10px !important;
  vertical-align: middle !important;
}

/* Mobile */
@media (max-width: 600px) {
  .cf7-row { grid-template-columns: 1fr !important; }
}


/* ============================================================
   PAGE HERO — drone/exterior background image
   ============================================================ */
.page-hero {
  background-image: url('https://sourceofthenilehotel.com/wp-content/uploads/2026/07/DJI_0192-scaled.jpg') !important;
  background-size: cover !important;
  background-position: center 40% !important;
  position: relative !important;
}
.page-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to right, rgba(30,30,36,0.92) 0%, rgba(30,30,36,0.70) 50%, rgba(30,30,36,0.50) 100%) !important;
  z-index: 0 !important;
}
.page-hero .container { position: relative !important; z-index: 1 !important; }
.page-hero::after { display: none !important; }

/* Top bar responsive — phone numbers on desktop, buttons on mobile */
.top-bar-mobile-btns { display: none; }
@media (max-width: 768px) {
  /* Hide text phone links, show compact buttons instead */
  .top-bar-info { display: none !important; }
  .top-bar-mobile-btns { display: flex !important; gap: 6px; align-items: center; }
  .top-bar-mobile-btns a {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.85) !important;
    background: rgba(255,255,255,.1);
    border: .5px solid rgba(255,255,255,.25);
    border-radius: 3px;
    padding: 4px 10px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .top-bar-mobile-btns a:hover {
    background: rgba(201,151,58,.25);
    border-color: var(--gold);
    color: var(--gold-light) !important;
  }
}

/* Enquiry form anchor — offset for sticky header */
#enquiry-form {
  scroll-margin-top: 90px;
}

/* Booking widget — full-width form field */
.form-field--full { grid-column: 1 / -1; }

/* v1.1.3 */