@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Prata&display=swap');

*{
    margin: 0;
    padding: 0;
  }

  body{
    background-color: #183B4E;
    color: white;
  }

header{
    width: 100vw;
    height: auto;
    background-color: #484c52;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #393E46;
  height: 500px;
  color: white;
  border-radius: 10px;
}

.topnav {
  overflow: hidden;
  background-color: #393E46;
  position: relative;
  display: none;
  font-family: "Karla", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.topnav #myLinks {
    display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: #393E46;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #484c52;
  color: white;
}

.active {
  background-color: #484c52;
  color: white;
}

.trejler {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10vw;
}

.slider{
  position: relative;
  width: 100vw; 
  height: 60vh;
  margin: 0 auto;
  overflow: hidden;
}
.slide{ 
  position: absolute;
  top:0;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s;
}
.slide > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.dots-container{
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.dot{
  width: 25px;
  height: 5px;
  margin: 15px 5px;
  border-radius: .5rem;
  background: rgba(93, 93, 93, 0.5);
  cursor: pointer;
}
.dot.active{
background:#686868;
}

.btn-slide {
  display: none;
}

nav{
    width: 100vw;
    height: 10vh;
    background-color: #393E46;
    display: flex;
    justify-content: center;
}

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 999;
  font-family: "Karla", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.dropbtn {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-color: transparent;
  margin-top: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: blueviolet;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px blueviolet;
  z-index: 50;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: oklch(37.3% 0.034 259.733)}

.dropdown:hover .dropdown-content {
  display: block;
}

h1{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5vh 0;
  font-size: 35pt;
  font-family: "Prata", serif;
font-weight: 400;
font-style: normal;
text-shadow: 2px 1px #0077ccda;
}
section{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 15vh;

}

.form_section {
    width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 10vh;
    background-color: #183B4E;
    color: white;
}

input[type="submit"] {
    cursor: pointer;
}

h2{
    font-size: 25pt;
    font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
}

h3 {
    font-size: 20pt;
    font-family: "Prata", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.box{
    width: 70vw;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5vw;
    padding: 10vh;
}

.slika {
    min-width: 20vw;
    width: 30vw;
    height: 40vh;
}

.slika img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1vw;
}

p{
    padding: 10px;
    font-size: 15pt;
    font-family: "Karla", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.video{
    width: 30vw;
    height: 40vh;
    background-color: #27548A;
}

form {
    width: 50vw;
    margin: 5vh auto;
    border-radius: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

  }
  
  form label {
    margin-bottom: 1vh;
    font-size: 12pt;
    font-weight: bold;
    font-family: "Karla", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-self: flex-start;
    padding-left: 8vh; 
  }
  
  form input,
  form textarea{
    width: 40vw;
    padding: 1.2vh 1vw;
    margin-bottom: 2vh;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 1vw;
  }

  form button {
    width: 10vw;
    height: 5vh;
    border-radius: 20px;
    background-color: #0077cc;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1vw;
  }
  
  form button:hover {
    background-color: #005fa3;
  }

  .platforme{
    margin: 0 15vw;
  }

  .kutija{
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5px;
    padding-top: 10vh;
  }
 
.netflix{
    width: 15vw;
    height: 25vh;
    background-image: url(includes/slike/netflix_logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.disney{
  width: 15vw;
  height: 25vh;
  background-image: url(includes/slike/disney_plus_logo.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.amazon{
  width: 15vw;
  height: 25vh;
  background-image: url(includes/slike/prime_video_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.hbo{
  width: 15vw;
  height: 25vh;
  background-image: url(includes/slike/hbo_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.netflix:hover{
  transform: scale(1.10);
}

.amazon:hover{
  transform: scale(1.10);
}

.disney:hover{
  transform: scale(1.10);
} 

.hbo:hover{
  transform: scale(1.10);
}

footer{
  width: 100vw;
  height: 10vh;
  background-color: #27548A;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13pt;
  font-family: "Karla", sans-serif;
  font-weight: 400;
  font-style: normal;
}

  @media (max-width: 900px) {
    section{
        height: auto;
        padding-bottom: 5vh;
    }


    .box {
      flex-direction: column;
      gap: 3vh;
      width: 90vw;
      padding: 4vw 1vw;
      height: auto;
    }
  
    .slika {
      width: 80vw;
      height: 30vh;
      max-width: 100%;
    }
  
    .video {
      width: 80vw;
      height: 30vh;
      max-width: 100%;
    }
  
    h2 {
      font-size: 1.5rem;
    }

    nav {
      display: none;
    }

    h3 {
      font-size: 20pt;
    }

    .trejler {
      flex-direction: column;
      gap: 2vh;
      justify-content: start;
      align-items: start;
    }

    .topnav {
      display: block;
      width: 100%;
      overflow: hidden;
      position: relative;
    }
    
    .topnav #myLinks {
      display: none;
    }
    
    .topnav a {
      color: white;
      padding: 14px 16px;
      text-decoration: none;
      font-size: 17px;
      display: block;
    }
    
    .topnav a.icon {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
    }
  }
  
  @media (max-width: 600px) {
    section{
        height: auto;
        padding-bottom: 5vh;
    }

    header {
      width: 100vw;
      min-width: 0;
    }
  
 
  
    nav {
      width: 100vw;
      min-width: 0;
    }
  
    section {
      width: 100vw;
      min-width: 0;
    }
  
    .box {
      flex-direction: column;
      gap: 2vh;
      width: 98vw;
      padding: 2vw 1vw;
      height: auto;
    }
  
    .slika {
      width: 95vw;
      height: 25vh;
      max-width: 100%;
      min-width: 120px;
    }
  
    .video {
      width: 95vw;
      height: 25vh;
      max-width: 100%;
      min-width: 120px;
    }
  
    h2 {
      font-size: 1.2rem;
    }
  
    p {
      font-size: 0.95rem;
      padding: 10px;
    }
  
    form label {
      font-size: 0.95rem;
    }
  
    form input,
    form textarea {
      font-size: 0.95rem;
      width: 60vw;
      background-color: #686868;
    }
  
    form button {
      font-size: 0.95rem;
      width: 30vw;
    }
  
    form {
      width: 98vw;
      max-width: 98vw;
      padding: 2vw;
    }
  
    .streaming_platforme {
      width: 98vw;
      max-width: 98vw;
      gap: 5vw;
    }

    .kutija {
      flex-direction: column;
    }

    .platforme{
      margin: 0;
    }

    .netflix, .disney, .amazon, .hbo {
        width: 30vw;
        height: 20vh;
        background-size: contain;
        background-repeat: no-repeat;
    }
  }
  
