/* ================================================================
   WARTA LOKAL — assets/css/main.css
   Global Reset & Base Styles
   ================================================================ */

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

input, textarea, select {
  font-family: inherit;
}

/* ── Container ── */
.wl-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (max-width: 768px) {
  .wl-container {
    padding: 0 var(--space-4);
  }
}   