.text-section {
  padding: 50px 20px;
  background-color: #ffffff;
  font-family: sans-serif;
}

.text-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #222;
}

.text-container h1 {
  font-size: 36px; /* smanjeno sa 44px */
  text-align: center;
  margin-bottom: 18px;
  color: #0a1c3d;
}

.text-container .subtitle {
  text-align: center;
  font-size: 18px; /* smanjeno sa 22px */
  color: #666;
  margin-bottom: 45px;
}

.text-container h2 {
  font-size: 26px; /* smanjeno sa 32px */
  margin-top: 45px;
  color: #0a1c3d;
}

.text-container p {
  font-size: 17px; /* smanjeno sa 20px */
  line-height: 1.8;
  margin-top: 12px;
}

/* Adaptacija stana - layout */
.adaptacija-stana {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.adaptacija-tekst {
  flex: 1;
}

.adaptacija-slika {
  flex: 1;
}

.adaptacija-slika img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Proces saradnje */
.proces-saradnje-blok {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 45px 0;
  flex-wrap: wrap;
}

.proces-tekst {
  flex: 1;
  padding: 0 20px;
}

.proces-slika {
  flex: 1;
}

.proces-slika img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* FAQ sekcija */
.faq-section {
  max-width: 1200px;
  margin: 45px auto;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 26px; /* smanjeno sa 30px */
  margin-top: 45px;
  color: #0a1c3d;
  text-align: center;
  margin-bottom: 35px;
}

.faq-item {
  margin-bottom: 25px;
}

.faq-item h3 {
  font-size: 19px; /* smanjeno sa 22px */
  color: #0a1c3d;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 16px; /* smanjeno sa 19px */
  line-height: 1.8;
  color: #444;
}

/* CTA dugme */
.cta-button {
  display: inline-block;
  background-color: #0a1c3d;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #122b5d;
}

/* Responsive */
@media (max-width: 768px) {
  .text-container,
  .proces-tekst,
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-container h1 {
    font-size: 28px;
  }

  .text-container h2,
  .faq-section h2 {
    font-size: 22px;
  }

  .text-container p,
  .faq-item p,
  .faq-item h3 {
    font-size: 16px;
  }

  .adaptacija-stana,
  .proces-saradnje-blok {
    flex-direction: column;
  }

  .cta-button {
    font-size: 16px;
  }
}
#language-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2463eb;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulsating 4s ease-in-out infinite;
  z-index: 9999;
}

#phone {
  color: white;
  font-size: 24px;
  display: block;
  text-align: center;
  line-height: 60px; /* Adjust based on the button height */
}

@keyframes pulsating {
  0% {
    transform: scale(1);
    box-shadow: #2463eb;
  }
  50% {
    transform: scale(1.1);
    box-shadow: #2463eb;
  }
  100% {
    transform: scale(1);
    box-shadow: #2463eb;
  }
}
#language-toggle:hover {
  background-color: #2463eb;
}

#language-toggle.clicked {
  background-color: #2463eb;
}

.galerija-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.galerija-naslov {
  text-align: center;
  font-size: 30px;
  color: #0a1c3d;
  margin-bottom: 40px;
}

.galerija-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.galerija-grid img {
  width: 100%;
  height: 260px; /* ista visina */
  object-fit: cover; /* seče i uvećava sliku da lepo stane */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.galerija-grid img:hover {
  transform: scale(1.04);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .galerija-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .galerija-grid img {
    height: 220px;
  }
}

.tema-sekcija {
  background-color: #ffffff;
  margin: 60px 0;
}

.tema-slika img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.tema-sadrzaj {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  color: #222;
}

.tema-sadrzaj h2 {
  font-size: 32px;
  color: #0a1c3d;
  margin-bottom: 24px;
}

.tema-sadrzaj h3 {
  font-size: 24px;
  color: #0a1c3d;
  margin-top: 36px;
  margin-bottom: 16px;
}

.tema-sadrzaj p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .tema-slika img {
    height: 220px;
  }

  .tema-sadrzaj h2 {
    font-size: 26px;
  }

  .tema-sadrzaj h3 {
    font-size: 20px;
  }

  .tema-sadrzaj p {
    font-size: 16px;
  }
}
