@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat";
}
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #fff; 
}
 
::-webkit-scrollbar-thumb {
  background-color: #6a11cb;
  border-radius: 3px;
  cursor: grab;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #610fb9;
}
::-moz-selection { 
  color: #fff;
  background: rgba(255, 0, 221, 0.492);
}

::selection {
   color: #fff;
  background: rgba(255, 0, 221, 0.492);
}
body {
  background-color: white;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -5;
}

main {
  flex: 1;
}

.pocetna {
  display: grid;
  grid-template-areas:
    "nav"
    "header";
}

nav {
  position: fixed;
  width: 100%;
  grid-area: nav;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  padding: 10px 50px;
  z-index: 126;
  transition: background-color 0.6s ease;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo h1 {
  font-size: 1.5rem;
  font-weight: bold;
}

nav .logo img {
  width: 60px;
}

nav .links a {
  color: black;
  text-decoration: none;
  margin: 0 10px;
}
nav .links a:hover {
  color: #8324f0;
}

nav .links a span {
  border-radius: 25px;
  color: white;
  background: linear-gradient(90deg, #8324f0, #bd13d4, #e310cb);
  padding: 15px 40px;
}
nav .links a span:hover {
  background: linear-gradient(90deg, #7d1ee9, #a70ebb, #dc0ec4);
}
.hamburger {
  display: none; /* Hidden by default */
  font-size: 30px;
  cursor: pointer;
}

header {
  display: grid;
  grid-area: header;
  height: 95vh;
}

header .tekst {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px;
}

header .tekst h1 {
  font-size: 9rem;
  color: #222;
  font-weight: bold;
}

header .tekst p {
  font-size: 2rem;
}

header .tekst span {
  display: inline-block;
  opacity: 0;
  animation: typing 0.3s forwards;
  animation-delay: calc(0.05s * var(--i)); /* Brže kašnjenje između slova */
}

header .tekst h1 span {
  animation-delay: calc(0.05s * var(--i)); /* Brže kašnjenje za h1 */
}

header .tekst p span {
  animation-delay: calc(0.05s * var(--i)); /* Brže kašnjenje za p */
}

@keyframes typing {
  to {
    opacity: 1;
  }
}

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel .carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100%;
  padding: 50px;
  box-sizing: border-box;
}

.carousel-content {
  display: flex;
  align-items: center;
  box-shadow: -1px 7px 25px 1px rgba(0, 0, 0, 0.49);
  border-radius: 25px;
  height: 100%;
  width: 100%;
  padding: 20px;
  background-color: white;
}

.carousel-content .tekst {
  width: 50%;
  padding: 50px;
}

.carousel-content .tekst h1 {
  font-family: "Montserrat";
  font-size: 7rem;
}

.carousel-content p {
  font-family: "Montserrat";
  font-size: 2rem;
  width: 100%;
  margin-bottom: 80px;
}

.carousel-content a {
  text-decoration: none;
  color: black;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid black;
  border-radius: 25px;
  padding: 10px 40px;
}

.carousel-content .slika {
  width: 50%;
  height: 100%;
  border-radius: 25px;
  background-image: url("../img/1.jpg");
  background-size: cover;
  background-position: center;
}

.dg {
  display: none;
}

footer {
  display: flex;
  background-color: black;
  padding: 50px;
  flex-direction: column;
}

footer .tekst h1 {
  color: white;
  font-size: 2.5rem;
}

footer .linkovi {
  margin: 50px 50px 50px 0;
}

footer .linkovi a {
  border: 1px solid white;
  margin: 10px 10px 0 0;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  padding: 10px 30px;
  font-family: "Montserrat";
  font-weight: 400;
}

footer .mreze i {
  color: white;
  font-size: 2rem;
  margin: 0 20px 0 0;
}

footer .copyright {
  color: white;
  margin-top: 50px;
}

footer .copyright p {
  font-family: "Montserrat";
  font-weight: 400;
}

.kontakt header .tekst {
  margin: 0;
   
}
.kontakt-header{
  height: auto;
}
.kontakt-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
  width: 100%;
  max-width: 1100px;
  margin: 4rem auto 0 auto;
  padding: 2rem 1rem;
  
}

.kontakt-pocetna {
  flex: 1 1 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(131,36,240,0.07), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
  max-width: 500px;
}

.kontakt-pocetna h1 {
  font-size: 2.5rem;
  color: #8324f0;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.kontakt-pocetna p {
  font-size: 1.15rem;
  color: #333;
  font-weight: 500;
  line-height: 1.7;
}

.kontakt_forma {
  flex: 1 1 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(131,36,240,0.07), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
  max-width: 500px;
 
}

.kontakt_forma h1 {
  font-size: 2rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.kontakt_forma form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.kontakt_forma form input,
.kontakt_forma form textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  background: #faf8ff;
  transition: border-color 0.2s;
  resize: none;
}

.kontakt_forma form input:focus,
.kontakt_forma form textarea:focus {
  border-color: #8324f0;
  outline: none;
  background: #fff;
}

.kontakt_forma form textarea {
  min-height: 120px;
  max-height: 220px;
}

.kontakt_forma form button {
  background: linear-gradient(90deg, #8324f0, #bd13d4, #e310cb);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(131,36,240,0.08);
}

.kontakt_forma form button:hover {
  opacity: 0.92;
}

@media (max-width: 900px) {
  .kontakt-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 1rem 0.5rem;
  }
  .kontakt-pocetna,
  .kontakt_forma {
    max-width: 100%;
    min-width: 0;
    padding: 2rem 1rem;
  }
}

.nas_cilj {
  padding: 50px;
  box-shadow: 1px 1px 5px gray;
  border-radius: 25px;
  background-color: white;
}

.nas_cilj .tekst h1 {
  font-size: 4rem;
  font-weight: 400;
}

.nas_cilj .tekst p {
  font-size: 2rem;
  font-weight: 400;
  width: 50vw;
}

.nas_cilj-slika {
  padding: 50px;
  box-shadow: 1px 1px 5px gray;
  border-radius: 25px;
  background-color: white;
  margin: 50px 0;
}

.nas_cilj-slika .slika {
  background-image: url(../img/1.jpg);
  object-fit: cover;
  background-size: cover;
  height: 90vh;
  border-radius: 25px;
}

.nova_sezona {
  display: flex;
  align-items: center;
  position: relative;
  top: 550px;
  box-shadow: -1px 7px 50px 1px rgba(0, 0, 0, 0.286);
  width: 1900px;
  height: 75vh;
  margin: 10px 0px 0px 0px;
  padding: 20px;
  transform-origin: 0;
  rotate: -5deg;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  background-color: white;
}

/* Prva kartica dolazi s desne strane */
.nova_sezona.first {
  opacity: 0;
  transform: translateX(
    100vw
  ); /* Početna pozicija za prvu karticu - van ekrana s desne strane */
}

/* Druga kartica dolazi s lijeve strane, mirrorana s istom zakrivljenošću */
.nova_sezona.second {
  opacity: 0;
  transform: translateX(
    -100vw
  ); /* Početna pozicija za drugu karticu - van ekrana s lijeve strane */
  rotate: 5deg; /* Ovdje povećavamo kut zakrivljenosti za drugu karticu */
}

/* Kada kartica postane vidljiva */
.nova_sezona.show {
  position: relative;
  right: 2%;
  width: 2000px;
  transform: translateX(0); /* Pomakni karticu na svoju poziciju */
  opacity: 1;
}

/* Ostatak stila */
.nova_sezona .tekst {
  width: 50%;
  margin: 60px;
}

.nova_sezona .tekst h1 {
  font-family: "Montserrat";
  font-size: 7rem;
}

.nova_sezona p {
  font-family: "Montserrat";
  font-size: 2rem;
  width: 100%;
  margin-bottom: 80px;
}

.nova_sezona a {
  text-decoration: none;
  color: black;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid black;
  border-radius: 25px;
  padding: 10px 40px;
}

.nova_sezona .slika {
  object-fit: cover;
  background-position: center;
  width: 100%;
  height: 70vh;
  margin: 50px;
  border-radius: 25px;
  background-image: url("../img/1.jpg");
  background-position: center;
  object-fit: cover;
}
/* Stilovi za .pridruzi_se sekciju */
.pridruzi_se {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 5px 7px 55px 1px rgba(0, 0, 0, 0.235);
  border-radius: 0 25px 0 0;
  position: relative;
  top: 400px;
  height: 70vh;
  margin: 500px 50px 500px 0;
  padding: 20px;
  flex-direction: column;
  background-color: white;
}

/* Poseban stil kad je unutar #kontakt */
#kontakt .pridruzi_se {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 5px 7px 55px 1px rgba(0, 0, 0, 0.235);
  border-radius: 0 25px 0 0;
  position: relative;
  top: 10px;
  height: 70vh;
  margin: 50px 50px 0 0;
  padding: 20px;
  margin-top: 500px;
}

