/* ═══════════════════════════════════════════════════════════════
   STATE-DISCIPLINE PAGES STYLES - DARK THEME
   Matches your main site's dark background
   ═══════════════════════════════════════════════════════════════ */

/* Breadcrumbs Bar */
.breadcrumbs-bar {
  background: #0d0e11;
  border-bottom: 1px solid #2a2b2e;
  padding: 12px 0;
}

.breadcrumbs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumbs-container a {
  color: #00a8e8;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs-container a:hover {
  color: #00d9ff;
  text-decoration: underline;
}

.breadcrumbs-container .separator {
  color: #666;
}

.breadcrumbs-container .current {
  color: #ccc;
  font-weight: 600;
}

/* Quick Navigation */
.quick-nav {
  margin-bottom: 24px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00a8e8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

.back-link:hover {
  background: rgba(0, 168, 232, 0.1);
  color: #00d9ff;
}

.back-link-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00a8e8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #00a8e8;
  transition: all 0.2s;
  margin-top: 24px;
}

.back-link-large:hover {
  background: #00a8e8;
  color: #fff;
  transform: translateX(-4px);
}

/* Hero Section */
.state-hero {
  background: linear-gradient(135deg, #1a1b1e 0%, #0d0e11 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #2a2b2e;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.3);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 14px;
  color: #00a8e8;
  font-weight: 600;
  margin-bottom: 24px;
}

.state-abbr {
  background: #00a8e8;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.state-hero h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #999;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(26, 27, 30, 0.8);
  border: 1px solid #2a2b2e;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: #00a8e8;
  transform: translateY(-4px);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #00a8e8;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main Content - DARK THEME */
.state-content {
  background: #0d0e11;
  padding: 60px 20px;
}

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

.content-section {
  background: #1a1b1e;
  border: 1px solid #2a2b2e;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 32px;
}

.content-section h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 32px;
}

.section-intro strong {
  color: #00a8e8;
  font-weight: 600;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #0d0e11;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #2a2b2e;
}

.info-icon {
  font-size: 32px;
  line-height: 1;
}

.info-content h3 {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.info-meta {
  font-size: 13px;
  color: #666;
}

/* Salary Breakdown */
.salary-breakdown {
  background: #0d0e11;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2a2b2e;
}

.salary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #2a2b2e;
  transition: background 0.2s;
}

.salary-row:last-child {
  border-bottom: none;
}

.salary-row:hover {
  background: rgba(0, 168, 232, 0.05);
}

.salary-row.average {
  background: rgba(0, 168, 232, 0.1);
  border-top: 2px solid #00a8e8;
}

.salary-level {
  font-size: 16px;
  color: #ccc;
  font-weight: 500;
}

.salary-amount {
  font-size: 24px;
  font-weight: 700;
  color: #00a8e8;
  font-family: 'Courier New', monospace;
}

.salary-note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(0, 168, 232, 0.05);
  border-left: 3px solid #00a8e8;
  border-radius: 4px;
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}

/* Schools List */
.schools-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.school-card {
  display: flex;
  gap: 24px;
  background: #0d0e11;
  border: 1px solid #2a2b2e;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s;
}

.school-card:hover {
  border-color: #00a8e8;
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 168, 232, 0.2);
}

.school-rank {
  font-size: 32px;
  font-weight: 700;
  color: #00a8e8;
  min-width: 60px;
  text-align: center;
}

.school-info {
  flex: 1;
}

.school-name {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.school-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 14px;
  color: #999;
}

.school-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.school-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 14px;
  color: #ccc;
  font-weight: 600;
}

.school-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00a8e8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.school-link:hover {
  color: #00d9ff;
}

.schools-note {
  margin-top: 32px;
  padding: 24px;
  background: #0d0e11;
  border: 1px solid #2a2b2e;
  border-radius: 8px;
}

.schools-note p {
  color: #ccc;
  font-weight: 600;
  margin-bottom: 12px;
}

.schools-note ul {
  list-style: none;
  padding: 0;
}

.schools-note li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #999;
  line-height: 1.6;
}

.schools-note li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00a8e8;
  font-weight: 700;
}

/* Insights Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.insight-card {
  background: #0d0e11;
  border: 1px solid #2a2b2e;
  border-radius: 8px;
  padding: 24px;
}

.insight-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.insight-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}

/* Compare Buttons */
.compare-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.compare-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0d0e11;
  border: 2px solid #2a2b2e;
  border-radius: 6px;
  color: #00a8e8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.compare-btn:hover {
  background: #00a8e8;
  border-color: #00a8e8;
  color: #fff;
  transform: translateY(-2px);
}

/* No Data Message */
.no-data {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .school-stats {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .state-hero h1 {
    font-size: 28px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .content-section {
    padding: 24px;
  }
  
  .school-card {
    flex-direction: column;
  }
  
  .school-rank {
    min-width: auto;
    text-align: left;
  }
}
