/* Build: 2026-09-03-r1 */
/* The Martial Arts Training Center — Deer Park, NY
   Design tokens sourced from Elementor export (Default Kit + custom CSS), not estimated. */

:root {
  /* Backgrounds */
  --bg-black: #0E0E0E;
  --bg-dark: #111111;
  --bg-panel: #1A1A1A;
  --bg-panel-alt: #161616;
  --bg-panel-2: #1e1e1e;
  --panel-card-bg: #202020;
  --border: #2A2A2A;

  /* Brand red */
  --red: #C41E1E;
  --red-hover: #E02020;
  --red-dark: #9A080A;

  /* Hero gradient (used on every interior page banner) */
  --hero-gradient: linear-gradient(to right, #111111 0%, #1a0000 40%, #6b0000 70%, #8b1a1a 100%);

  /* Text */
  --text-cream: #E8E4DC;
  --text-white: #FFFFFF;
  --text-muted: #888888;
  --text-mid: #BBBBBB;
  --text-dim: #7A7A7A;

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', 'Lato', system-ui, -apple-system, sans-serif;

  --header-height: 116px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
.hp-field { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden; }

body {
  margin: 0;
  background: var(--bg-black);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-white);
}

p { margin: 0 0 16px; color: var(--text-mid); }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--red);
}
.btn-outline:hover { background: var(--red); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-black);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo img { height: 80px; width: auto; }
.site-logo { display: flex; align-items: center; gap: 10px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav a {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 2px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.main-nav a:hover,
.main-nav li.current > a {
  color: var(--red-dark);
}
.main-nav li.current > a {
  border-bottom-color: var(--red);
}
.main-nav .has-dropdown > a::after {
  content: '▾';
  font-size: 10px;
  margin-left: 5px;
}
.main-nav .dropdown {
  list-style: none;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 6px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 50;
}
.main-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .dropdown a {
  display: block;
  padding: 10px 18px;
  border-bottom: none;
  font-size: 14px;
  letter-spacing: .5px;
}
.main-nav .dropdown a:hover { background: var(--red-dark); color: #fff; }

.header-cta .btn { padding: 12px 22px; font-size: 13px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* ============ PAGE HERO BANNER ============ */
.page-hero {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: flex-end;
  background: var(--hero-gradient);
  padding: 0 40px 32px;
}
.page-hero .eyebrow { color: var(--red); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.88;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 2px 4px 24px rgba(0,0,0,0.4);
}

/* ============ TRUST STRIP (get-started) ============ */
.trust-strip {
  display: flex;
  width: 100%;
  border: 1px solid var(--bg-panel-2);
  overflow: hidden;
  margin: 20px 0;
}
.trust-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 16px 12px;
  text-align: center;
}
.trust-badge + .trust-badge { border-left: 1px solid var(--bg-panel-2); }
.trust-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.trust-sub { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-black);
  border-top: 1px solid var(--red-dark);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
}
.footer-contact p { color: var(--text-cream); margin: 0 0 4px; }
.footer-contact a { color: var(--red-dark); }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-panel);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s;
}
.footer-social a:hover { background: var(--red); }
.footer-nav { text-align: center; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 14px; }
.footer-nav a { color: var(--text-mid); font-size: 15px; }
.footer-nav li.current a {
  color: var(--red-dark);
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
}
.footer-logo { display: flex; justify-content: flex-end; align-items: center; }
.footer-logo img { height: 64px; width: auto; }
.footer-bottom {
  background: var(--text-mid);
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  color: #222;
}
.footer-bottom p { color: #222; }
.footer-legal {
  margin: 6px 0 0;
  font-size: 12px;
}
.footer-legal a {
  color: #222;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal a:hover { color: var(--red-dark); }
.footer-legal span { margin: 0 8px; color: #555; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { justify-content: center; margin-top: 10px; }
  .footer-social { justify-content: center; }
}

/* ============ SCROLL TO TOP ============ */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--red); }

/* ============ MOBILE NAV ============ */
@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-black);
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    border-top: 1px solid var(--border);
  }
  .main-nav.open { max-height: 600px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .main-nav > ul > li { border-bottom: 1px solid var(--border); }
  .main-nav a { display: block; padding: 16px 24px; }
  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    background: var(--bg-panel-alt);
  }
  .main-nav .has-dropdown.open .dropdown { display: block; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 768px) {
  .page-hero { height: 200px; padding: 0 24px 24px; }
  .page-hero h1 { font-size: 58px; }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: clamp(32px, 9vw, 58px); }
}

@media (max-width: 400px) {
  .trust-strip { flex-direction: column; }
  .trust-badge + .trust-badge { border-left: none; border-top: 1px solid var(--bg-panel-2); }
}
