@import url("https://fonts.googleapis.com/css2?family=Cinzel&family=Inter:wght@400;600&family=League+Gothic&display=swap");

/* NORMALISE */
body {
  background-color: #f8f8f8;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button {
  outline: none;
  cursor: pointer;
}

input,
textarea {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  color: #616161;
  text-align: center;
  padding: 16px 24px;
  border: 1px solid #231f1f;
  border-radius: 30px;
  outline: none;
}

textarea {
  max-height: 200px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}

/* FONTS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  color: #1f1c1a;
}

h1 {
  font-size: 67px;
}

@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 54px;
  }
}

h2 {
  font-size: 54px;
}

@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 44px;
  }
}

h3 {
  font-size: 43px;
}

@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 34px;
  }
}

p,
i {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  color: #1f1c1a;
}

.accent {
  font-size: 35px;
  font-family: "Cinzel", serif;
  color: #1f1c1a;
}

.cardtext {
  font-size: 22px;
  font-family: "Cinzel", serif;
  color: #1f1c1a;
}

@media only screen and (max-width: 1024px) {
  .accent {
    font-size: 24px;
  }
}

.accent-cta {
  font-size: 28px;
  font-family: "Cinzel", serif;
  color: #1f1c1a;
}

@media only screen and (max-width: 1024px) {
  .accent-cta {
    font-size: 24px;
  }
}

.gothic {
  font-family: "League Gothic", sans-serif;
}

.hero-text {
  font-size: 32px;
}

.hero-h1 {
  font-size: 140px;
}

.text-bold {
  font-weight: 600;
}

.text-gray {
  color: #616161;
}
/* COLORS */
.bg-darkish {
  background-color: #1f1c1a;
}

.bg-whitish {
  background-color: #f8f8f8;
}

.bg-beige {
  background-color: #efe9dd;
}
/* BUTTONS */

.button {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  text-align: center;
  padding: 16px 24px;
  border-radius: 30px;
}

.button:hover {
  transform: scale(1.1);
}

.button-white {
  color: #1f1c1a;
  background-color: #fff;
}

.button-orange {
  color: #fff;
  background-color: #cb5427;
}

.button-outlined {
  color: #231f1f;
  background-color: #fff;
  border: 1px solid #231f1f;
}