/* Inicijalno stanje za animaciju */
.pridruzi_se {
  opacity: 0;
  transform: translateX(-100vw);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Kad je vidljivo */
.pridruzi_se.show {
  opacity: 1;
  transform: translateY(0);
}

.pridruzi_se .tekst {
  width: 50%;
  margin: 50px;
}

.pridruzi_se .tekst h1 {
  font-size: 7rem;
  font-weight: 700;
}

.pridruzi_se a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: bold;
  margin: 0 50px;
  border: 2px solid black;
  border-radius: 25px;
  padding: 10px 40px;
}

.epizode {
  height: 100vh;
}

.sezone-container {
  margin: 50px;
}

.sezona-btn {
  text-decoration: none;
  color: black;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid black;
  border-radius: 25px;
  padding: 10px 40px 10px 40px;
  margin: 0 20px 0 0;
  cursor: pointer;
}

.epizode-container {
  margin: 50px;
}

.epizoda_video {
  background-color: rgb(195, 9, 9);
  display: flex;
  flex-direction: column;
}

#epizoda_iframe {
  margin: 0 20px 0 0;
  box-shadow: 5px 7px 55px 1px rgba(0, 0, 0, 0.235);
  border-radius: 10px;
  padding: 20px;
}

#epizode {
  display: flex;
}

