/* Minimal, modern, responsive styles */
:root {
  --bg: #0b0c0f;
  --panel: #111319;
  --muted: #9aa3b2;
  --text: #e6ebf2;
  --brand: #2dd4bf;
  --accent: #7c3aed;
  --ring: #2dd4bf55;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(
      1000px 600px at 20% -10%,
      #1b1f2a 20%,
      transparent 60%
    ),
    radial-gradient(1000px 600px at 80% 10%, #171a23 20%, transparent 60%),
    var(--bg);
  line-height: 1.5;
}

.site-header {
  padding: 24px 16px 8px;
  text-align: center;
}
.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
}
.logo-image {
  max-width: 100%;
  height: auto;
  width: 300px; /* adjust as needed */
  object-fit: contain;
}
.title {
  margin: 12px 0 0;
  font-size: clamp(18px, 3.6vw, 28px);
  font-weight: 700;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
}

.controls {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 12px;
}

.filters {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.select-wrap,
.input-wrap,
.toggle-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}
select,
input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #2a2e3a;
  background: #0f1320;
  color: var(--text);
  outline: none;
  box-shadow: 0 0 0 0 var(--ring);
}
select:focus,
input[type="text"]:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 6px var(--ring);
}
.toggle-wrap input {
  width: 18px;
  height: 18px;
}

.results {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.card {
  background: linear-gradient(180deg, #101522, #0c101b);
  border: 1px solid #1f2432;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.card h3 {
  margin: 0 0 8px;
  font-size: clamp(16px, 2.2vw, 22px);
}
.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: #0e1424;
  border: 1px solid #252b3a;
}
.detail {
  margin: 10px 0;
  white-space: pre-wrap;
}
.times {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
.time-col {
  background: #0d1322;
  border: 1px dashed #273044;
  border-radius: 14px;
  padding: 10px;
}
.time-col h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #b9c1d1;
}
.time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  padding: 6px 10px;
  border-radius: 10px;
  background: #0e1526;
  border: 1px solid #2a3347;
  font-size: 13px;
}

.site-footer {
  position: sticky;
  top: 100%;
  padding: 14px 16px;
  margin-top: 16px;
  border-top: 1px solid #1f2432;
  background: rgba(10, 12, 16, 0.5);
  backdrop-filter: blur(4px);
  font-size: 13px;
  color: var(--muted);

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.site-footer .left {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer .right {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.site-footer .right a {
  color: var(--muted);
  text-decoration: none;
}
.site-footer .right a:hover {
  color: var(--text);
  text-decoration: underline;
}

.muted {
  opacity: 0.85;
}

/* Responsive */
@media (min-width: 700px) {
  .filters {
    grid-template-columns: 2fr 2fr auto;
  }
  .results {
    grid-template-columns: 1fr 1fr;
  }
  .times {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .results {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Small screens: center footer text */
@media (max-width: 400px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer .left,
  .site-footer .right {
    justify-content: center;
  }
}
