/* Shared styles for all House Manual & Local Guide pages */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Gothic A1', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
}

/* ── Nav ── */
.page-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 0; }
.nav-links a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  letter-spacing: .5px;
  transition: color .2s;
}
.nav-links a:hover { color: #ce709d; }
.nav-links a.active { color: #ce709d; }

/* ── Page header ── */
.page-header {
  text-align: center;
  padding: 60px 20px 40px;
  border-bottom: 1px solid #f0e0e8;
}
.page-header .script {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  color: #b07090;
  display: block;
  margin-bottom: 4px;
}
.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 900;
  color: #1e3d2c;
  margin: 0;
  line-height: 1;
  letter-spacing: -1px;
}
.page-header .intro {
  max-width: 640px;
  margin: 20px auto 0;
  color: #666;
  font-size: 17px;
}

/* ── Page content wrapper ── */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 5vw 80px;
}

/* ── Section labels ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ce709d;
  margin-bottom: 10px;
  display: block;
}

/* ── Section headings ── */
.page-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1e3d2c;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0e0e8;
}
.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e3d2c;
  margin: 28px 0 8px;
}

/* ── Two-column grid ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 640px) {
  .two-col { grid-template-columns: 1fr; gap: 10px; }
}

/* ── Info card (WiFi / address box) ── */
.info-card {
  background: #fdf0f5;
  border: 1px solid #f0d0e0;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 30px 0;
}
.info-card .two-col { gap: 20px; }
.info-card h3 { margin-top: 0; }

/* ── Lists ── */
ul { padding-left: 20px; margin: 8px 0; }
ul li { margin-bottom: 6px; }

/* ── Bold emphasis ── */
strong { color: #1e3d2c; }

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid #f0e0e8;
  margin: 40px 0;
}

/* ── Footer ── */
.page-footer {
  background: #1e3d2c;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
}
.page-footer a { color: #ce709d; text-decoration: none; }

/* ── Pink accent bar ── */
.pink-bar {
  height: 8px;
  background: #ce709d;
  width: 100%;
}
