@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Herr+Von+Muellerhoff&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --primary-color: #c59d5f;
  --text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

body {
  background: #111;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
}
.logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.logo-big {
  height: 100px;
  width: 50%;
  object-fit: contain;
}
.circle-logo {
  max-width: 200px;
}
section {
  padding: 100px 0;
}

header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
}

footer {
  padding: 20px 0;
  color: rgb(154, 153, 152);
  background: #000;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0px -0.1em 0px 0px;
  letter-spacing: 0.2em;
}

h2 {
  font-size: 40px;
}

.cap {
  font-family: "Herr Von Muellerhoff", cursive;
  font-weight: 400;
  font-style: normal;
  display: block;
  color: var(--primary-color);
  font-size: 100px;
  margin-bottom: -40px;
  text-transform: none;
  letter-spacing: 0px;
}

.big-img-section {
  padding: 200px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.big-img-section .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.text-block {
  text-align: center;
  padding: 60px;
}

.separator--flower {
  margin: 12px 0px;
  font-size: 17px;
  font-family: serif;
  color: rgb(154, 153, 152);
}

.text-shadow {
  text-shadow: var(--text-shadow);
}

.hero {
  margin-bottom: 100px;
}

.standing-img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  max-height: 750px;
}
.standing-img-small {
  height: 40vh;
  width: 100%;
  object-fit: cover;
}
.icon-holder {
  display: flex;
  gap: 20px;
  justify-content: end;
}
.icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.text-gray {
  color: rgb(154, 153, 152);
}

.items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.items .item {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px dotted var(--primary-color);
}

.item-name {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.item-price {
  font-size: 20px;
  opacity: 0.7;
}

.highlighted-item {
  border: 2px solid var(--primary-color);
  padding: 20px;
  position: relative;
}

.highlighted-item:before {
  content: "Kiemelt ajánlatunk";
  background: var(--primary-color);
  padding: 5px 10px;
  position: absolute;
  left: -2px;
  bottom: 100%;
  text-transform: uppercase;
  font-size: 14px;
}
