@font-face {
  font-family: 'Darwin Pro';
  src: url('fonts/darwin-pro/DarwinPro-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Darwin Pro';
  src: url('fonts/darwin-pro/DarwinPro-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Darwin Pro';
  src: url('fonts/darwin-pro/DarwinPro-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Darwin Pro';
  src: url('fonts/darwin-pro/DarwinPro-BoldItalic.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
}

body {
  margin: 0;
  font-family: 'Darwin Pro', sans-serif !important;
}


header {
  background: #fff;
  border-top: 5px solid #f5480c;
  display: flex;
  justify-content: center; /* Centriramo sadržaj unutar header-a */
  align-items: center;
  padding: 15px 50px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1920px; /* Ograničavamo širinu */
  margin: 0 auto;
  padding: 0 20px; /* Održavaj padding za simetričnost */
}

/* Leva strana: logo i tagline */
.logo-container {
  display: flex;
  align-items: center;
  flex: 1;
}

/* Logo */
.logo {
  height: 70px;
  margin-left: 0px; /* Poravnava levu ivicu sa početkom crtice u slideru */
}

/* Tagline */
.tagline {
  margin-left: 20px;
  font-size: 20px;
  color: #f5480c;
  font-weight: normal;
}

/* Desna strana: Društvene ikonice */
.social-icons {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: flex-end; /* Postavlja ikonice skroz desno */
}

.social-icons img {
  width: 30px; /* Veličina ikonica */
  height: auto;
}

.hero {
  text-align: center;
  position: relative;
  padding-top: 20px;
}

.hero-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1920px;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 20px; /* Indikatori u donjem levom uglu */
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.slider-line {
  width: 30px;
  height: 5px;
  background: #f5480c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background: gray;
  border-radius: 50%;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.slider-indicators .active {
  background: #f5480c;
  width: 30px; /* Crtica veća kada je aktivna */
  height: 5px;
  border-radius: 2px;
}

.info {
  text-align: center;
  padding: 50px 0;
}

.info .container {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

/* Omot za 50:50 raspodelu */
.text-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  text-align: left;
  gap: 20px;
}

/* Leva strana (naslov, active.png, dugme, divider, tekst) */
.left-content {
  flex: 1;
  width: 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Postavlja sadržaj levo */
  margin-left: 40px; /* Poravnanje sa levom ivicom */
}

/* Naslov */
.left-content h1 {
  font-size: 50px;
  color: #f5480c;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: left; /* Naslov poravnat levo */
  margin-left: 0; /* Sprečava dodatno pomeranje */
}

/* Active Defense slika */
.active-image {
  display: block;
  margin: 15px 0; /* Održava razmak ispod slike */
}

/* Dugme */
.rounded-button {
  background: #f5480c;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 6px; /* Oborene ivice */
  width: 248px; /* Tačna širina */
  height: 85px; /* Tačna visina */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 10px 0; /* Pomeranje ispod slike */
  transition: background 0.3s;
  text-transform: uppercase;
  font-weight: normal;
}

.rounded-button:hover {
  background: #d63e08;
}

/* Sivi divider */
.divider {
  width: 70%;
  height: 2px;
  background: #ccc;
  margin: 10px 0;
}

/* Tekst ispod */
.text-content {
  text-align: left;
  font-size: 20px;
  color: #002f6c;
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

/* Desna strana (slika psa i mačke) */
.right-content {
  flex: 1;
  width: 50%;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
}

.dog-cat-image {
  max-width: 600px;
  display: block;
}

/* Providni razmak */
.spacer {
  height: 5px;
  width: 100%;
  background: transparent;
}

/* Ikone sa opisima */
.icons-container {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.icon-box {
  text-align: center;
  width: 33.33%;
}

.icon-box img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.icon-box p {
  font-size: 30px;
  font-weight: normal;
  color: #002f6c;
  margin-top: 10px;
}

.defense {
  width: 100%;
  display: flex;
  justify-content: center;
}

.defense-image {
  width: 100%;
  height: auto;
  display: block;
}


.microbiota-info {
  background: #f7fbff;
  padding: 50px 0;
  text-align: center;
}

.microbiota-info .container {
  max-width: 1200px;
  margin: 0 auto;
}

.microbiota-info h2 {
  font-size: 28px;
  color: #002f6c;
  font-weight: bold;
  text-transform: uppercase;
}

.microbiota-info h2 .highlight {
  color: #6ac6dc;
}

.microbiota-info .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.microbiota-info .left-content, 
.microbiota-info .right-content {
  width: 48%;
  text-align: left;
}

.bold-text {
  font-size: 32px;
  font-weight: bold;
  color: #002f6c;
}

.highlight-text {
  color: #6ac6dc;
  font-weight: bold;
}
/*
.microbiota-info {
  background: #f7fbff;
  padding: 50px 0;
  text-align: center;
}

.microbiota-info .container {
  max-width: 1200px;
  margin: 0 auto;
}

.microbiota-info h2 {
  font-size: 32px;
  color: #002f6c;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
}

.microbiota-info h2 .highlight {
  color: #6ac6dc;
}

.microbiota-info .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.microbiota-info .left-content, 
.microbiota-info .right-content {
  width: 48%;
  text-align: left;
}

.bold-text {
  font-size: 32px;
  font-weight: bold;
  color: #002f6c;
}

.highlight-text {
  color: #6ac6dc;
  font-weight: bold;
}

.microbiota-info ul {
  list-style: none;
  padding: 0;
}

.microbiota-info ul li {
  font-size: 16px;
  color: #002f6c;
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
}

.microbiota-info ul li::before {
  content: "•";
  color: #6ac6dc;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 2px;
}

.microbiota-info .left-content img,
.microbiota-info .right-content img {
  width: 100%;
  margin-top: 20px;
  display: block;
}
*/
.faq {
  background: url('images/Base.png') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  text-align: center;
}

.faq .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 28px;
  color: #f5480c;
  font-weight: bold;
  margin-bottom: 30px;
}

.faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.faq-question {
  background: white; /* Neaktivna pitanja ostaju bela */
  border: none;
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  color: #002f6c; /* Tamnoplava boja teksta */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.faq-item.open .faq-question {
  background: #f5480c; /* Samo aktivno pitanje bude narandžasto */
  color: white; /* Bela slova na aktivnom pitanju */
}

.faq-question .icon {
  font-size: 20px;
  color: #002f6c; /* Ikonica tamnoplava kad nije aktivno */
  transition: transform 0.3s ease, color 0.3s ease-in-out;
}

.faq-item.open .faq-question .icon {
  color: white; /* Bela ikonica kada je pitanje otvoreno */
  transform: rotate(180deg);
}

.faq-answer {
  padding: 15px;
  display: none;
  font-size: 16px;
  color: #494949; /* Crni tekst odgovora */
  background: white; /* Bela pozadina odgovora */
  text-align: left;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question .icon {
  transform: rotate(180deg);
}

.faq-item:first-child {
  background: white;
}

.faq-item:first-child .faq-question {
  color: white;
}

.faq-item:first-child .faq-answer {
  color: white;
}

.faq-item:first-child .icon {
  color: white;
}

.question {
  background: white;
  padding: 20px;
  margin: 10px 0;
  border-radius: 5px;
}
.mikrobiota-info {
  text-align: center; /* Centriranje slike */
  padding: 30px 5%; /* Gornji/donji razmak + levo/desno 5% širine ekrana */
}

.mikrobiota-image {
  max-width: 90%; /* Ograničava širinu slike unutar kontejnera */
  height: auto;
  display: block;
  margin: 40px auto;
}
/* Osigurava da sve slike budu responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Poboljšano skaliranje za hero sliku */
.hero-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Osigurava da se slike u tekst-sekcijama ne prelivaju */
.text-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Poboljšano skaliranje za slike pasa i mačaka */
.dog-cat-image {
  max-width: 100%;
  height: auto;
}


/* Stilovi za mobilne uređaje */
@media (max-width: 768px) {
  .hero-image-container {
    padding: 0 10px; /* Ostavlja prostor sa strane */
  }

  .text-image-wrapper {
    flex-direction: column; /* Stavlja slike ispod teksta na manjim ekranima */
    text-align: center;
  }

  .left-content, .right-content {
    width: 100%; /* Širina sekcija je 100% na mobilnim */
    max-width: 100%;
    margin-left: 0;
    align-items: center;
  }

  .left-content h1 {
    font-size: 32px; /* Smanjuje veličinu naslova na manjim ekranima */
    text-align: center;
  }

  .rounded-button {
    width: 90%; /* Dugme se prilagođava ekranu */
    height: auto;
    padding: 15px;
    font-size: 18px;
  }

  .divider {
    width: 80%; /* Divider se širi za bolji prikaz */
  }

  .dog-cat-image {
    max-width: 90%;
    margin: 0 auto;
  }

  .icon-box {
    width: 100%; /* Ikone idu u jednu kolonu na mobilnim uređajima */
    margin-bottom: 10px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  /* Header sekcija */
  header .container {
    flex-direction: column; /* Prebacuje elemente jedan ispod drugog */
    text-align: center;
  }

  /* Logo centriran */
  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    max-width: 80%; /* Smanjuje logo na mobilnim uređajima */
    height: auto;
    margin: 10px 0;
  }

  /* Tagline centriran */
  .tagline {
    font-size: 18px;
    text-align: center;
    margin: 10px 0;
  }

  /* Društvene mreže ispod logoa */
  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .social-icons a img {
    width: 32px; /* Povećava veličinu ikonica za bolji prikaz */
  }
}
/* ✅ BONSU: Fleksibilan raspored ikonica u istom redu */
.icons-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.icon-box {
  width: 32%;
  max-width: 32%;
  text-align: center;
  background-color: #fff;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
}

/* Desktop veličina ikonice (originalna) */
.icon-box img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}


.icon-box p {
  font-size: 16px;
  color: #002f6c;
  margin: 0;
  line-height: 1.3;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ✅ VEĆI SLIDER NA MOBILNIM */
.hero-image-container img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
}

/* Za mobilne posebno: */
@media (max-width: 768px) {
  .icons-container {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    padding: 0 10px;
  }

  .icon-box {
    width: 32%;
    max-width: 32%;
  }

  .icon-box img {
    width: 80px;
    height: 80px;
  }

  .icon-box p {
    font-size: 14px;
    min-height: 2.8em;
  }

  /* Hero image više prostora na mobilnim */
  .hero-image-container {
    height: auto;
  }

  .hero-image-container img {
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
  }

  .slider-indicators {
    bottom: 10px;
    left: 10px;
    transform: scale(1.2);
  }
}
/*BUTTON ANIMACIJA*/

.cta-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.btn-shine {
  position: relative;
  font-family: 'Darwin Pro', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 48px;
  border-radius: 30px;
  text-align: center;
  white-space: nowrap;

  /* Tekst shine efekat */
  background: linear-gradient(to right, #f5480c 0%, #ffffff 20%, #002f6c 40%, #f5480c 60%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;

  /* Border efekat */
  border: 2px solid transparent;
  background-origin: border-box;
}

.btn-shine::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(to right, #f5480c, #ffffff, #002f6c, #f5480c);
  background-size: 200% auto;
  animation: shine 3s linear infinite;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

@keyframes shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@media (min-width: 992px) {
  .btn-shine {
    font-size: 40px; /* ili npr. 24px ako želiš još veće */
    padding: 16px 60px; /* proporcionalno povećanje paddinga */
  }
}


