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

:root {
  --navy:    #0d2240;
  --navy-lt: #153158;
  --gold:    #c8922a;
  --gold-lt: #e8ad45;
  --cream:   #f9f4ed;
  --warm:    #f0e8d8;
  --text:    #2a2a2a;
  --muted:   #6b6b6b;
  --white:   #ffffff;
  --shadow:  0 4px 24px rgba(13,34,64,0.13);
  --radius:  8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}

/* ── HEADER ─────────────────────────────── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gold-lt);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

nav ul li a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: white;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.14);
}

nav ul li a.btn-nav {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-color: transparent;
}

nav ul li a.btn-nav:hover {
  background: #d4a820;
  color: var(--navy);
}

/* ── HERO ────────────────────────────────── */
#hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Pictures/Front1.jpg') center/cover no-repeat;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

#hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
}

#hero h2 em {
  color: var(--gold-lt);
  font-style: italic;
}

#hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 300;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 14px rgba(200,146,42,0.4);
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.btn-navy {
  background: var(--navy);
  color: white;
}

.btn-navy:hover {
  background: var(--navy-lt);
  transform: translateY(-1px);
}

/* ── SECTION LAYOUT ──────────────────────── */
section { padding: 80px 24px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── ROOMS ───────────────────────────────── */
#rooms {
  background: white;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.room-card {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(13,34,64,0.08);
  transition: all 0.3s;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.room-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.room-body {
  padding: 24px;
}

.room-type-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,146,42,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.room-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.amenity-tag {
  font-size: 0.72rem;
  color: var(--navy);
  background: rgba(13,34,64,0.07);
  padding: 3px 9px;
  border-radius: 20px;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(13,34,64,0.08);
}

.room-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.room-price span {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
}

/* ── FEATURES STRIP ──────────────────────── */
#features {
  background: var(--navy);
  padding: 50px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── FORMS (reservation & contact) ──────── */
.form-page {
  min-height: calc(100vh - 72px);
  background: var(--cream);
  padding: 60px 24px;
}

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.form-header {
  margin-bottom: 36px;
}

.form-card {
  background: white;
  border-radius: 14px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,34,64,0.07);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid rgba(13,34,64,0.15);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
}

.radio-label input[type="radio"] {
  width: auto;
  accent-color: var(--gold);
}

/* Price summary box */
.price-summary {
  background: var(--navy);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
}

.price-row.total {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-lt);
  font-family: 'Playfair Display', serif;
}

/* ── CART PAGE ───────────────────────────── */
.cart-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 60px 24px;
}

.cart-card {
  background: white;
  border-radius: 14px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,34,64,0.07);
}

.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.cart-subtitle {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 30px;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13,34,64,0.07);
  font-size: 0.95rem;
}

.cart-line-label { color: var(--muted); }
.cart-line-value { font-weight: 600; color: var(--navy); }

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 24px;
  margin-top: 4px;
}

.cart-total-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.cart-total-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── VIEW RESERVATIONS ───────────────────── */
.admin-page {
  padding: 32px 32px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.admin-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.admin-page p { color: var(--muted); margin-bottom: 28px; }

.reservations-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.875rem;
}

.reservations-table thead {
  background: var(--navy);
  color: white;
}

.reservations-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.reservations-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(13,34,64,0.07);
  color: var(--text);
}

.reservations-table tr:last-child td { border-bottom: none; }

.reservations-table tr:hover td { background: var(--cream); }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.badge-queen  { background: rgba(13,34,64,0.08);  color: var(--navy); }
.badge-king   { background: rgba(200,146,42,0.12); color: var(--gold); }
.badge-double { background: rgba(40,120,60,0.1);   color: #1a6b30; }

/* ── CONTACT ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,146,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 0.95rem;
  color: var(--muted);
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ── SUCCESS ALERT ───────────────────────── */
.alert-success {
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #166534;
  font-size: 0.9rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.875rem;
}

footer a { color: var(--gold-lt); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; }
  .logo-sub { display: none; }

  nav ul { gap: 2px; }
  nav ul li a { padding: 6px 9px; font-size: 0.78rem; }

  #hero { min-height: 440px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .rooms-grid { grid-template-columns: 1fr; }

  .reservations-table { font-size: 0.78rem; }
  .reservations-table th, .reservations-table td { padding: 10px 10px; }
}

