
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:Arial, Helvetica, sans-serif
}
body{
  height: 100vh;
  background: rgb(63, 63, 63);
  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;
      }
  }


  /* VARDAR TV */

  .televizija_vardar{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 73vh;
max-width: 1300px;
margin: 0 auto;
margin-top: 60px;
justify-content:start;
align-items: center;
position: relative;
}

.televizija_vardar_live{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 73vh;
max-width: 1300px;
margin: 0 auto;
margin-top: 60px;
justify-content:start;
align-items: center;
position: relative;
}

 .video_player1{
  display: flex;
  flex-direction: column;
  position:relative;
  width: 640px;
  height: 360px;
  margin-bottom: 40px;
 }

 .player1 {
  width: 100%;
 }

 .ime_prilog1 {
  color:white;
  font-size: 16px;
  text-align: center;
  letter-spacing:2px;
  margin-bottom: 20px;
 }

 .video-js{
  width: 100%;

 }

  /* RESPONSIVE RULES */

  @media (max-width:767px){
    .televizija_vardar_live{
      display: flex;
      align-items: center;
      justify-content: start;
      align-content: center;
      text-align: center;
    }

  

    .video_player1 {
      display: flex;
      width: 533px;
      height: 300px;
      justify-content: center;
      align-items: center;
      align-content: center;
      position:relative;
    }

  }

  @media (max-width:575px){
    .televizija_vardar_live{
      display: flex;
      align-items: center;
      justify-content: start;
      align-content: center;
      text-align: center;
    }

  

    .video_player1 {
      display: flex;
      width: 426px;
      height: 240px;
      justify-content: center;
      align-items: center;
      align-content: center;
      position:relative;
    }

  }



    
/* 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;
}
  
}
  

