/* PTPElite Styles - Modern, athletic, premium */
:root {
  --red: #e50914;
  --black: #0c0c0c;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #eeeeee;
  --gray-400: #bdbdbd;
  --gray-700: #4a4a4a;
  --max-w: 1100px;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12,12,12,0.9);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.logo { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white); text-decoration: none; font-size: 1.25rem; display: inline-flex; align-items: center; gap: 10px; }
.site-logo { height: 44px; width: auto; display: block; }
.site-logo--small { height: 28px; width: auto; display: block; }
.logo-text { display: inline-block; line-height: 1; }

/* Hero logo (home page) */
.hero-logo { display: block; margin: 0 auto 54px; height: 360px; width: auto; }
@media (max-width: 900px) {
  .hero-logo { height: 276px; margin-bottom: 42px; }
}
@media (max-width: 480px) {
  .hero-logo { height: 192px; margin-bottom: 36px; }
}
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; }
.site-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.site-nav a { color: var(--white); text-decoration: none; font-weight: 500; padding: 10px 12px; border-radius: 8px; }
.site-nav a:hover { background: rgba(255,255,255,0.08); }
.site-nav .cta { background: var(--red); font-weight: 600; }
.site-nav .cta:hover { filter: brightness(1.1); }
.site-nav .active { outline: 2px solid rgba(255,255,255,0.18); }

/* Hero */
.hero { position: relative; min-height: 70vh; display: grid; align-items: center; background:
  linear-gradient(180deg, rgba(229,9,20,0.75) 0%, rgba(12,12,12,0.92) 100%),
  radial-gradient(1200px 600px at 80% 20%, rgba(229,9,20,0.5), transparent),
  #000; color: var(--white); }
.hero-overlay { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 1; text-align: left; }
.hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; margin: 0 0 16px; }
.hero-sub { font-size: clamp(1rem, 2.4vw, 1.25rem); max-width: 800px; margin: 0 0 24px; color: #f0f0f0; }
.hero-cta { display: flex; gap: 12px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 10px; text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

/* Sections */
.section { padding: 64px 0; }
.section-dark { background: #111; color: var(--white); }
.section-highlight { background: var(--gray-100); }
.section-title { font-family: 'Oswald', sans-serif; font-size: 1.75rem; margin: 0 0 18px; }
.lead { font-size: 1.1rem; color: var(--gray-700); }

/* Grids */
.grid { display: grid; gap: 18px; }
.grid-5 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 720px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-5 { grid-template-columns: repeat(5, 1fr); } }

.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px; box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.section-dark .card { background: #161616; border-color: #222; }
.card h3 { font-family: 'Oswald', sans-serif; margin: 0 0 10px; }

/* Lists */
.check-list { list-style: none; padding: 0; margin: 0 0 12px; }
.check-list li { position: relative; padding-left: 26px; margin: 8px 0; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.dot-list { list-style: disc; padding-left: 18px; color: var(--gray-700); }

/* Social */
.social-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .social-grid { grid-template-columns: 1fr 1fr; } }
.social-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px; }
.embed-placeholder { display: grid; place-items: center; text-align: center; background: linear-gradient(135deg, #fafafa, #f3f3f3); border-radius: var(--radius); padding: 32px; }

/* Programs */
.programs-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .programs-grid { grid-template-columns: 1fr 1fr; } }
.program-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px; box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.program-card h2 { font-family: 'Oswald', sans-serif; margin: 0 0 10px; }

/* Page Hero */
.page-hero { background: linear-gradient(180deg, #fafafa, #f7f7f7); padding: 48px 0; border-bottom: 1px solid var(--gray-200); }
.page-hero h1 { font-family: 'Oswald', sans-serif; margin: 0 0 10px; }

/* Pills */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; align-items: center; border: 2px solid var(--black); color: var(--black); padding: 8px 12px; border-radius: 999px; font-weight: 600; }

/* Contact Form */
.contact-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px; box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.form-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: grid; gap: 8px; }
label { font-weight: 600; }
input, select, textarea { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--gray-200); font-size: 1rem; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
.checkbox { display: inline-flex; align-items: center; gap: 8px; margin: 6px 12px 6px 0; }
.form-fieldset { border: 1px dashed var(--gray-200); border-radius: 12px; padding: 12px; margin: 10px 0; }
.error-msg { color: var(--red); min-height: 18px; display: block; }
.form-status { margin-top: 10px; font-weight: 600; }

/* Footer */
.site-footer { background: #0e0e0e; color: var(--white); padding: 40px 0 20px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; gap: 18px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; } }
.foot-nav { list-style: none; padding: 0; margin: 0; }
.foot-nav li { margin: 6px 0; }
.foot-nav a { color: #ddd; text-decoration: none; }
.foot-nav a:hover { color: var(--white); }
.foot-note { color: #bbb; }
.foot-bottom { margin-top: 16px; color: #999; }

/* Responsive Nav */
@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .site-nav { position: fixed; inset: 64px 0 auto 0; background: rgba(12,12,12,0.98); transform: translateY(-120%); transition: transform .25s ease; }
  .site-nav.open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; padding: 16px; gap: 8px; }
}

@media (max-width: 480px) {
  .site-logo { height: 36px; }
  .site-logo--small { height: 20px; }
  .nav-container { min-height: 56px; }
  .site-nav { inset: 56px 0 auto 0; }
}

/* Content enter animation — only applied when JS is present */
.js .content-enter { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.js .content-enter.visible { opacity: 1; transform: translateY(0); }
