@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: poppins;
}

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

ul {
  list-style: none;
}

body , html {
  overflow-x: hidden;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px;
  color: whitesmoke;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin: 0 30px;
}

header {
  width: 100vw;
  height: 100vh;
  background-image: url('../images/orechovka-w-bg2.jpg');
  background-position: bottom;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content {
  margin-bottom: 150px;
  color: whitesmoke;
  text-align: center;
}

.header-content h2 {
  font-size: 4vmin;
  margin-bottom: 30px;
}

.line {
  width: 150px;
  height: 4px;
  background: crimson;
  margin: 10px auto;
}

.header-content h1 {
  font-size: 7vmin;
  margin-bottom: 10px;
}

.ctn {
  padding: 8px 15px;
  background: crimson;
  border-radius: 30px;
  color: whitesmoke;
}

.menu-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  cursor: pointer;
  display: none;
  color: whitesmoke;
}

/* Informace */
section {
  width: 80%;
  margin: 80px auto;
}

.title {
  text-align: center;
  font-size: 4vmin;
}

.row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.row .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row .col img {
  width: 40%;
}

.info .row {
  margin-top: 50px;
}

h4 {
  font-size: 3vmin;
  margin: 20px auto;
}

p {
  padding: 0px 40px;
  font-size: 2vmin;
}

.info .ctn {
  margin-top: 30px;
}

.contacts {
  width: 100%;
  height: 200%;
  padding: 20px 40px;
  margin: 0;
  text-align: center;
}

.contacts h2 {
  text-align: center;
  font-size: 5vmin;
}

.footer {
  width: 100%;
  height: 100%;
  padding: 20px 40px;
  margin: 0;
  text-align: center;
  background: gray;
}

.footer p {
  font-size: 1vmin;
}

@media only screen and (max-width:850px){
  .menu-btn {
    display: block;
  }
  
  .navbar {
    padding: 0;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    background: #484872;
    margin-top: -900px;
    transition: all 0.5s ease;
  }
  .mobile-menu {
    margin-top: 0px;
    border-bottom-right-radius: 30%;
  }
  .nav-links li {
    margin: 30px auto;
  }
  .row {
    flex-direction: column;
  }
  .row .col {
    margin: 20px auto;
  }
  .col img {
    max-width: 100%;
  }
  .footer {
    padding: 10px;
  }
}