.cards_onama .card1,
.card2,
.card3,
.card4 {
  background-color: white;
}

.cards_onama .card4 {
  margin-bottom: 500px;
}

.epizoda-container .video {
  box-shadow: 5px 7px 55px 1px rgba(0, 0, 0, 0.235);
  border-radius: 25px;
  height: 60vh;
}

.opis {
  display: flex;
  flex-direction: column;
  box-shadow: -1px 7px 25px 1px rgba(0, 0, 0, 0.49);
  border-radius: 25px;
  height: auto;
  margin: 50px 0;
  padding: 20px;
}

.intervjuer p {
  display: flex;
  align-items: center;
}

.intervjuer img {
  width: 70px; /* prilagodi prema željenoj veličini */
  height: 70px; /* mora biti isto kao width da bi bila savršeno okrugla */
  border-radius: 50%; /* ključni dio koji čini sliku okruglom */
  object-fit: cover; /* osigurava da se slika lijepo uklopi unutar kruga */
  margin: 0 20px 0 0;
}

#natrag {
  text-decoration: none;
  color: black;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid black;
  border-radius: 25px;
  padding: 10px 40px 10px 40px;
  position: relative;
  top: 20px;
}

.kartica {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-shadow: -1px 7px 55px 1px rgba(0, 0, 0, 0.332);
  border-radius: 25px;
  height: 70vh;
  margin: 50px 50px 50px 0;
  padding: 20px;
  margin-top: 200px;
  flex-direction: column;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  border-radius: 0 25px 25px 0;
  background-color: white;
}

/* Kartica-slika - originalni stil */
.kartica-slika {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-shadow: -1px 7px 55px 1px rgba(0, 0, 0, 0.396);
  border-radius: 25px 0 0 25px;
  height: 90vh;
  margin: 0 0 50px 50px;
  padding: 20px;
  flex-direction: column;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  background-color: white;
}

/* Prva kartica dolazi s desne strane */
.kartica.first {
  transform: translateX(-100vw); /* Početni položaj van ekrana s desne strane */
}

