/* oracul.css — replaces Bootstrap; cookie-free, no external resources */

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

/* ── Grid ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.row {
  display: block;
}

.col-sm-12 {
  display: block;
}

/* ── Responsive images ────────────────────────── */
img { max-width: 100%; height: auto; }

/* ── Utilities ────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.m-0  { margin: 0 !important; }
.p-0  { padding: 0 !important; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.w-100 { width: 100%; }

/* ── Main layout ──────────────────────────────── */
html, body { margin: 0; padding: 0; min-height: 100dvh; }

.main-container {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.image-bg {
  flex: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.image-bg > .container {
  flex: 1;
}

/* ── section-panel (kept for compat with another.css) */
.section-panel {
  padding: 1.4rem 1.25rem;
  margin: 0.5rem;
  background-color: #fff2;
  border: 1px solid #fff2;
  border-radius: 0.6rem;
  box-shadow: 0.2rem 0.2rem 1.5rem #0006;
  text-shadow: 1px 1px 3px #000c;
}

/* ── Blocked / 404 message ────────────────────── */
.oracul-message {
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* ── Mobile adjustments ───────────────────────── */
@media (max-width: 768px) {
  .container { padding-left: 0.25rem; padding-right: 0.25rem; }
  .section-panel { margin: 0.25rem; }
}
