/* ======================================================
   FRAMEWORK.CSS — Core foundation (Bootstrap-Lite)
   ====================================================== */

/* ------------------------------
   CSS RESET (based on Normalize + modern reset)
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
}

/* Remove built-in spacing */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

/* Images and media */
img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  color: #0d6efd;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ------------------------------
   GRID SYSTEM
------------------------------ */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1200px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

[class^="col-"] {
  padding: 0 0.5rem;
  flex: 1 0 0%;
}

/* Basic column fractions (1–12) */
.col-1 { flex-basis: 8.333%; max-width: 8.333%; }
.col-2 { flex-basis: 16.667%; max-width: 16.667%; }
.col-3 { flex-basis: 25%; max-width: 25%; }
.col-4 { flex-basis: 33.333%; max-width: 33.333%; }
.col-5 { flex-basis: 41.667%; max-width: 41.667%; }
.col-6 { flex-basis: 50%; max-width: 50%; }
.col-7 { flex-basis: 58.333%; max-width: 58.333%; }
.col-8 { flex-basis: 66.667%; max-width: 66.667%; }
.col-9 { flex-basis: 75%; max-width: 75%; }
.col-10 { flex-basis: 83.333%; max-width: 83.333%; }
.col-11 { flex-basis: 91.667%; max-width: 91.667%; }
.col-12 { flex-basis: 100%; max-width: 100%; }

/* Responsive breakpoints */
@media (min-width: 768px) {
  .container { max-width: 720px; }
}
@media (min-width: 992px) {
  .container { max-width: 960px; }
}
@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}

/* ------------------------------
   TYPOGRAPHY
------------------------------ */
h1 { font-size: 2.5rem; margin-bottom: 0.75rem; font-weight: 600; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; font-weight: 600; }
h3 { font-size: 1.75rem; margin-bottom: 0.75rem; font-weight: 600; }
p  { font-size: 1rem; margin-bottom: 1rem; }

/* ------------------------------
   BUTTONS
------------------------------ */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}
.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/* ------------------------------
   SPACING UTILITIES
------------------------------ */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-3 { padding-top: 1rem; }
.pb-3 { padding-bottom: 1rem; }

/* ------------------------------
   FORMS (light)
------------------------------ */
input, select, textarea {
  font: inherit;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}
.bg-light {
  background-color: #f8f9fa;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.align-center {
  align-items: center;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
}

.services h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0d6efd;
}

.services p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 90%;
}

.text-center {
  text-align: center;
}

.contact {
  background-color: #f8f9fa;
}

.contact h2 {
  font-size: 2rem;
}

.contact .lead {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
}