/* Druga kartica dolazi s lijeve strane */
.kartica-slika.second {
  transform: translateX(100vw); /* Početni položaj van ekrana s lijeve strane */
}

/* Kada kartica postane vidljiva */
.kartica.show,
.kartica-slika.show {
  transform: translateX(0); /* Pomakni karticu na svoju poziciju */
  opacity: 1;
}

.kartica .tekst {
  width: 50%;
  margin: 50px;
}

.kartica .tekst h1 {
  font-family: "Montserrat";
  font-size: 6rem;
}

.kartica .tekst p {
  font-family: "Montserrat";
  font-size: 1.7rem;
}

.kartica-slika .slika {
  object-fit: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
  margin: 20px;
  border-radius: 25px 0 0 25px;
  background-image: url(../img/1.jpg);
  background-position: center;
  object-fit: cover;
  background-size: cover;
}

/* Opći stil kartica */
.card1,
.card2,
.card3,
.card4 {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: -1px 7px 55px 1px rgba(0, 0, 0, 0.373);
  border-radius: 25px;
  width: 120vw;
  height: 70vh;
  position: relative;
  top: 250px;
  right: 150px;
  margin: 20px 50px 200px 50px;
  padding: 20px;
  transform-origin: center;
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Kartice se uvijek pojavljuju s rotacijom */
.card1,
.card3 {
  transform: rotate(-7deg) translateX(100vw); /* Lijeva strana */
}

.card2,
.card4 {
  transform: rotate(7deg) translateX(-100vw); /* Desna strana */
}

/* Kada postanu vidljive */
.card1.show,
.card2.show,
.card3.show,
.card4.show {
  transform: rotate(-7deg) translateX(0); /* Ove ostaju na lijevoj strani */
  opacity: 1;
}

.card2.show,
.card4.show {
  transform: rotate(7deg) translateX(0); /* Ove ostaju na desnoj strani */
}

/* Stil slika */
.slika1,
.slika2 {
  width: 100vw;
  height: 65vh;
  border-radius: 15px;
  margin: 10px;
  background-image: url("../img/1.jpg");
  object-fit: cover;
  background-position: center;
}

.gosti-kartice {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 4rem 0rem;
}

.gosti-card {
  display: flex;
  flex-direction: column;
  box-shadow: -1px 7px 25px 1px rgba(0, 0, 0, 0.49);
  border-radius: 25px;
  height: 450px; /* ili visina po želji */
  width: 25%;
  margin: 30px;
  padding: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  justify-content: flex-end; /* da ime bude dole */
}
.gosti-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.gosti-card h3 {
  margin-top: 15px;
}
#imegostcard {
  width: 100%;
  background-color: rgb(3, 3, 10);
  color: #fff;
  border-radius: 1.5rem;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin_form_login {
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.admin_form_login form {
  display: flex;
  flex-direction: column;
  padding: 50px;
}
.admin_form_login form input {
  margin: 10px;
}
.admin_form_login form input[type="text"] {
  padding: 20px 120px 20px 20px;
  border: 0;
}
.admin_form_login i {
  border-bottom: 2px solid rgb(14, 95, 146);
}
.admin_form_login form input[type="text"]::placeholder {
  color: black;
}
.admin_form_login form input[type="text"]:focus {
  outline: none;
}
.admin_form_login form input[type="password"] {
  padding: 20px 120px 20px 20px;
  border: 0;
}
.admin_form_login form input[type="password"]::placeholder {
  color: black;
}
.admin_form_login form input[type="password"]:focus {
  outline: none;
}
.admin_form_login form button {
  padding: 20px 30px 20px 30px;
  border: 0;
  border-radius: 10px;
  background-color: rgb(14, 95, 146);
  color: white;
  transition: 0.5s;
  margin-top: 30px;
}
.admin_form_login form button:hover {
  background-color: rgb(11, 70, 107);
}
.admin_form_login .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.admin_form_login .logo img {
  width: 150px;
  margin-bottom: 20px;
}

#prijava {
  margin-right: 10px;
  border: 0;
}

#eye {
  border: 0;
  position: relative;
  top: 2px;
  display: none;
}
#divara {
  width: 90%;
  margin: 1rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
}
#divara h1 {
  font-weight: 800;
  padding-bottom: 1rem;
  font-size: 4rem;
}
#divara p {
  font-weight: 600;
  font-size: 1rem;
  width: 60%;
}
#divara h1 span {
  color: #ff598e;
}

