* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --playfair-font: "Playfair Display", serif;
  --popins-font: "Poppins", sans-serif;
  --highlight-color: #c99937;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}
body {
  font-family: var(--popins-font);
  height: fit-content;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  display: none;
  backdrop-filter: blur(4px);
}
.modal img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.hc-gold {
  color: var(--highlight-color);
}
.header-style {
  font-size: 29px;
  line-height: 118%;
  color: #000;
  font-family: var(--playfair-font);
  font-weight: 400;
}
.header-highlight {
  font-size: 18px;
  letter-spacing: 0.31em;
  font-weight: 500;
  text-transform: uppercase;
}
.paragraph-style {
  font-weight: 300;
  font-size: 12px;
}
.btn {
  height: 80px;
  width: 280px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--highlight-color);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.31em;
  color: white;
}
@media (max-width: 1200px) {
  .btn {
    height: 60px;
    width: 200px;
    font-size: 12px;
  }
}
@media (max-width: 1100px) {
  .header-style {
    font-size: 25px;
  }
}
@media (max-width: 700px) {
  .header-style {
    font-size: 24px;
  }
  .header-highlight {
    font-size: 12px;
  }
}
