/* FlyLore.org custom styles */

.hero { text-align: center; padding: 2rem 1rem 1rem; }
.hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.hero p { font-size: 1.15rem; color: var(--md-default-fg-color--light); max-width: 600px; margin: 0 auto; }

.stat-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 1.5rem auto 2rem; max-width: 900px; }
.stat-card { flex: 0 1 calc(33.333% - 0.67rem); min-width: 240px; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.25rem 1rem; border-left: 4px solid var(--md-primary-fg-color); border-radius: 8px; background: var(--md-code-bg-color); text-decoration: none; color: var(--md-default-fg-color); transition: box-shadow 0.15s, transform 0.15s; }
.stat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }
.stat-card__number { font-size: 1.5rem; font-weight: 700; line-height: 1.1; white-space: nowrap; }
.stat-card__label { font-size: 0.9rem; color: var(--md-default-fg-color--light); margin-top: 0.25rem; }

@media (max-width: 768px) { .stat-card { flex: 0 1 calc(50% - 0.5rem); } .hero h1 { font-size: 2rem; } }
@media (max-width: 480px) { .stat-card { flex: 0 1 100%; } }


[data-md-color-scheme="default"] .md-header {
  background: #E4E4DE;
}

[data-md-color-scheme="default"] .md-tabs {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

[data-md-color-scheme="default"] .md-footer {
  background: #E4E4DE;
}

.md-header__title {
  cursor: pointer;
}

.md-header__title a {
  color: inherit;
  text-decoration: none;
}

.md-header__title .md-header__topic:first-child {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.md-header__title .md-header__topic:last-child {
  display: none;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.section-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 8px;
  text-decoration: none;
  color: var(--md-default-fg-color);
  transition: box-shadow 0.15s, border-color 0.15s;
  min-height: 100px;
}

.section-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  border-color: var(--md-primary-fg-color);
}

.section-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.section-card__subtitle {
  font-size: 0.95rem;
  color: var(--md-default-fg-color--light);
  line-height: 1.4;
}

@media (max-width: 480px) {
  .section-grid { grid-template-columns: 1fr; }
  .section-card { min-height: auto; padding: 1.25rem 1rem; }
}