.pogledaj_vise1 {
  position: relative;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #8324f0, #bd13d4, #e310cb);
  font-weight: 500;
  border-radius: 25px;
  padding: 0.7rem 1.7rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  z-index: 1;
  display: inline-block;
}

.pogledaj_vise1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #5702b9, #9f00b4, #e310cb);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 25px;
}

.pogledaj_vise1:hover::before {
  opacity: 1;
}
#levo {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 1rem 4rem;
}
#desnoo {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: black;
}
#desnoo h1 {
  font-size: 4rem;
  font-weight: 800;
  padding-left: 1.5rem;
}
#videodiv {
  width: 100%;
  padding-right: 4rem;
  width: 100%;
  display: flex;
  height: calc(100vh - 5.5rem);
}

#lijevislikaplaceholder iframe {
  width: 100%;
  height: 100%;
  border-radius: 3rem;
}

#lijevislikaplaceholder {
  width: 100%;
  height: 70%;
  background-size: cover;
  background-position: center;
  border-radius: 3rem;
  position: relative;

  background-color: #000000;
}
#brojke {
  width: 100%;
  display: flex;
}

#brorjkelijvo,
#brorjkedesno {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#broj {
  font-size: 2.7rem;
  font-weight: 900 !important;
}
#brojke span {
  font-weight: 600;
  background: linear-gradient(90deg, #8324f0, #bd13d4, #e310cb);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

#brojke p {
  color: #333; /* Boja teksta za paragrafe */
}
span a {
  text-decoration: none;
  background: linear-gradient(90deg, #8324f0, #bd13d4, #e310cb);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}
#onama {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#onamaljudi {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50vh;

  padding: 0rem 4rem;
}
#onamaljudidesno {
  width: 50%;
}
#onamaljudilijevo {
  width: 50%;
  display: flex;
  flex-direction: column;
}
#onamaljudilijevo p {
  padding-right: 3rem;
}
#onamaljudidesno img {
  width: 100%;
  border-radius: 1.5rem;
}
#onama h1 span {
  text-decoration: none;

  background: linear-gradient(90deg, #8324f0, #bd13d4, #e310cb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
  text-transform: uppercase;
}

.saznajviseonama {
  text-decoration: none;
  color: black;
  font-weight: 700;
  width: 9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem; /* mali razmak između teksta i slike */
  transition: color 0.3s ease;
}

.saznajviseonama img {
  transition: transform 0.3s ease;
}

.saznajviseonama:hover img {
  transform: translateX(5px); /* pomakni sliku 5px udesno na hover */
}

#onamapodcast {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50vh;
  padding: 6rem 4rem 0rem;
}
#onamapodcastlijevo {
  width: 50%;
}
#onamapodcastlijevo img {
  width: 100%;
  border-radius: 1.5rem;
}
#onamapodcastudesno {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-left: 4rem;
}
#najnovijeepizode {
  padding: 6rem 0rem 0.5rem;
  min-height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#najnovijeepizode h1 {
  font-weight: 800;
  color: #000;
  padding: 1rem;
  font-size: 3rem;
}
#epizodeplaceholder {
  width: 95%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#epizodakartica {
  width: 20rem;
  height: 25rem;
  margin: 2rem;
  background-color: #222;
  border-radius: 1.5rem;
}
#pozivnaakciju {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #8324f0, #bd13d4, #e310cb);
  color: white;
  padding: 3rem 1rem;
}
#pozivnaakciju h1 {
  font-weight: 800;
  font-size: 4rem;
}
#pozivnaakciju p {
  font-weight: 600;
  font-size: 1.4rem;
}
#pozivnaakcijugumb {
  border-radius: 2rem;
  background-color: white;
  text-decoration: none;
  color: #000;
  padding: 1rem 2.5rem;
}
#zaglavljegosti {
  width: 100%;
  display: flex;
  padding-top: 10rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#zaglavljegosti h1 {
  padding: 1rem;
  font-size: 4rem;
}
.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  height: 150vh;
  width: 70%;
  margin: 0 auto;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
