/* =========================
   1. CSS Reset / Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-bg: rgb(77, 57, 84);
  --accent: #e6a96d;
  --text-light: #ffffff;
  --text-soft: #d6cde0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   2. Typography
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1rem;
  color: #495057;
}

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

a:hover {
  color: #0d6efd; /* Bootstrap primary */
}

/* =========================
   3. Media & Layout
========================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1140px; /* optional override Bootstrap */
}

/* =========================
   4. Utility Classes
========================= */
.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.btn-custom {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
}

/* =========================
   5. Forms
========================= */
input,
textarea,
button {
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

/* =========================
   6. Smooth transitions
========================= */
a,
button {
  transition: all 0.2s ease-in-out;
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}