:root {
  --bg: #0B0F13;
  --card: #1A212B;
  --text: #E7EAF0;
  --muted: #9AA6B2;
  --accent: #FFD400;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Inter', sans-serif;
}

a { color: var(--accent); }
a:hover { color: #e6c200; }

.navbar {
  background: rgba(10, 14, 18, 0.9);
  backdrop-filter: saturate(140%) blur(6px);
}

.btn-accent {
  background: var(--accent);
  color: #111;
  border: none;
}
.btn-accent:hover { filter: brightness(0.95); }

.hero {
  background: linear-gradient(180deg, rgba(26, 33, 43, .6), rgba(11, 15, 19, .9)), url('https://picsum.photos/1920/900?blur=2');
  background-size: cover;
  background-position: center;
  color: var(--text);
  padding: 5rem 0 4rem;
}

.card-dark {
  background: var(--card);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.06);
}

.price-tag {
  color: #111;
  background: var(--accent);
  display: inline-block;
  padding: .25rem .5rem;
  border-radius: .25rem;
  font-weight: 700;
}

/* Price cards */
.card-dark .list-unstyled li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-dark .list-unstyled li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.card-dark .list-unstyled li:first-child {
  padding-top: 0;
}

.card-dark .list-unstyled li span:first-child {
  flex: 1;
  margin-right: 1rem;
  font-weight: 500;
}

footer {
  background: #0a0f14;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Schedule */
.table-dark th, .table-dark td { 
  vertical-align: top; 
}

.table-dark th:first-child,
.table-dark td:first-child {
  width: 80px;
  min-width: 80px;
}

.table-dark th:not(:first-child),
.table-dark td:not(:first-child) {
  width: calc((100% - 80px) / 7);
}

.table-dark tbody td {
  font-size: 0.875rem;
  line-height: 1.3;
  max-height: 90px;
  overflow: hidden;
}

.table-dark tbody td strong {
  font-size: 0.85rem;
}

.table-dark tbody td small {
  font-size: 0.75rem;
  display: block;
  margin-top: 2px;
}

/* Mobile schedule table */
@media (max-width: 767.98px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-dark thead th {
    font-size: 0.75rem;
    padding: 0.4rem 0.25rem;
  }
  .table-dark tbody td {
    font-size: 0.7rem;
    padding: 0.4rem 0.25rem;
    min-width: 70px;
    max-height: 75px;
  }
  .table-dark th:first-child,
  .table-dark td:first-child {
    position: sticky;
    left: 0;
    background: var(--card);
    z-index: 2;
    font-weight: 600;
    width: 60px;
    min-width: 60px;
  }
  .table-dark tbody td strong {
    font-size: 0.7rem;
  }
  .table-dark tbody td small {
    font-size: 0.65rem;
  }
}

/* Utilities */
.section-title {
  letter-spacing: .02em;
}

/* Shop cards */
.card-dark .card-img-top {
  transition: transform 0.3s ease;
}
.card-dark:hover .card-img-top {
  transform: scale(1.02);
}

/* Coach cards - fix overflow */
#coaches-container .card {
  overflow: hidden;
}
#coaches-container .card-img-top {
  height: 300px;
  object-fit: cover;
  width: 100%;
}
#coaches-container .card-body {
  overflow: visible;
}
#coaches-container .coach-spec {
  color: var(--muted);
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 2rem !important; line-height: 1.2; }
  .hero .lead { font-size: 1rem; }
  .btn-lg { font-size: 1rem; padding: 0.5rem 1.25rem; }
  h1.h2 { font-size: 1.75rem !important; }
  .card-dark .card-body { padding: 1rem !important; }
  .card-dark .card-img-top { height: 200px !important; }
  #coaches-container .card-img-top { height: 250px !important; }
  .d-flex.gap-2 { gap: 0.5rem !important; }
  .btn-sm { font-size: 0.8rem; padding: 0.35rem 0.65rem; }
}

@media (max-width: 575.98px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.75rem !important; }
  .hero .lead { font-size: 0.9rem; }
  .btn-lg { font-size: 0.95rem; padding: 0.45rem 1rem; }
  h1.h2 { font-size: 1.5rem !important; }
  .navbar-brand { font-size: 1.1rem; }
  .card-dark .card-img-top { height: 180px !important; }
  #coaches-container .card-img-top { height: 220px !important; }
  .btn-sm { font-size: 0.75rem; padding: 0.3rem 0.6rem; }
}


