
*{
  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 */

      
    .tv-container {
      position: relative;
      width: 80%;
      max-width: 900px;
      margin: 20px auto;
      aspect-ratio: 16 / 9;
      background-color: black;
    }
    video {
     width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

    }
    .live-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: red;
      color: white;
      padding: 5px 10px;
      font-weight: bold;
      font-family: sans-serif;
      font-size: 14px;
      border-radius: 4px;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

#unmuteBtn {
   position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  border: none;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
  z-index: 10;
}


#unmuteBtn:hover,
#unmuteBtn:focus {
  background: #e63946;
  color: white;
  outline: none;
  box-shadow: 0 6px 12px rgba(230, 57, 70, 0.7);
}


    /* За мобилни екрани */
@media (max-width: 600px) {
  .live-badge {
    font-size: 12px;
    padding: 4px 8px;
  }

   #unmuteBtn {
    padding: 8px 14px;
    font-size: 14px;
    bottom: 12px;
    right: 12px;
  }

  .tv-container {
     width: 95%;
    margin: 10px auto;
  }
}



.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;
}
  
}
  

