@font-face {
  font-family: 'NunitoSans';
  src: url('/assets/fonts/NunitoSans-VariableFont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('/assets/fonts/PlayfairDisplay-VariableFont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  font-family: 'NunitoSans', sans-serif;
  color: #EADFC8;
  background-color: black;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

main {
  padding-top: 85px;
}

section {
  scroll-margin-top: 85px; /* высота твоего меню */
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-img {
  position: absolute;
  inset: 0;
  filter: brightness(0.7);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 14%;
  transform: scale(1.1);
}

h1 {
  font-family: 'PlayfairDisplay', serif;  
  font-size: 70px;
  font-weight: 300;
  margin-top: 190px;
  margin-bottom: 0;
  color: #d6be72;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

h2 {
  /* background: linear-gradient(90deg, #D6BE72 0%, #A98A3C 100%); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
  /* color: transparent; */
  font-weight: 300;
  font-size: 28px;
  margin-top: 0;
  color: #d6bf72;
  padding-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  /* font-family: "PlayfairDisplay", serif; */
  /* background-color: black; */
}

h3 {
  font-size: 25px;
  font-weight: 400;
  color: #d6bf7243;
  margin: 0;
  padding-bottom: 0px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  justify-content: center;
}

.hero-content h1 {
  /* background-color: #173B3F; */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 20px;
  /* margin-bottom: 20px; */
  border-radius: 30px;
}

.hero-content h2 {
  /* background-color: #173B3F; */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 20px;
  margin-bottom: 80px;
  border-radius: 20px;
}

.cta {
  background: #d6be72;
  color: black;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 10px;
  border: #d6be72 2px solid;
  padding: 13px 20px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
}

.cta:hover {
  background: black;
  color: #d6be72;  
  padding: 13px 20px;
  border: #d6be72 2px solid;  
}

.cta2 {
  background: transparent;
  color: #d6be72;
  transition: background-color 0.3s, color 0.3s;
  border: #d6be72 2px solid;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  margin-left: 20px;
}

.cta2:hover {
  background: black;
  color: #d6be72;  
  border: #d6be72 2px solid;  
}
