
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:Arial, Helvetica, sans-serif
}
body{
  height: 100vh;
  background-image: url(images/back_pozadi_basic.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

li{
  list-style: none;
}
a{
  text-decoration: none;
  color: white;
  font-size: 1rem;
}
a:hover{
  color:red;
}

/* HEADER */
header{
  position: relative;
  padding: 0 2rem;
  background: rgba(100, 100, 100, 0.5);
  backdrop-filter: blur(5px);
}
.logo_vardar{
  padding-top: 5px;
  width: 100%;
  display: flex;
  object-fit: contain;
}

.navbar{
  width: 100%;
  height: 60px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo a{
width: 100%;
height: 80px;
display: flex;
margin-top: 20px;
position: relative;
}

.navbar .links {
  display: flex;
  gap: 1.2rem;
}

.navbar .toggle_btn{
color: white;
font-size: 1.5rem;
cursor: pointer;
display: none;
}

.action_btn{
  background-color: red;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: scale 0.2 ease;
}

.action_btn:hover{
  scale:1.05;
  color: white;
}

.action_btn:active{
  scale:0.95;
}

/* DROPDOWN MENU */

.dropdown_menu{
  display: none;
  position: relative;
  left: 280px;
  margin-bottom: 30px;
  top: 30px;
  height: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow:hidden;
  transition: heigh 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.dropdown_menu.open{
  height: 240px;
}

.dropdown_menu li{
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu .action_btn{
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo_vardar{ 
  display: flex;
justify-content: flex-start;
}

  /* RESPONSIVE RULES */

  @media (max-width:767px) {
      .navbar .links,
      .navbar .action_btn{
          display: none;
      }

      .navbar .toggle_btn{
          display: block;
      }

      .dropdown_menu{
          display: block;
      }
  }

  @media (max-width:576px){
      .dropdown_menu{
          left:0rem;
          margin-bottom: 50px;
          width: unset;
      }
  }



    /* WEB SHOP */

    .webshop{
      display: flex;
      width: 100%;
      height: 73vh;
      justify-content: center;
      margin-top: 150px;
    }


  .box_naracki{
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content:center;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -150px;
  }

  .contact_left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-left: 20px;
  }

  .contact_left_title h2{
font-weight: 600;
color: white;
font-size: 40px;
margin-bottom: 5px;
  }

  .contact_input{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color:grey;
    border-radius: 10px;
  }

  .contact_left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 10px;
  }

  .contact_input:focus{
    border: 2px red;
  }

  .contact_input::placeholder{
    color:grey;
  }

  .contact_left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: white;
    gap:10px;
    border:none;
    border-radius: 10px;
    background-color: red;
    cursor: pointer;
  }

  .info_naracki{
    font-size: 16px;
    color: white;
    text-align: justify;
    margin-top: 10px;
  }

  .contact_right{
width: auto;
display: flex;
position: relative;
margin-top: 50px;
margin-left: 20px;
  }



/* RESPONSIVE SCREEN */

@media (max-width:955px){
  .contact_input{
    margin-left: auto;
    margin-right: auto;
    width:90%;
}
.contact_right{
display: block;
}

.contact_left{
  margin-top: 200px;
  margin-left: 10px;
  margin-right: 10px;
}
}

  @media (max-width:767px) {
    .contact_left{
      margin-left: 10px;
      margin-right: 10px;
    }
    
    .contact_input{
        width:80%;
    }
    .contact_right{
        display:none;
    }
}

/* FUTER */

footer{
  display: flex;
text-align: center;
justify-content: center;
position: relative;

}

.footer_image{
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  align-content: center;
}

/* RESPONSIVE RULES */

@media (max-width:767px){
.footer{
  display: block;
}
  
}
  