/* Shared styles for standalone legal pages (Terms of Service / Privacy Policy).
   Mirrors booking.html's standalone-page pattern so these pages match the
   site's look without depending on the main layout CSS. */

.legal-page {
  min-height: 100vh;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #0d0d0d;
}

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

.legal-nav__logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.legal-nav__name {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8e8e8;
  line-height: 1.2;
}

.legal-nav__name span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(232,232,232,0.5);
  text-transform: uppercase;
}

.legal-nav__back {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,232,232,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-nav__back:hover {
  color: #e8e8e8;
}

.legal-content {
  flex: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 24px 80px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(232,232,232,0.8);
}

.legal-content__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0a500;
  margin-bottom: 14px;
}

.legal-content h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #e8e8e8;
  line-height: 1.1;
  margin-bottom: 8px;
}

.legal-content__updated {
  font-size: 0.85rem;
  color: rgba(232,232,232,0.4);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #e8e8e8;
  margin: 40px 0 12px;
  letter-spacing: 0.01em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 1.3em;
}

.legal-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content a {
  color: #f0a500;
  text-decoration: underline;
  text-decoration-color: rgba(240,165,0,0.4);
}

.legal-content a:hover {
  text-decoration-color: #f0a500;
}

.legal-content strong {
  color: #e8e8e8;
}

.legal-footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(232,232,232,0.3);
  letter-spacing: 0.06em;
}

.legal-footer a {
  color: rgba(232,232,232,0.4);
  text-decoration: none;
}

.legal-footer a:hover {
  color: #e8e8e8;
}
