/* On Broadway — global styles */

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: 'League Spartan', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

/* Links */
a { color: #FFD300; text-decoration: none; }
a:hover { text-shadow: 0 0 8px #FFD300; }

/* NAV */
header { position: sticky; top: 0; z-index: 1000; }
header nav {
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
header nav ul {
  list-style: none;
  margin: 0; padding: 10px 16px;
  display: flex; justify-content: center; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
header nav ul li a {
  color: #fff; opacity: .9;
  transition: color .25s ease, text-shadow .25s ease, opacity .25s ease;
}
header nav ul li a:hover { color: #FFD300; opacity: 1; }

/* Layout */
main { max-width: 1100px; margin: 18px auto 32px; padding: 0 16px; }
article { background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 18px; }

/* Hero */
.hero {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 12px auto 18px;
  border: 1px solid rgba(255,255,255,.12);
  object-fit: cover;
}

/* Headings & text */
h1 { font-size: 2.2rem; margin: 0 0 10px; line-height: 1.2; }
h2 { font-size: 1.35rem; margin: 16px 0 6px; }
p  { margin: 10px 0; font-size: 1.05rem; }

/* Lists (used for hotel bullets) */
ul { margin: 12px 0 0 22px; padding: 0; }
ul > li { margin: 18px 0; }
ul > li h2 { margin: 0 0 6px; }
ul > li p { margin: 6px 0 0; }

/* Footer */
footer {
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  padding: 16px 12px;
  font-size: .95rem;
  opacity: .9;
}
footer p { margin: 6px 0; }

/* Responsive */
@media (max-width: 640px){
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.2rem; }
  p  { font-size: 1rem; }
}
