/* ==========================================================================
   BASE.CSS
   Simple reset and structure for all sites
   ========================================================================== */

/* Reset defaults and enable smooth typography */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0066cc;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: underline;
}

/* Containers and grids */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Headings hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: #111;
}

/* Utility spacing */
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn--primary {
  background-color: #0066cc;
  color: #fff;
}
.btn--primary:hover {
  background-color: #004999;
}

/* Simple section layout */
.section {
  padding-block: 4rem;
}
.section--muted {
  background-color: #f7f7f7;
}
.section__title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: #111;
  color: #eee;
  padding-block: 2rem;
}
footer a {
  color: #9fd0ff;
}
footer a:hover {
  color: #fff;
}
