/* ─── BULLDOG GYM · SHARED STYLES ─── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --black: #080808;
  --dark: #111111;
  --card: #171717;
  --red: #C41E1E;
  --red-hot: #E02020;
  --orange: #E85D04;
  --white: #EDEDED;
  --grey: #999999;
  --border: #222222;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,30,30,0.2);
  transition: all 0.3s;
}
nav.scrolled { height: 60px; border-bottom-color: rgba(196,30,30,0.5); }
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 24px;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 24px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-hot) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: #080808;
  flex-direction: column;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  /* use visibility/opacity so CSS transition works on all mobile browsers */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
  /* always display:flex so transition fires */
  display: flex;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s;
}
.mm-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px; flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}
.mm-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--white); text-decoration: none;
}
.mm-logo span { color: var(--red); }
.mobile-close {
  background: none; border: none; color: var(--white);
  font-size: 28px; cursor: pointer; padding: 8px; line-height: 1;
  position: static;
}
.mm-links {
  display: flex; flex-direction: column;
  padding: 8px 0; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mm-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 28px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); text-decoration: none;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mm-links a:last-child { border-bottom: none; }
.mm-links a:active { background: rgba(196,30,30,0.12); color: var(--red); }
.mm-links a::after { content: 'chevron'; font-size: 0; width: 20px; height: 20px; border-top: 2px solid var(--border); border-right: 2px solid var(--border); transform: rotate(45deg); display: inline-block; flex-shrink: 0; }
.mm-book {
  padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}
.mm-book-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 4px;
}
.mm-book-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; text-decoration: none;
  border: 1px solid var(--border); background: var(--card);
  transition: background 0.15s, border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mm-book-btn:active { background: rgba(196,30,30,0.15); border-color: var(--red); }
.mm-book-btn.primary {
  background: var(--red); border-color: var(--red);
}
.mm-book-btn.primary:active { background: var(--red-hot); }
.mm-book-btn-text { display: flex; flex-direction: column; gap: 2px; }
.mm-book-btn-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--white);
}
.mm-book-btn-sub { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.mm-book-btn.primary .mm-book-btn-sub { color: rgba(255,255,255,0.7); }
.mm-book-icon { font-size: 20px; opacity: 0.6; }
.mm-contact {
  padding: 24px 28px; display: flex; flex-direction: column; gap: 14px; flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}
.mm-contact-row { display: flex; align-items: center; gap: 14px; }
.mm-contact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(196,30,30,0.1); border: 1px solid rgba(196,30,30,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.mm-contact-label { font-size: 11px; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.mm-contact-value {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--white); text-decoration: none;
}
.mm-bottom-bar {
  padding: 16px 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.mm-bottom-bar p { font-size: 11px; color: rgba(255,255,255,0.2); }
.mm-social { display: flex; gap: 10px; }
.mm-social a {
  width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); text-decoration: none; font-size: 14px;
  -webkit-tap-highlight-color: transparent;
}
.mm-social a:active { background: var(--red); color: var(--white); border-color: var(--red); }
@media (max-width: 768px) {
  .nav-book { display: none; }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative; padding: 160px 0 100px;
  background: var(--black); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0505 60%, #0A0A0A 100%);
}
.page-hero-slash {
  position: absolute; top: -20%; right: 8%;
  width: 2px; height: 140%;
  background: linear-gradient(180deg, transparent, var(--red) 40%, var(--orange) 70%, transparent);
  transform: rotate(15deg); opacity: 0.5;
}
.page-hero-slash::after {
  content: ''; position: absolute; top: 0; left: 24px;
  width: 1px; height: 100%; background: inherit; opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.page-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(64px, 10vw, 120px);
  line-height: 0.92; text-transform: uppercase; letter-spacing: -0.01em;
}
.page-title em { font-style: italic; color: var(--red); }
.page-subtitle {
  margin-top: 24px; font-size: 17px; color: var(--grey);
  line-height: 1.65; max-width: 520px;
}
.page-subtitle strong { color: var(--white); }

/* ─── SECTION SHARED ─── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); flex-shrink: 0; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 24px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-hot); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--red); background: rgba(196,30,30,0.1); }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: opacity 0.2s, transform 0.15s;
}
.btn-white:hover { opacity: 0.9; transform: translateY(-2px); }

/* ─── PHOTO PLACEHOLDER ─── */
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; background: linear-gradient(135deg, var(--card), #1f0a0a);
  color: var(--grey); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.photo-placeholder svg { opacity: 0.25; }

/* ─── TICKER ─── */
.ticker { background: var(--red); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 25s linear infinite; }
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0 40px; color: rgba(255,255,255,0.9);
}
.ticker-item::before { content: '✦'; margin-right: 40px; opacity: 0.6; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── FOOTER ─── */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 52px;
}
.footer-brand .nav-logo { display: block; font-size: 28px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--grey); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); text-decoration: none; font-size: 16px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--grey); }
.footer-bottom span { color: var(--red); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-inner { padding: 0 24px; }
  .page-hero-content { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 130px 0 72px; }
}
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ─── BOOK NOW DROPDOWN ─── */
.nav-book {
  position: relative;
}
.nav-book-btn {
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 24px; cursor: pointer; border: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s; display: flex; align-items: center; gap: 8px;
}
.nav-book-btn:hover { background: var(--red-hot); }
.nav-book-btn::after { content: '▾'; font-size: 11px; }
.nav-book-dropdown {
  display: none; position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--dark); border: 1px solid var(--border);
  min-width: 220px; z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.nav-book:hover .nav-book-dropdown,
.nav-book:focus-within .nav-book-dropdown { display: block; }
.nav-book-dropdown a {
  display: flex; flex-direction: column;
  padding: 16px 20px; text-decoration: none;
  border-bottom: 1px solid var(--border); transition: background 0.2s;
}
.nav-book-dropdown a:last-child { border-bottom: none; }
.nav-book-dropdown a:hover { background: rgba(196,30,30,0.1); }
.nav-book-dropdown a span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white);
}
.nav-book-dropdown a small { font-size: 12px; color: var(--grey); margin-top: 2px; }

/* ─── LOGO IMAGE ─── */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* slight brightness boost so it pops on dark bg */
  filter: brightness(1.1) contrast(1.05);
}
.nav-logo { display: flex; align-items: center; }
