@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Poppins:wght@400;500&display=swap");

:root {
  --font-family-body: "Poppins", sans-serif;
  --font-family-heading: "Libre Baskerville", serif;
}

body {
  font-family: var(--font-family-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
}
.banner {
  position: relative;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 18rem 0 12rem 0;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0) 50%
  );
}

.banner .container {
  position: relative;
}

h1 {
  font-size: 75px !important;
  line-height: 4.5rem;
}

h2 {
  font-size: 50px !important;
  line-height: 1.3;
}

input::placeholder {
  color: #540606;
}

.primary {
  color: #540606;
}

@media screen and (max-width: 1400px) {
  .banner {
    padding: 14rem 0 8rem 0;
  }

  h1 {
    font-size: 60px !important;
    line-height: 4rem;
  }

  h2 {
    font-size: 40px !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    padding: 10rem 0 6rem 0;
  }

  h1 {
    font-size: 40px !important;
    line-height: 3rem;
  }

  h2 {
    font-size: 25px !important;
  }
}

.about-banner {
  position: relative;
  background-image: url("../images/about-banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 18rem 0 10rem 0;
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d2976e;
  opacity: 0.2;
}
.about-banner .container {
  position: relative;
}

.menu-items a {
  position: relative;
  padding-bottom: 5px;
  border-bottom: 5px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

.menu-items a:hover,
.menu-items a:focus {
  border-bottom-color: #e4b293;
}

.menu-items a.active {
  border-bottom: 5px solid #e4b293;
}

.toggle-button {
  cursor: pointer;
}

.toggle-button svg {
  transition: transform 0.3s ease-in-out;
}

.faq .hidden {
  display: none;
}
