* { box-sizing: border-box; }

:root {
  --teal: #00d8a0;
  --teal-dark: #00b888;
  --teal-tint-light: #ebfcf7;
  --teal-tint: #bff5e7;
  --ink: #1f2937;
  --ink-light: #6b7280;
  --bg: #f7f8fa;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --sidebar-w: 280px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

/* Subtle full-page photo watermark behind the guide content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: url('../images/hero-aerial.jpg') center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

/* ---------- Sidebar ---------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: #0f172a;
  color: #fff;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform 0.25s ease;
}

.sidebar-header {
  padding: 28px 20px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo { font-size: 36px; margin-bottom: 8px; display: flex; justify-content: center; }
.logo img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  padding: 0;
  box-sizing: border-box;
}
.property-name { font-weight: 700; font-size: 18px; }
.property-sub { font-size: 13px; color: #9ca3af; margin-top: 4px; }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex: 1;
}

.nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s;
}

.nav-list li a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.nav-list li a.active {
  background: rgba(10,191,126,0.15);
  color: var(--teal);
  border-left-color: var(--teal);
  font-weight: 600;
}

.nav-icon { font-size: 16px; width: 20px; text-align: center; }

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.print-btn {
  width: 100%;
  padding: 11px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.print-btn:hover { background: var(--teal-dark); }

.nav-toggle {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  background: #0f172a;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 90;
}

/* ---------- Content ---------- */
.content {
  position: relative;
  z-index: 1;
  margin-left: var(--sidebar-w);
  padding: 40px 48px 100px;
  max-width: 820px;
}

.section {
  margin-bottom: 64px;
  scroll-margin-top: 24px;
}

.section-banner {
  background: var(--teal);
  color: #fff;
  padding: 18px 28px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
}

.block h3 {
  color: var(--teal-dark);
  font-size: 17px;
  margin: 0 0 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.block img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin: 14px 0;
  background: linear-gradient(135deg, var(--teal-tint-light), var(--teal-tint));
}

.block img.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.block p { line-height: 1.65; color: #374151; margin: 10px 0; }
.block ul, .block ol { line-height: 1.7; color: #374151; padding-left: 22px; }
.block strong { color: var(--ink); }
.block a { color: var(--teal-dark); }

.restaurant-item { margin-bottom: 18px; }
.restaurant-item h4 { margin: 0 0 4px; font-size: 15px; color: var(--ink); }
.restaurant-item p { margin: 0; }

.contact-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-light);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

/* image placeholder for missing photos */
.img-placeholder {
  width: 100%;
  min-height: 180px;
  border-radius: 8px;
  margin: 14px 0;
  background: repeating-linear-gradient(135deg, var(--teal-tint-light), var(--teal-tint-light) 10px, var(--teal-tint) 10px, var(--teal-tint) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .overlay.show { display: block; }
  .content { margin-left: 0; padding: 80px 20px 80px; }
}

/* ---------- Print ---------- */
@media print {
  .sidebar, .nav-toggle, .overlay, .print-btn { display: none !important; }
  .content { margin-left: 0; max-width: 100%; padding: 0; }
  .section { page-break-inside: avoid; margin-bottom: 28px; }
  .section-banner { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { background: #fff; }
  body::before { display: none !important; }
  .block { border: none; padding: 0 0 12px; box-shadow: none; }
}

/* ---------- Landing ---------- */
.landing {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dark) url('../images/hero-aerial.jpg') center / cover no-repeat;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.landing-hidden {
  opacity: 0;
  pointer-events: none;
}

.landing-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,40,45,0.35) 0%, rgba(10,40,45,0.25) 40%, rgba(10,40,45,0.75) 100%);
}

.landing-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px;
  max-width: 480px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.landing-logo { font-size: 64px; margin-bottom: 16px; display: flex; justify-content: center; }
.landing-logo img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  padding: 0;
  box-sizing: border-box;
  margin: 0 auto;
}
.landing-name { font-size: 32px; font-weight: 700; margin: 0 0 8px; }
.landing-address { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0 0 24px; }
.landing-tagline { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0 0 32px; line-height: 1.5; }

.enter-btn {
  background: #fff;
  color: var(--teal-dark);
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.enter-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

body.landing-active { overflow: hidden; }