#kartica-grid {
  border-radius: 1.5rem;
}
.div1 {
  grid-area: 1 / 1 / 3 / 4;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.div1 h1 {
  padding: 2rem 1rem 1rem;
  font-size: 3.5rem;
}
.div1 p {
  padding: 0rem 1rem 1rem;
  font-size: 1.2rem;
}
.div2 {
  grid-area: 1 / 4 / 4 / 6;
  background-image: url(../img/sredene/IMG_9911.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.div3 {
  grid-area: 3 / 1 / 5 / 4;
  background-image: url(../img/sredene/IMG_9895.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.div4 {
  grid-area: 4 / 4 / 7 / 6;
  background-image: url(../img/sredene/IMG_9939.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}
.div5 {
  grid-area: 5 / 1 / 7 / 4;
  background-image: url(../img/IMG_9908.jpg);
    background-size: cover;
  background-repeat: no-repeat;
 
}


.epizoda-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 10px;
}

.epizoda-container iframe {
    width: 400px;
    height: 300px;
    border-radius: 1.5rem;
    box-shadow: -1px 7px 55px 1px rgba(0, 0, 0, 0.396);
    margin-bottom: 10px;
}

.epizoda-container .epizoda-info {
    width: auto;
    align-items: center;
}
#sredina{
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 1rem 4rem; 
}  

#video-gl{
    width: 100%;
    height: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 3rem;
    position: relative;
   
    background-color: #000000;
}

#video-gl iframe{
    width: 100%;
    height: 100%;
    border-radius: 3rem !important; 
}

iframe{
    border-radius: 3rem !important;
}

  #desnoo h1{
    font-size: 4rem;
    font-weight: 800;
    padding-left: 1.5rem;
  }

#video-gldiv{
    background-color: #000000;
    width: 80%;
    height: 60vh;
    border-radius: 3rem;
    box-shadow: -1px 7px 55px 1px rgba(0, 0, 0, 0.396);
}

.video-gldivv {
  display: flex;
  justify-content: center;
  align-items: center;
}

  #videodiv{
    padding-right: 2rem;
    width: 100%;
    display: flex;
    height: calc(100vh - 5.5rem);
    
  }

  .info-svee {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #info-cont{
    height: auto;
    background-color: #dbdbdb; 
    border-radius: 2rem;
    padding: 3rem;
    width: 80%;
    margin-bottom: 20px;
  }
  #drugidio{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  #gostprikaz{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .intervjuer-slika
  {
    border-radius: 50%;
    width: 60px;
    height: 60px;
  }
  #drustvenemrezeep{
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

.epizoda-video {
  width: 100%;
  height: 100%;
}
/* RESPONSIVNOST */

@media screen and (max-width: 1280px) {
  #epizode {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .parent{
    width: 94%;
    gap: 20px;
  }
  .parent h1{
    font-size: 3rem;
  }
  .parent p{
    font-size: 1rem;
  }
  .gosti-kartice {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .gosti-card {
    display: flex;
    flex-direction: column;
    box-shadow: -1px 7px 25px 1px rgba(0, 0, 0, 0.49);
    border-radius: 25px;
    height: 450px;
    width: 55%;
    margin: 30px;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    justify-content: flex-end; 
  }
  #divara h1 {
    font-size: 3rem;
  }
  #divara p {
    width: 80%;
  }
  #pozivnaakciju h1 {
    font-size: 3rem;
  }
.epizoda-container {
  margin: 10px;

}
.epizoda-container .epizoda-video {
  
  height: 30vh;
}
.epizoda-naslov{
  font-size: 1.4rem;
}
.epizoda-opis{
 font-size: 0.8rem;
}
}

