* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

body {
  background-color: black;
  overflow: hidden;
}

.header-head {
  margin-top: 0 !important; /* Remove the negative margin */
}

h1 {
  color: #8D5A18;
  font-family: "Playfair", serif;
  font-size: 128px;
  font-weight: bold;
}

h2 {
  font-weight: 400;
  color: white;
  font-family: "Playfair", serif;
  font-size: 48px;
}

.hero-wrapper {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-wrapper .hero-container {
  width: 100%;
  height: 100%;
  position: relative; /* Needed for absolute positioning */
  text-align: center;
}
.hero-wrapper .hero-container .header {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
}
.hero-wrapper .hero-container .header .sklenice-samice {
  position: absolute; /* Center in the parent container */
  top: 50%; /* Position at the center */
  left: 50%; /* Position at the center */
  transform: translate(-50%, -50%); /* Adjust for element's size */
  z-index: 1;
  opacity: 0.3;
  margin-left: 40px;
}
.hero-wrapper .hero-container .header .sklenice-samice img {
  pointer-events: none;
}
.hero-wrapper .hero-container .header .header-head {
  position: relative;
  z-index: 10;
  display: flex; /* Use Flexbox to align h1 and .hand horizontally */
  align-items: center; /* Align items vertically in the center */
}
.hero-wrapper .hero-container .header .header-head h1 {
  margin: 0; /* Remove default margin */
  color: #8D5A18;
  font-family: "Playfair", serif;
  font-size: 128px;
  font-weight: bold;
}
.hero-wrapper .hero-container .header .header-head .hand {
  margin-left: 20px; /* Add some space between h1 and .hand */
  animation-name: wave-animation;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}
.hero-wrapper .hero-container .header .header-head .hand img {
  height: 90px;
  transition: 0.3s ease-in-out;
}
.hero-wrapper .hero-container .header .header-head .handhover {
  scale: 2.1;
}
@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(14deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(14deg);
  }
  50% {
    transform: rotate(-4deg);
  }
  60% {
    transform: rotate(10deg);
  }
  70% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.footer {
  position: relative;
  height: 100%;
  width: 95vw;
  align-items: center;
  align-content: center;
  margin-top: -7%;
  margin-left: 2.5%;
  bottom: 0 !important;
}
.footer .footer-wrapper {
  width: 100%;
}
.footer .footer-wrapper .footer-container {
  display: flex;
  justify-content: space-between;
  /*
      @keyframes rotate-logo {
          0%{transform: rotate( 0.0deg)}
          100%{transform: rotate( 360.0deg)}
      }*/
}
.footer .footer-wrapper .footer-container img {
  margin-top: 13px;
  height: 65px;
  transition: 0.3s ease-in-out;
}
.footer .footer-wrapper .footer-container img:hover {
  /* animation: rotate-logo 2s linear infinite; */
  scale: 1.1;
}
.footer .footer-wrapper .footer-container h3 {
  margin-top: 20%;
  font-size: 18px;
  color: #8D5A18;
  font-family: playfair;
  font-weight: 200;
  text-decoration: underline;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 110px !important;
  }
  h2 {
    font-size: 38px;
  }
  .hand img {
    height: 70px !important;
  }
}
@media (max-width: 1400px) {
  h1 {
    font-size: 100px !important;
  }
  h2 {
    font-size: 35px;
  }
  .hand img {
    height: 70px !important;
  }
}
@media (max-width: 1250px) {
  .header-head {
    margin-top: -20% !important;
  }
  h1 {
    font-size: 80px !important;
  }
  h2 {
    font-size: 30px;
  }
  .hand img {
    height: 50px !important;
    margin-top: 8px !important;
  }
  .sklenice-samice {
    top: 55% !important;
  }
}
@media (max-width: 990px) {
  h1 {
    font-size: 60px !important;
    margin-left: 35px !important;
  }
  h2 {
    font-size: 23px;
  }
  .hand img {
    height: 40px !important;
    margin-top: 8px !important;
  }
  .sklenice-samice {
    margin-left: 45px;
  }
}
@media (max-width: 760px) {
  .header-head {
    flex-direction: column; /* Stack h1, h2, and .hand vertically */
  }
  .header-head h1 {
    font-size: 40px !important;
    margin-left: 0px !important;
  }
  .header-head h2 {
    font-size: 16px;
  }
  .header-head .sklenice-samice {
    height: 500px;
    margin-left: 33px;
  }
  /* Add .hand directly under h2 */
  .hand {
    position: absolute;
    margin-top: 120px; /* Add some space between h2 and .hand */
  }
  .hand img {
    height: 80px !important;
  }
}
@media (max-width: 425px) {
  .header-head {
    margin-top: -350px !important;
  }
  .header-head h1 {
    font-size: 50px !important;
    margin-left: 0px !important;
  }
  .header-head h2 {
    margin-top: -170px !important;
    font-size: 16px;
  }
  .sklenice-samice {
    height: 500px;
    margin-left: 33px;
    top: 46% !important;
  }
  /* Add .hand directly under h2 */
  .hand {
    position: absolute;
    margin-top: 200px; /* Add some space between h2 and .hand */
  }
  .hand img {
    height: 70px !important;
  }
}
@media (max-width: 400px) {
  .header-head {
    flex-direction: column; /* Stack h1, h2, and .hand vertically */
  }
  .header-head h1 {
    font-size: 50px !important;
    margin-left: 0px !important;
  }
  .header-head h2 {
    font-size: 16px;
  }
  .header-head .sklenice-samice {
    height: 500px;
    margin-left: 33px;
  }
  /* Add .hand directly under h2 */
  .hand {
    position: absolute;
    margin-top: 190px; /* Add some space between h2 and .hand */
    margin-left: -3px !important;
  }
  .hand img {
    height: 60px !important;
  }
}
@media (max-width: 380px) {
  .header-head {
    margin-top: -250px !important;
    flex-direction: column; /* Stack h1, h2, and .hand vertically */
  }
  .header-head h1 {
    font-size: 40px !important;
    margin-left: 0px !important;
  }
  .header-head h2 {
    font-size: 16px;
  }
  .header-head .sklenice-samice {
    height: 500px;
    margin-left: 33px;
  }
  /* Add .hand directly under h2 */
  .hand {
    position: absolute;
    margin-top: 220px; /* Add some space between h2 and .hand */
    margin-left: -3px !important;
  }
  .hand img {
    height: 60px !important;
  }
}
@media (max-width: 1280px) {
  .footer {
    margin-top: -15% !important; /* Adjust margin */
  }
}
@media (max-width: 1055px) {
  .footer {
    margin-top: -25% !important; /* Adjust margin */
  }
}
@media (max-width: 814px) {
  .footer {
    margin-top: -29% !important; /* Adjust margin */
  }
}
@media (max-width: 730px) {
  .footer {
    margin-top: -40% !important;
  }
}
@media (max-width: 555px) {
  .footer {
    margin-top: -45% !important;
  }
}
@media (max-width: 380px) {
  .footer {
    margin-top: -50% !important;
  }
}/*# sourceMappingURL=style.css.map */