/* ============================================================
   Base CSS — Core Reset + Defaults
   This file should NEVER break layout or design structure
   ============================================================ */

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

/* ROOT VARIABLES (fallbacks) */
:root {
  --primary: #9fe6e6;
  --secondary: #e15a8b;
  --text: #1a1a1a;
  --bg: #ffffff;
}

/* BODY */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* LINKS */
a {
  color: inherit;
  text-decoration: none;
}

/* HEADINGS */
h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 10px;
}

/* PARAGRAPHS */
p {
  margin-bottom: 12px;
}

/* LISTS */
ul, ol {
  margin-left: 20px;
}

/* BASIC BUTTON STYLE (safe default) */
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: var(--primary);
  color: #000;
  padding: 10px 16px;
  border-radius: 6px;
}

/* FORM INPUTS */
input,
select,
textarea {
  font: inherit;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

/* SMALL UTILITIES */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* SECTION SPACING BASELINE */
section {
  padding: 40px 0;
}

/* HEADER / FOOTER BASELINE */
header,
footer {
  width: 100%;
}