/* Colors:

    PRIMARY: #C18E33
    SECONDARY: #575753
    SECONDARY: #59585A
 */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  line-height: 1;
  background-color: #fff;
  color: #343a40;
}

/* -------------------- */
/* GENERAL STYLES */

.container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.subheading {
  display: inline-block;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #c18e33;
  letter-spacing: 0.75px;
  margin-bottom: 1.6rem;
}

.heading-primary {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 2.4rem;
}
.heading-secondary {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4.8rem;
  /* color: #333; */
}
.heading-tertiary {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  /* color: #333; */
}

.btn {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.6rem 3.2rem;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline {
  background: transparent;
  background-color: #f9f4eb;
  color: #212529;
  text-align: center;
}
.btn-outline:hover {
  box-shadow: inset 0 0 0 3px #f9f4eb;
  background-color: transparent;
}
.btn-fill {
  background-color: #c18e33;
  color: #fff;
}
.btn-fill:hover {
  background-color: #ae802e;
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 2.4rem;
}

.btn-primary {
  color: #fff;
  /* background-color: rgb(193, 142, 51); */
  background-color: #c18e33;
}
.btn-primary:hover {
  color: #fff;
  background-color: #ae802e;
}

/* Helper classes */
.mb-lg {
  margin-bottom: 3.2rem !important;
}
.mb-md {
  margin-bottom: 2.4rem !important;
}
.mb-sm {
  margin-bottom: 1.6rem !important;
}
.btn.btn-sm {
  padding: 0.8rem 1.6rem !important;
}

.text-center {
  text-align: center;
}

/* .text-white {
  color: #f9f4eb !important;
} */
#book-now {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
}