.epizodakartica {
  background-color: #222;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  body,
  html {
    overflow-x: hidden;
  }
  header .tekst {
    width: 100%;
  }
  header .tekst h1 {
    font-size: 3.5rem;
  }
  
  .links {
    display: none; /* Hide links on mobile */
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
  }
  .links :nth-last-child(1) {
    margin-top: 30px;
     
  }
  #zaglavljegosti{
    padding: 6rem 1rem ;
  }
  #zaglavljegosti h1{
    font-size: 2.5rem;
  }
 
  .gosti-card{
    padding: 1rem;
    width: 100% !important;
    margin: 1rem 0rem !important;
    height: 350px !important;
  }
  .gosti-kartice{
    width: 100% !important;
    padding: 2rem;
  }
  .parent {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 40vh);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: auto;
    }
    
    .div1 { grid-area: 1 / 1 / 2 / 2; }
    .div2 { grid-area: 2 / 1 / 3 / 2; }
    .div3 { grid-area: 3 / 1 / 4 / 2; }
    .div4 { grid-area: 4 / 1 / 5 / 2; }
    .div5 { grid-area: 5 / 1 / 6 / 2; }
  .links a { 
    margin: 10px 0;
  }

  .hamburger {
    display: block; /* Show hamburger on mobile */
  }

  .links.active {
    display: flex; /* Show the menu when 'active' class is added */
  }
  footer {
    display: flex;
    background-color: black;
    padding: 50px;
    flex-direction: column;
  }

  footer .linkovi {
    display: flex;
    margin: 50px;
    flex-direction: column;
  }

  footer .linkovi a {
    text-align: center;
  }
  .kontakt_forma form {
    min-width: 50vw;
  }
  .nas_cilj p {
    font-size: 2rem;
    font-weight: 400;
    width: 100vw;
  }
  .nas_cilj-slika {
    display: none;
  }
  .carousel {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel ._1 {
    flex-direction: column;
    margin: 0;
  }
  .carousel ._1 .tekst {
    width: 100%;
    margin: 50px;
    padding: 50px;
  }
  .carousel ._1 .tekst h1 {
    font-size: 3rem;
    width: 100%;
  }
  .carousel ._1 .tekst p {
    font-size: 1.5rem;
  }
  .carousel ._1 .slika {
    width: 85%;
    height: 50vh;
  }
  .carousel ._2 {
    flex-direction: column;
    margin: 0;
  }
  .carousel ._2 .tekst {
    width: 100%;
    margin: 50px;
    padding: 50px;
  }
  .carousel ._2 .tekst h1 {
    font-size: 3rem;
    width: 100%;
  }
  .carousel ._2 .tekst p {
    font-size: 1.5rem;
  }
  .carousel ._2 .slika {
    width: 85%;
    height: 50vh;
  }
  .carousel ._3 {
    flex-direction: column;
    margin: 0;
  }
  .carousel ._3 .tekst {
    width: 100%;
    margin: 50px;
    padding: 50px;
  }
  .carousel ._3 .tekst h1 {
    font-size: 3rem;
    width: 100%;
  }
  .carousel ._3 .tekst p {
    font-size: 1.5rem;
  }
  .carousel ._3 .slika {
    width: 85%;
    height: 50vh;
  }
  .carousel-content a {
    white-space: nowrap;
  }
  .nova_sezona {
    display: flex;
    flex-direction: column;
    width: 90% !important;
    max-width: 600px;
    height: auto !important;
    top: 0 !important;
    margin: 10px auto !important;
    padding: 10px !important;
    background-color: white;
    box-shadow: none;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Onemogućavanje animacijskih transformacija */
  .nova_sezona.first,
  .nova_sezona.second,
  .nova_sezona.show {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Stil teksta unutar .nova_sezona */
  .nova_sezona .tekst {
    position: relative;
    z-index: 2;
    padding: 5px;
  }
  .nova_sezona .tekst h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    color: #000 !important;
    margin: 0;
  }
  .nova_sezona p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #000 !important;
  }
  .nova_sezona a {
    text-decoration: none;
    color: #000 !important;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 25px;
    padding: 5px 20px;
    display: inline-block;
    white-space: nowrap; /* sprječava prelamanje teksta */
  }

  /* Stil slike unutar .nova_sezona */
  .nova_sezona .slika {
    width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 10px;
    background-image: url("../img/1.jpg");
    background-position: center;
    background-size: cover;
  }

  /* Stilizacija .pridruzi_se sekcije */
  .pridruzi_se {
    display: flex;
    flex-direction: column;
    width: 90% !important;
    max-width: 600px;
    height: 50vh !important;
    top: 0 !important;
    margin: 70px auto !important;
    padding: 10px !important;
    background-color: white;
    box-shadow: none;
    opacity: 1 !important;
    transform: none !important;
  }
  .pridruzi_se .tekst {
    position: relative;
    z-index: 2;
    padding: 5px;
  }
  .pridruzi_se .tekst h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem !important;
    font-weight: 400;
    color: #000 !important;
    margin: 0;
  }
  .pridruzi_se a {
    text-decoration: none;
    color: #000 !important;
    font-size: 1rem;
    font-weight: bold;
    margin: 10px;
    border: 2px solid #000;
    border-radius: 25px;
    padding: 5px 20px;
    display: inline-block;
    white-space: nowrap;
  }
  .epizode-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sezona-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #divara p {
    font-size: 0.8rem !important;
    width: 100% !important;
  }
  #divara h1 {
    font-size: 2rem !important;
  }
  #videodiv {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  #levo {
    width: 100%;
    padding: 0;
    padding-bottom: 0.5rem;
    align-items: end;
  }
  #lijevislikaplaceholder {
    height: 80%;
  }
  #desnoo {
    width: 100%;
    height: auto;
    justify-content: start;
    align-items: start;
  }
  #desnoo h1 {
    font-size: 3.2rem;
    padding: 1rem;
  }
  #broj {
    font-size: 2rem;
  }
  #brojke p {
    font-size: 0.7rem;
  }
  #onamaljudi {
    flex-direction: column;
    padding: 1rem;
  }
  #onamaljudilijevo {
    width: 100%;
    padding: 1rem;
  }
  #onamaljudilijevo p {
    padding: 0px;
  }
  #onamaljudidesno {
    width: 100%;
    padding: 1rem;
  }
  #onamapodcast {
    width: 100%;
    flex-direction: column-reverse;
    padding: 1rem;
  }
  #onamapodcastlijevo {
    width: 100%;
    padding: 1rem;
  }
  #onamapodcastudesno {
    width: 100%;
    padding: 1rem;
  }
  #najnovijeepizode {
    padding: 6rem 0.5rem 0.4rem;
    min-height: 50vh;
    width: 100%;
    text-align: center;
  }
  #onama {
    margin-top: 5rem;
  }
  #pozivnaakciju h1 {
    font-size: 2.3rem !important;
  }
  #epizodeplaceholder{
    width: 100%;
    flex-direction: column;
    height: auto;
  }
