/* Legends Sports Center — dark athletic theme (colors kept from original) */
:root {
  --black: #0c0c0c;
  --dark: #141414;
  --dark2: #1c1c1c;
  --tan: #d7c9a3;
  --orange: #cb5c29;
  --orange-bright: #fcb777;
  --white: #ffffff;
  --gray: #9a9a9a;
  --border: rgba(255,255,255,.09);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .01em; line-height: .95; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,0));
  transition: background .25s;
}
.nav.scrolled { background: rgba(10,10,10,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,.85); transition: color .18s;
}
.nav-links a:hover { color: var(--orange-bright); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; text-decoration: none;
  border-radius: 4px; cursor: pointer; border: none;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn-book {
  background: var(--orange); color: #fff;
  padding: 12px 28px; font-size: 1.15rem;
}
.btn-book:hover { background: #e06a32; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(203,92,41,.45); }
.btn-giant {
  background: var(--orange); color: #fff;
  padding: 20px 52px; font-size: 1.6rem;
  box-shadow: 0 10px 40px rgba(203,92,41,.35);
}
.btn-giant:hover { background: #e06a32; transform: translateY(-3px); box-shadow: 0 16px 48px rgba(203,92,41,.55); }
.btn-outline {
  background: transparent; color: var(--tan);
  border: 2px solid var(--tan);
  padding: 18px 44px; font-size: 1.3rem;
}
.btn-outline:hover { background: var(--tan); color: #111; }

/* Hero */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(12,12,12,.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 900px; }
.hero-kicker {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--tan); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(3.2rem, 9vw, 7rem); margin-bottom: 22px; }
.hero h1 .accent { color: var(--orange-bright); }
.hero p { font-size: 1.25rem; color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Quick actions */
.quick { padding: 0 24px; margin-top: -70px; position: relative; z-index: 5; }
.quick-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 6px;
  padding: 26px 22px; text-decoration: none;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.quick-card:hover { transform: translateY(-5px); border-color: var(--orange); box-shadow: 0 14px 34px rgba(0,0,0,.5); }
.quick-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 6px; }
.quick-card p { font-size: .9rem; color: var(--gray); margin-bottom: 14px; }
.quick-card .go { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .9rem; color: var(--orange-bright); }

/* Sections */
section { padding: 90px 0; }
.section-kicker {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .95rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--orange-bright); margin-bottom: 12px;
}
.section-title { font-size: clamp(2.6rem, 5.5vw, 4.4rem); margin-bottom: 18px; }
.section-sub { color: var(--gray); max-width: 640px; font-size: 1.08rem; }

/* Facility gallery */
.facility { background: var(--dark); border-top: 1px solid var(--border); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 44px; }
.gallery a { position: relative; border-radius: 6px; overflow: hidden; display: block; aspect-ratio: 4/3; }
.gallery a.wide { grid-column: span 2; aspect-ratio: auto; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery a:hover img { transform: scale(1.06); }
.gallery .cap {
  position: absolute; left: 14px; bottom: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem;
  letter-spacing: .06em; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
}

/* Rentals */
.rentals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.rental {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.rental:hover { transform: translateY(-5px); border-color: var(--orange); }
.rental img { height: 200px; object-fit: cover; width: 100%; }
.rental-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.rental-body h3 { font-size: 1.7rem; margin-bottom: 8px; }
.rental-body p { color: var(--gray); font-size: .96rem; flex: 1; margin-bottom: 20px; }
.rental-body .btn-book { align-self: flex-start; }

/* Big CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, #a34620 100%);
  text-align: center; padding: 80px 24px;
}
.cta-band h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 14px; }
.cta-band p { font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: 30px; }
.cta-band .btn-giant { background: #111; }
.cta-band .btn-giant:hover { background: #000; box-shadow: 0 16px 44px rgba(0,0,0,.5); }

/* Footer */
footer { background: #080808; border-top: 1px solid var(--border); padding: 56px 24px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
footer h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; letter-spacing: .14em; text-transform: uppercase; color: var(--tan); margin-bottom: 16px; }
footer a { color: var(--gray); text-decoration: none; transition: color .18s; }
footer a:hover { color: var(--orange-bright); }
.footer-col p, .footer-col li { color: var(--gray); font-size: .95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-logo { height: 54px; width: auto; margin-bottom: 14px; }

/* Page hero (interior pages) */
.page-hero { position: relative; padding: 170px 24px 90px; text-align: center; overflow: hidden; }
.page-hero .hero-bg::after { background: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(12,12,12,.94)); }
.page-hero h1 { position: relative; z-index: 2; font-size: clamp(3rem, 7vw, 5.5rem); }
.page-hero p { position: relative; z-index: 2; color: rgba(255,255,255,.8); max-width: 640px; margin: 16px auto 0; font-size: 1.15rem; }

/* Booking steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.step { background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; padding: 30px 26px; }
.step .num { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: .95rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.about-grid img { border-radius: 8px; }
.about-copy p { color: rgba(255,255,255,.78); margin-bottom: 16px; font-size: 1.05rem; }
.stats { display: flex; gap: 40px; margin-top: 28px; }
.stat .v { font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--orange-bright); line-height: 1; }
.stat .l { font-family: 'Barlow Condensed', sans-serif; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }

/* Mobile */
.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; }
@media (max-width: 900px) {
  .quick-grid, .rentals-grid, .steps { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; position: fixed; inset: 64px 0 auto 0; background: rgba(8,8,8,.98); flex-direction: column; padding: 24px; gap: 18px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .quick { margin-top: -40px; }
  .quick-grid, .rentals-grid, .steps, .gallery { grid-template-columns: 1fr; }
  .gallery a.wide { grid-column: span 1; }
}
