/* 
--- 01 TYPOGRAPHY SYSTEM

-Font size system (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

-Font weight:
default:400
medium:500
semi-bold:600
Bold: 700
-Line Height:
 default: 1
small:1.05
medium:1.2, 1.6
large:1.8
parapgraph default:1.6

-Letter spacing
-0.5px
0.75px
--- 02 COLORS
-Primary:#D8A6B1
-secondary:
#581745

-Tints:
#d5b3d6
#fbf6f7
#fef6f8
#eee8ec
#ded1da
-Shades:
#090207
#461237
#6c5359
-Accents:
-Greys:
#767676
#888
#555
#333

---03 IMAGES
-Unsplash.com
-Uifaces

---04 ICONS
-clean and modern

---05 SHADOWS
---06 BORDER-RADIUS
deafautl: 9px
medium:11px

---07 WHITE SPACE
-Spacing system (px)
      2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  /* does not work on safaris */
  /* scroll-behavior: smooth;*/
}
body {
  font-family: "Livvic", sans-serif;
  /* font-family: "Lora", "Roboto", sans-serif; */
  line-height: 1.05;
  font-weight: 400;
  color: #555;
  /* only works if there is nothing positioned absolute
  in relatio to the body */
  overflow-x: hidden;
}
/* *********************************** */
/* GENERAL REUSABLE COMPONENTS */
.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
  /* margin-bottom: 9.6rem; */
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}
.grid--center-v {
  align-items: center;
}
.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  font-weight: 600;
  letter-spacing: -0.5px;

  color: #090207;
}
.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}
.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}
.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
.heading-primary--hero {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fbf6f7;
}
.subheading {
  /* font-family: roboto, sans-serif; */
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #581745 !important;
  /* color: #23091c; */
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  background-color: #581745;
  color: #fff;
  color: #581745;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1.6rem 1.6rem;
  border-radius: 10px;
  /* only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;
  /* Put transition on the original "state" */
  /* transition: background-color 0.3s; */
  transition: transform 0.3s ease; /* smooth scaling */
}
.btn--full:link,
.btn--full:visited {
  background-color: #fff;
  /* background: linear-gradient(90deg, #d5b3d6); */
}
.btn--full:hover,
.btn--full:active {
  background: linear-gradient(90deg, #eeadcd);
  scale: 1.1;
}
.btn--outline:link,
.btn--outline:visited {
  /* background-color: #fff; */
  color: #555;
  color: #fff;
  box-shadow: inset 0 0 0 3px #fff;
}
.btn--outline:hover,
.btn--outline:active {
  background: linear-gradient(90deg, #eeadcd);

  color: #581745 !important;

  scale: 1.1;
}
.btn--form {
  background-color: #461237;
  color: #fbf6f7;
  align-self: end;
  padding: 1rem;

  border-radius: 4px;
  margin-bottom: 1.8rem;

  /* NEW: White stroke */
  border: 2px solid #fbf6f7;
}

.btn--form:hover {
  background-color: #d5b3d6;
  background-color: #fef6f8;
  color: #461237;
}
.link:link,
.link:visited {
  /* background-color: #3981e0; */
  color: #581745;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  margin-bottom: 2px;
  transition: all 0.3s;
}
.link:hover,
.link:active {
  color: 461237;
  border-bottom: 1px solid transparent;
}
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.list-item {
  font-size: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.list-icon--feature {
  width: 3rem;
  height: 3rem;
  color: #581745;
}
*:focus {
  outline: none;
  box-shadow: 0 0 0 0.3rem rgba(70, 5, 52, 0.552);
}
/* HELPER/SETTINGS TEXT */
.margin-right-sm {
  margin-right: 1.6rem !important;
}
.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}
.center-text {
  text-align: center;
}
strong {
  font-weight: 500;
}
.margin-top-pricing {
  margin-top: 4.8rem !important;
}
.margin-top-feature {
  margin-top: 9.6rem !important;
}
.margin-top-payment {
  margin-top: 2.8rem !important;
}
.centered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  justify-content: center;
  align-items: stretch; /* ensures equal height if needed */
}
