@charset "utf-8";

/* ============================================================
   BLINDSIDEU — Main Stylesheet
   Color palette: dark backgrounds + orange accent (#F47C20)
   ============================================================ */

:root {
  --accent:      #ba0e12;
  --accent-dark: #890b0e;
  --dark-1:      #0d0d0d;
  --dark-2:      #161616;
  --dark-3:      #1e1e1e;
  --dark-card:   #202020;
  --text-muted:  rgba(255,255,255,.5);
  --border:      rgba(255,255,255,.08);
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
}

/* ─── Reset / Base ─────────────────────────────────────── */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  background-color: var(--dark-1);
  color: #ccc;
  margin: 0;
  padding-top: 72px; /* navbar height */
}

a { color: var(--accent); transition: color .25s; text-decoration: none; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: #fff; margin: 0; }

p { line-height: 1.7; }

img { max-width: 100%; display: block; }

/* ─── Utility ───────────────────────────────────────────── */

.text-accent  { color: var(--accent) !important; }
.bg-accent    { background-color: var(--accent) !important; }
.bg-dark-1    { background-color: var(--dark-1); }
.bg-dark-2    { background-color: var(--dark-2); }

.section-pad  { padding: 90px 0; }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.section-title-lg {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
}

.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Buttons ────────────────────────────────────────────── */

.btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 4px;
  transition: background .25s, border-color .25s, color .25s;
  display: inline-block;
}

.btn-accent {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-outline-accent {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: #111;
}

/* ─── Navbar ─────────────────────────────────────────────── */

#mainNav {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  transition: background .3s, padding .3s;
  border-bottom: 1px solid var(--border);
}

#mainNav.scrolled {
  background: rgba(5,5,5,.98);
  padding: 10px 0;
}

.nav-logo { height: 70px; width: auto; }

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8) !important;
  padding: 6px 14px;
  transition: color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--accent) !important; }

.nav-cta {
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .08em;
  padding: 8px 24px;
}

/* ─── Hero ───────────────────────────────────────────────── */

#hero {
  position: relative;
  min-height: calc(100vh - 72px);
  background: url('../images/football-backgrnd.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.82) 50%, rgba(0,0,0,.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-top: 1.2rem;
  line-height: 1.65;
}

.hero-btns .btn { min-width: 160px; }

/* ─── Programs ───────────────────────────────────────────── */

.program-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.program-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.program-card:hover .program-img { transform: scale(1.06); }

.program-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 40%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.program-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: .6;
  line-height: 1;
}

.program-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 4px 0;
}

.program-info p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.program-card:hover .program-info p { max-height: 100px; }

/* ─── About ──────────────────────────────────────────────── */

.about-img-wrap { position: relative; display: inline-block; }

.about-img {
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
  max-height: 480px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(244,124,32,.4);
}

.badge-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: .05em;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  padding: 6px 0;
  font-size: .95rem;
}
.about-list li i { margin-right: 10px; }

/* ─── Schedule ───────────────────────────────────────────── */

.schedule-tabs { gap: 4px; flex-wrap: wrap; }

.schedule-tab {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  border: 2px solid var(--border);
  background: transparent;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .2s;
}
.schedule-tab:hover,
.schedule-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.schedule-table {
  border-collapse: collapse;
  font-size: .9rem;
}
.schedule-table th {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.schedule-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  color: #ccc;
}
.schedule-table tbody tr { background: var(--dark-card); }
.schedule-table tbody tr:nth-child(odd) { background: var(--dark-3); }
.schedule-table tbody tr:hover { background: rgba(244,124,32,.1); }
.schedule-table td:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
}

/* ─── Stats / Skill Bars ─────────────────────────────────── */

.stats-section {
  background: url('../images/hp-bckgnd.jpg') center/cover no-repeat;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
}
.stats-section .container { position: relative; }

.stats-img { border-radius: 6px; object-fit: cover; max-height: 420px; width: 100%; }

.skill-progress {
  height: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
}
.skill-progress .progress-bar {
  border-radius: 4px;
  transition: width 1.2s ease;
}

/* ─── Pricing ────────────────────────────────────────────── */

.price-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 30px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}

.price-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(244,124,32,.2);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
}

.price-header h4 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.price-header p { font-size: .88rem; color: var(--text-muted); margin: 0; }

.price-amount {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin: 22px 0;
  line-height: 1;
}
.price-dollar { font-size: 1.6rem; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--accent); }
.price-period { font-size: 1rem; color: var(--text-muted); }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}
.price-features li {
  padding: 7px 0;
  font-size: .92rem;
  color: #ccc;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border: none; }
.price-features li i { color: var(--accent); margin-right: 10px; }

/* ─── Trainers ───────────────────────────────────────────── */

.trainer-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 20px 24px;
  transition: transform .3s, box-shadow .3s;
}
.trainer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}

.trainer-img-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
}
.trainer-img { width: 100%; height: 100%; object-fit: cover; }

.trainer-name {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
}
.trainer-role {
  font-size: .82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trainer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin: 0 3px;
  transition: all .2s;
}
.trainer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── Instagram Banner ───────────────────────────────────── */

.insta-banner {
  background: var(--accent);
  padding: 18px 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
}
.insta-banner a { color: #fff; }
.insta-banner a:hover { opacity: .8; }

/* ─── Testimonials ───────────────────────────────────────── */

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  font-style: italic;
  line-height: 1.75;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.carousel-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 2px solid var(--border);
  background: transparent;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.carousel-ctrl-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.stat-item { display: inline-block; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

/* ─── CTA Section ────────────────────────────────────────── */

.cta-section {
  position: relative;
  padding: 120px 0;
  background: url('../images/hp-bckgnd.png') center/cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}
.cta-section .container { position: relative; }

/* ─── Footer ─────────────────────────────────────────────── */

#footer { background: #0a0a0a; }

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--border);
}

.footer-logo { height: 70px; width: auto; }

#footer p { color: rgba(255,255,255,.5); font-size: .9rem; }

.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
}
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.5); }
.footer-contact a:hover { color: var(--accent); }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  margin-right: 8px;
  transition: all .2s;
}
.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-bottom {
  padding: 22px 0;
  font-size: .82rem;
}
.footer-bottom p { color: rgba(255,255,255,.3); margin: 0; }

/* ─── Subpage Hero ───────────────────────────────────────── */

.subpage-hero {
  padding: 120px 0 80px;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.subpage-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  font-weight: 900;
}
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ─── Contact Form ───────────────────────────────────────── */

.contact-input {
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 4px;
  padding: 14px 18px;
  font-size: .95rem;
}
.contact-input:focus {
  background: var(--dark-3);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(244,124,32,.15);
}
.contact-input::placeholder { color: rgba(255,255,255,.35); }

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 991px) {
  body { padding-top: 64px; }
  .section-pad { padding: 65px 0; }
  .about-badge { display: none; }
  .navbar-nav { padding: 16px 0; }
  .navbar-nav .nav-link { padding: 8px 0; }
  .nav-cta { display: inline-block; margin-top: 8px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .program-img { height: 220px; }
  .hero-content h1 { font-size: clamp(2.8rem, 11vw, 4rem); }
  .hero-btns .btn { display: block; width: 100%; margin-bottom: 12px; }
  .hero-btns .btn.me-3 { margin-right: 0 !important; }
  .price-card { padding: 28px 22px; }
  .cta-section { padding: 80px 0; }
  .footer-bottom { text-align: center; }
}
