@import "nav.css";
@import "hero.css";
@import "funguje.css";
@import "kontakt.css";
@import "footer.css";

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-VariableFont_opsz,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Italic-VariableFont_opsz,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --yellow: #D6AF64;
  --dark-yellow: #694502;
}

*,
*::after,
*:before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background-color: #fafbf5;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  pointer-events: none;
}

.title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.title-box > span {
  font-size: 0.87rem;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 12px;
  background-color: #e0e5ef;
  color: #2c3ca2;
}

.title-box > h2 {
  font-size: 2.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(0.25turn, #D6AF64, #CFD17B);
  background-clip: text;
  color: transparent;
}

.title-box > hr {
  width: 100%;
  border: 3px solid var(--yellow);
  max-width: 100px;
  margin-bottom: 20px;
}

.title-box > p {
  font-size: 1.125rem;
  color: #565563;
  max-width: 700px;
  margin-bottom: 50px;
}