.epizoda-container {
  width: 100%;
  padding: 1rem;
}
.epizoda-container .epizoda-video{
  height: 40vh;
}

.epizoda-info{
  text-align: left;
}
}
@media screen and (max-width: 600px) {
  #divara h1 {
    font-size: 1.9rem;
  }
  #najnovijeepizode h1 {
    font-size: 2.5rem;
  }
  #lijevislikaplaceholder {
    height: 70%;
  }
  #pozivnaakciju h1 {
    font-size: 1.7rem !important;
  }
  #pozivnaakciju p {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 480px) {
  nav {
  padding: 10px 10px;

}
  #divara h1 {
    font-size: 1.5rem !important;
  }
  #divara p {
    font-size: 0.7rem !important;
  }
  #desnoo h1 {
    font-size: 2.6rem;
    padding: 1rem;
  }
  #broj {
    font-size: 1.7rem;
  }
  #brojke p {
    font-size: 0.6rem;
  }
  .epizoda-container .epizoda-video{
  height: 30vh;
}

}
/* Dodajte ovo u svoj CSS fajl (npr. public/css/styles.css) */

.pagination {
  text-align: center;
  margin: 30px 10px;
}

.pagination a {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  background-color: #eee;
  color: #333;
  text-decoration: none;
  border-radius: 50%;
}
.pagination p {
  background-color: red;
  text-decoration: none;
}
.pagination a.active {
  background-color: #333;
  color: #fff;
  font-weight: 600;
}
.pagination a.active:hover {
  background-color: rgb(97, 97, 97);
}
.pagination a:hover {
  background-color: #ccc;
}
