/* ============================================================
   Ace Brooks Club — shared stylesheet
   Palette: black bg / white text, matching acebrooks.ca
   ============================================================ */

:root {
  --black:   #000;
  --white:   #fff;
  --grey:    rgba(255,255,255,0.55);
  --border:  rgba(255,255,255,0.08);
  --page-width: 1200px;
  --font: 'Montserrat', sans-serif;
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1.5rem;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────────────────────── */
.club-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.club-nav__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.club-nav__logo img {
  height: 3.2rem;
  width: auto;
}

.club-nav__links {
  list-style: none;
  display: flex;
  gap: 3.2rem;
  align-items: center;
}

.club-nav__link {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color .2s;
}

.club-nav__link:hover,
.club-nav__link--active { color: var(--white); }

.club-nav__link--booking {
  background: var(--white);
  color: var(--black);
  padding: .7rem 1.8rem;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.club-nav__link--booking:hover { background: rgba(255,255,255,.85); color: var(--black); }

.club-nav__right { display: flex; align-items: center; gap: 1.6rem; }

.club-nav__cart {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--grey);
  transition: color .2s;
}
.club-nav__cart:hover { color: var(--white); }

/* hamburger */
.club-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.club-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: opacity .2s;
}

/* mobile menu */
.club-nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2rem;
  gap: 2rem;
}
.club-nav__mobile.is-open { display: flex; }
.club-nav__mobile-link {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color .2s;
}
.club-nav__mobile-link:hover { color: var(--white); }

@media (max-width: 749px) {
  .club-nav__links { display: none; }
  .club-nav__cart  { display: none; }
  .club-nav__hamburger { display: flex; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 72rem;
}

.hero__eyebrow {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.6rem;
}

.hero__eyebrow--link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}
.hero__eyebrow--link:hover { color: var(--white); }

.hero__title {
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 1.6rem;
}

.hero__subtitle {
  font-size: 1.8rem;
  color: var(--grey);
  margin-bottom: 3.2rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--white);
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1.4rem 3.2rem;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
}
.hero__cta:hover { background: rgba(255,255,255,.88); transform: translateY(-1px); }

/* ── SECTION SHARED ──────────────────────────────────────── */
.section {
  padding: 7.2rem 2rem;
  max-width: var(--page-width);
  margin: 0 auto;
  width: 100%;
}

.section--full {
  max-width: none;
  background: #0a0a0a;
}
.section--full .section__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 7.2rem 2rem;
}

.section__label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.2rem;
}

.section__title {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 1.6rem;
}

.section__body {
  font-size: 1.6rem;
  color: var(--grey);
  max-width: 60rem;
  line-height: 1.7;
}

/* ── PROMO CARDS ─────────────────────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.promo-card {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.promo-card__badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  padding: .3rem .8rem;
  border-radius: 2px;
  width: fit-content;
}

.promo-card__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.promo-card__desc {
  font-size: 1.4rem;
  color: var(--grey);
  flex: 1;
}

.promo-card__link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: .2rem;
  width: fit-content;
  transition: border-color .2s;
}
.promo-card__link:hover { border-color: var(--white); }

/* ── LOCATION ────────────────────────────────────────────── */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: center;
}

.location-block__addr {
  font-size: 1.6rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 2.4rem;
}

.location-block__map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-block__map iframe {
  display: block;
  width: 100%;
  height: 360px;
}

@media (max-width: 749px) {
  .location-block {
    grid-template-columns: 1fr;
  }
}

/* ── SHOP BANNER ─────────────────────────────────────────── */
.shop-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4rem;
  margin-top: 4rem;
}

.shop-banner__text { flex: 1; min-width: 24rem; }
.shop-banner__title { font-size: 2.4rem; font-weight: 700; margin-bottom: .8rem; }
.shop-banner__desc { font-size: 1.5rem; color: var(--grey); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1.2rem 2.4rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn--primary { background: var(--white); color: var(--black); border: none; }
.btn--primary:hover { background: rgba(255,255,255,.88); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn--outline:hover { border-color: var(--white); }

/* ── EVENTS ──────────────────────────────────────────────── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 4rem;
}

.event-card {
  display: grid;
  grid-template-columns: 10rem 1fr auto;
  align-items: center;
  gap: 2.4rem;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.4rem;
}

.event-card__date {
  text-align: center;
  line-height: 1;
}
.event-card__month {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey);
}
.event-card__day {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.event-card__info {}
.event-card__title { font-size: 1.8rem; font-weight: 700; margin-bottom: .4rem; }
.event-card__meta  { font-size: 1.3rem; color: var(--grey); }

.events-empty {
  text-align: center;
  padding: 8rem 2rem;
  color: var(--grey);
  font-size: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-top: 4rem;
}

/* ── COMING SOON ─────────────────────────────────────────── */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12rem 2rem;
  gap: 2rem;
}
.coming-soon__title { font-size: 4rem; font-weight: 700; }
.coming-soon__sub   { font-size: 1.6rem; color: var(--grey); max-width: 48rem; }
.coming-soon__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.coming-soon__social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s ease;
}
.coming-soon__social-link:hover { color: var(--white); }

/* ── FOOTER ──────────────────────────────────────────────── */
.club-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.4rem 2rem;
}

.club-footer__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.club-footer__copy {
  font-size: 1.2rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.35);
}
.club-footer__copy a { color: rgba(255,255,255,.55); transition: color .2s; }
.club-footer__copy a:hover { color: var(--white); }

.club-footer__links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.club-footer__links a {
  font-size: 1.1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .2s;
}
.club-footer__links a:hover { color: rgba(255,255,255,.65); }

/* ── UTILS ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

@media (max-width: 600px) {
  .event-card { grid-template-columns: 7rem 1fr; }
  .event-card > .btn { display: none; }
  .shop-banner { flex-direction: column; }
}