/* ── AVAILABILITY BADGES ─────────────────────────── */
.avail-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.avail-ok   { background: rgba(22,163,74,0.1);  color: #15803d; }
.avail-low  { background: rgba(234,179,8,0.12); color: #a16207; }
.avail-full { background: rgba(220,50,50,0.08); color: #b91c1c; }

/* ── REVIEWS ─────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.review-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid rgba(13,34,64,0.07);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(200,146,42,0.15);
  line-height: 1;
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}
.review-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}
.review-author span {
  font-weight: 400;
  color: var(--muted);
  margin-left: 6px;
}

/* ── ROOM PHOTO GALLERY ──────────────────────────── */
.room-photo-gallery {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.room-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
  cursor: pointer;
}
.room-photo.active { opacity: 1; }
.photo-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
  cursor: pointer;
}
.dot.active { background: white; }

/* ── PHOTO GALLERY ARROWS ────────────────────────── */
.photo-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: white;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  line-height: 1;
}
.room-photo-gallery:hover .photo-arrow { opacity: 1; }
.photo-prev { left: 10px; }
.photo-next { right: 10px; }

/* ── PROPERTY GRID ───────────────────────────────── */
.property-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
  height: 400px;
}
.prop-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prop-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: zoom-in;
}
.prop-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 1;
  position: relative;
}
.prop-tall { height: 100%; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

@media (max-width: 768px) {
  .property-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .prop-tall { height: 200px; grid-row: span 1; }
  .prop-col { gap: 8px; }
  .prop-img { height: 140px; }
}

/* ── URGENCY PULSE ─────────────────────────────────────────── */
@keyframes pulse-glow {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.7; }
}
.urgency-pulse {
  display: inline-block;
  color: #b45309;
  font-weight: 700;
  font-size: 0.85rem;
  animation: pulse-glow 1.6s ease-in-out infinite;
  background: rgba(251,191,36,0.12);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(251,191,36,0.35);
}

/* ── STICKY BOOK NOW BUTTON ────────────────────────────────── */
#sticky-book-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#sticky-book-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#sticky-book-btn:hover {
  background: #b07a22;
  color: white;
}

/* ── HAMBURGER MENU ────────────────────────────────────────── */
#hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
#mobile-nav {
  display: none;
}
@media (max-width: 768px) {
  #hamburger { display: block; }
  header nav > ul { display: none; }
  #mobile-nav {
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 99;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  #mobile-nav.open { display: block; }
  #mobile-nav ul {
    list-style: none;
    padding: 0; margin: 0;
    flex-direction: column;
  }
  #mobile-nav ul li a {
    display: block;
    padding: 13px 24px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s;
  }
  #mobile-nav ul li a:hover { background: rgba(255,255,255,0.08); }
  #mobile-nav ul li a.btn-nav {
    margin: 12px 24px 4px;
    border-radius: 6px;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    border-bottom: none;
  }
  /* Click-to-call in header on mobile */
  #header-phone {
    display: flex !important;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 12px;
    border: 1px solid rgba(200,146,42,0.4);
    border-radius: 6px;
  }
  /* Hide sticky btn on mobile (phone bar is enough) */
  #sticky-book-btn { bottom: 16px; right: 16px; font-size: 0.88rem; padding: 12px 18px; }
}
#header-phone { display: none; } /* hidden on desktop */

/* ── ADMIN TABLE ROW HIGHLIGHTS ────────────────────────────── */
tr.row-checkin-today td   { background: rgba(22,163,74,0.06) !important; border-left: 3px solid #16a34a; }
tr.row-checkout-today td  { background: rgba(234,179,8,0.07) !important; border-left: 3px solid #ca8a04; }
tr.row-overdue td         { background: rgba(185,28,28,0.05) !important; border-left: 3px solid #b91c1c; }

/* ── ADMIN WARNING BANNERS ──────────────────────────────────── */
.admin-warning {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 600;
}
.admin-warning.warn-unpaid  { background: rgba(234,179,8,0.1);  border: 1px solid rgba(234,179,8,0.35);  color: #92400e; }
.admin-warning.warn-overdue { background: rgba(185,28,28,0.07); border: 1px solid rgba(185,28,28,0.25); color: #991b1b; }
.admin-warning a { color: inherit; font-weight: 700; }

/* ── ADMIN NAV PILLS ────────────────────────────────────────────────────── */
.admin-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
.admin-nav ul li a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 6px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background .15s, color .15s, border-color .15s;
  border: 1px solid transparent;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.admin-nav ul li a:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.14);
}
.admin-nav ul li a.nav-active {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.admin-nav ul li a.nav-gold {
  color: var(--gold);
  border-color: rgba(200,146,42,0.45);
  background: rgba(200,146,42,0.1);
}
.admin-nav ul li a.nav-gold:hover {
  background: rgba(200,146,42,0.2);
}
.admin-nav ul li a.nav-dim {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  padding: 5px 8px;
  text-transform: none;
  letter-spacing: 0;
}
.admin-nav ul li a.btn-nav {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 5px 13px;
  border-color: transparent;
}
.admin-nav ul li a.btn-nav:hover {
  background: #d4a820;
  color: var(--navy);
}
.nav-badge {
  background: var(--gold);
  color: var(--navy);
  border-radius: 20px;
  padding: 1px 6px;
  font-size: 0.63rem;
  font-weight: 700;
  margin-left: 1px;
}
