/* ===============================
   GLOBAL RESET
================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   ROOT VARIABLES + FONT
================================ */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #f5f5f5;

  /* 🔒 LOCK FONT HERE */
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
}

/* ===============================
   BODY
================================ */
body {
  font-family: inherit; /* ← inherit from :root */
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===============================
   FORCE FONT ON FORM ELEMENTS
   (ADMIN FIX)
================================ */
button,
input,
textarea,
select {
  font: inherit; /* 🔥 this fixes admin pages */
  color: inherit;
}

/* placeholders */
::placeholder {
  font-family: inherit;
  color: #999;
}

/* ===============================
   CONTAINER
================================ */
.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* ===============================
   SECTIONS
================================ */
.section {
  padding: 64px 0;
}

/* ===============================
   BUTTONS (GLOBAL STYLE)
================================ */
.btn {
  background-color: var(--black);
  color: var(--white);
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ===============================
   HEADINGS
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

/* ===============================
   LINKS
================================ */
a {
  color: inherit;
  text-decoration: none;
}

/* ===============================
   IMAGES
================================ */
img {
  max-width: 100%;
  display: block;
}