/* =========================
   GLOBAL CSS RESET + BASE
   ========================= */

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

/* HTML & Body */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: #222;
  background-color: #fff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* Paragraph */
p {
  margin-bottom: 10px;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* List Items */
li {
  list-style: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Inputs */
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
}

/* Horizontal Rule */
hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

/* Utility helpers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Selection color */
::selection {
  background: #000;
  color: #fff;
}