/*
Theme Name: Panorama Pool Hills
Theme URI: https://www.njami.in.rs/
Author: Sandra Balog
Author URI: https://www.instagram.com/njaminovi_sad/
Description: Custom WordPress tema za Panorama Pool Hills – priroda, bazen i privatnost.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: panorama-pool-hills
Tags: custom, minimal, clean, responsive
*/
@import url('mediaquery.css');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carattere&family=Petit+Formal+Script&family=Style+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
  --green: #08443a;
  --orange: #f3c67c;
  --light-background: #fceee6;
  --text-colot: #c28052;
  --p-color: #6b6b6b;
  --cursive-font: 'Style Script', cursive;
  --serif-font: 'Carattere', cursive;
  --font: 'Petit Formal Script', cursive;
  --font-grate-vibes: 'Great Vibes', cursive;
}

/* RESET I OSNOVNO */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body,
button,
input,
textarea {
  font-family: 'Poppins', sans-serif;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  width: 100%;
}

/* GLOBALNA KONTEJNERSKA KLASA */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}
.hidden {
  display: none;
}
/* NASLOVI */
h1 {
  font-size: 4rem;
  color: var(--white);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}
.title,
.title-mapa {
  color: var(--green);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.title-mapa {
  margin-top: 0;
  margin-bottom: 2rem;
}
.cursive {
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 600;
  padding: 1rem 0;
}

header {
  position: relative;
  z-index: 100;
}
.social-label {
  display: none;
}
/* Početno stanje za mobilni meni */
#mobileMenu {
  display: none;
  flex-direction: column;
  background-color: white;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 20px;
  transition: all 0.3s ease-in-out;
   margin-top: -9px;
}

/* Kad klikneš hamburger */
#mobileMenu.active {
  display: flex;
}

/* Hamburger ikonica može da se transformiše (opciono) */
#hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

#hamburger span {
  height: 3px;
  width: 25px;
  background: #114232;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Kada je hamburger otvoren (opciono animacija) */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: center;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: center;
}

@media (min-width: 901px) {
  #mobileMenu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background: none;
    padding: 0;
    width: auto;
    box-shadow: none;
   
  }

  #hamburger {
    display: none;
  }
}

/* NAVIGACIJA */
.navbar-wrapper {
  background-color: #fceee6;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
}
.left-nav {
  display: flex;
  align-items: center;
}
.custom-logo {
  height: 90px;
  width: auto;
}
.brand-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 10px;
  color: #184f39;
}
.right-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links li a {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  text-align: center;
}
.nav-links li a:hover {
  color: #d78b60;
}
.book-now a {
  background-color: #f3c67c;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.book-now a:hover {
  background-color: #c37449;
}
.language-switcher a {
  margin-left: 10px;
  color: #184f39;
  font-weight: 600;
  transition: color 0.3s ease;
}
.language-switcher a:hover {
  color: #f3c67c;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('./img/bazen/lendscape.png') bottom/cover no-repeat;
  padding: 200px 20px;
  color: #fff;
}
h1 span {
  color: var(--orange);
}
.hero-content {
  max-width: 700px;
}
.hero-section h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 20px;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
.hero-buttons a {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}
.btn-orange {
  background-color: #f3c67c;
  color: white;
}
.btn-darkgreen {
  background-color: #0e4a3b;
  color: white;
}

/* INFO SLIDER SECTION */
.info-slider-section {
  background: #fceee6;
  padding: 60px 20px;
  text-align: center;
}
.info-slider-section h2 {
  font-size: 54px;
  color: #114232;
  margin-bottom: 40px;
}
.info-slider-section h2 span {
  color: #c28052;
}
.slide-text h3 {
  font-size: 36px;
  color: #114232;
  margin-bottom: 20px;
}
.slide-text h3 span {
  font-size: 34px;
  color: #114232;
}
.slide-text h3 strong {
  font-size: 32px;
  color: #c28052;
}
.slide-text p {
  margin: 20px 0;
  color: #6b6b6b;
}
.slider-wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  margin-top: 40px;
  display: flex;
  align-items: center;
  height: auto; /* ili precizno ako znaš npr. height: 310px; */
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin: 0 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  text-align: left;
}
.slide img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
}
.slide-text {
  width: 60%;
}
.arrow {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  background-color: #114232;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.arrow:hover {
  background-color: #c28052;
}

.arrow.left {
  left: -10px;
}

.arrow.right {
  right: -10px;
}

.arrow .icon {
  width: 24px;
  height: 24px;
}
.slider-progress {
  margin-top: 20px;
  height: 10px;
  background: #e6e6e6;
  border-radius: 6px;
  overflow: hidden;
}
.slider-progress .bar {
  height: 100%;
  width: 0%;
  background: #c28052;
  transition: width 0.4s ease;
}
/* === INTRO SLIDER SECTION === */
.intro-showcase-section {
  background: #fff;
  padding: 0 0 90px 0;
}
.intro-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fdfdfd;
}

.slider-container-ps {
  position: relative;
  height: 80vh;
  width: 100%;
}
.overlay-text-ps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.slider-container-ps .slide-ps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slider-container-ps .slide-ps.active {
  opacity: 1;
  z-index: 2;
}

/* === CARD SECTION === */
.cards-wrapper {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 1000;
  margin-top: -140px !important;
}
.cards-header {
  margin-bottom: 20px;
}
.cards-header h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--green);
}

.cards-section-ps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card-ps {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.card-img-wrapper {
  position: relative;
}

.card-ps img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  font-weight: 500;
}

.card-content {
  padding: 15px;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: left;
}
.link-underline {
  display: inline-block;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--p-color);
  position: relative;
  padding-bottom: 5px;
  font-family: Arial, sans-serif;
  font-weight: 300;
}

.link-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: var(--p-color);
  color: var(--green);
  transition: all 0.3s ease;
}

.link-underline:hover::after {
  width: 40%;
  left: 30%;
}

.overlay-text-ps h2 {
  font-size: 5rem;
  color: var(--green);
}
.overlay-text-ps p {
  color: var(--p-color);
}
.plan-button {
  display: inline-block;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--p-color);
  margin: 20px;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  font-family: 'Arial', sans-serif;
}

.plan-button::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--p-color);
  transition: width 0.4s ease;
}
.plan-button:hover {
  color: var(--green);
}
.plan-button:hover::after {
  width: 0%;
}
.amenities-scroller {
  background: #fff;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: -60px auto 0;
  padding: 20px 0;
  max-width: 1200px;
  position: relative;
  text-align: center;
}
.amenities-scroller h3 {
  font-size: 15px;
  color: var(--p-color);
  font-weight: 300;
  margin-bottom: 20px;
}
.amenities-wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.amenities-track {
  display: flex;
  gap: 40px;
  animation: scrollAmenity 30s linear infinite;
  width: max-content;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  color: #114232;
  font-size: 13px;
  text-align: center;
}

.amenity-item i {
  font-size: 24px;
  margin-bottom: 6px;
}

@keyframes scrollAmenity {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.gallery-section {
  background-color: #fff;
  padding: 60px 0;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #114232;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Tri kolone */
  gap: 10px; /* Razmak između slika */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.masonry-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3; /* iste proporcije */
  object-fit: cover; /* lepo popuni okvir */
  border: 4px solid #fff;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  .masonry-gallery {
    column-count: 1;
  }
}
.close,
.prev,
.next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.close {
  top: 20px;
  right: 30px;
  font-size: 40px;
  transform: none;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}
.cta-section {
  background-color: #114232;
  padding: 60px 20px;
  color: white;
  font-family: sans-serif;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.cta-box.right {
  background-color: white;
}
.cta-box.left {
  color: #fff;
}
.cta-box {
  color: #114232;
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  min-width: 280px;
}

.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #bb7b59;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #a96644;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-form input[type='email'],
.cta-form textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: vertical;
  font-family: inherit;
}

.cta-form textarea {
  min-height: 120px;
}
.footer {
  background-color: #114232;
  color: white;
  font-family: sans-serif;
  padding: 60px 20px 30px;
}

.footer-container {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.footer-socials {
  margin-top: 20px;
}
.footer-socials a {
  color: white;
  margin-right: 10px;
  font-size: 1.2rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #bb7b59;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  padding-top: 20px;
}

.footer-credit a {
  color: #bb7b59;
  text-decoration: none;
}
.policy-section,
.about-us-section,
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #12342b;
}

.policy-title,
.about-us-title,
.contact-title {
  font-weight: bold;
  font-size: 48px;
  color: #003f2d;
  margin-bottom: 10px;
  text-shadow: none;
}

.last-updated {
  font-style: italic;
  color: #666;
  margin-bottom: 30px;
}

.policy-section h3 {
  color: #3b4c3e;
  margin-top: 30px;
}

.policy-section ul {
  margin-left: 20px;
  list-style: disc;
}

.policy-section p,
.policy-section ul li {
  font-size: 16px;
  line-height: 1.6;
}
.about-us-section p {
  padding: 30px 0;
}
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: var(--orange); /* Zelena */
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

#scrollToTopBtn .icon {
  width: 100%;
  height: 100%;
  display: block;
}

#scrollToTopBtn:hover {
  background-color: #218838; /* Tamnija zelena */
}
.call-to-action-section {
  margin-bottom: 30px;
  padding: 40px 20px;
}
.call-to-action-section .btn-orange {
  padding: 20px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-right: 10px;
}
.call-to-action-section .btn-darkgreen {
  padding: 20px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
}
.call-to-action-section .btn-orange:hover {
  background-color: #bb7b59;
}
.call-to-action-section .btn-darkgreen:hover {
  background-color: #003f2d;
}
.call-to-action-section h2 {
  color: var(--green);
}
.socials a i {
  color: var(--green) !important;
  font-size: 1.5rem;
  padding: 0 10px;
}
.inquiry-section {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #1d3b34;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

.inquiry-section h1 {
  font-size: 36px;
  font-weight: bold;
  color: #064b3c;
  margin-bottom: 5px;
  text-shadow: none;
}

.update-date {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.inquiry-form {
  background: #f7f9f8;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #cfded9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #064b3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #b8d5cc;
  background-color: #ffffff;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #64a896;
  box-shadow: 0 0 0 3px rgba(100, 168, 150, 0.2);
}

.btn-clean {
  background-color: #f7a941 !important;
  color: #fff !important;
  padding: 12px 24px !important;
  font-size: 16px !important;
  border-radius: 30px !important;
  border: none !important;
  cursor: pointer !important;
  font-weight: bold !important;
}

.btn-clean:hover {
  background-color: var(--green) !important;
}
.filter-btn {
  background-color: #f7a941 !important;
  color: #fff !important;
  padding: 12px 24px !important;
  font-size: 16px !important;
  border-radius: 30px !important;
  border: none !important;
  cursor: pointer !important;
  font-weight: bold !important;
  margin-right: 10px;
}
.filter-btn:hover {
  background-color: var(--green) !important;
}
.filter-btn.active {
  background-color: var(--green) !important;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.preview-section {
  padding: 60px 20px;
  background-color: #fbf2ed;
  text-align: center;
}

.preview-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #003f2d;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.preview-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  width: 100%;
  max-width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.preview-card:hover {
  transform: translateY(-5px);
}

.preview-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.preview-card h4 {
  margin: 10px 0 10px;
  color: #003f2d;
  font-size: 1.2rem;
}

.preview-card ul {
  padding-left: 20px;
  color: #666;
  font-size: 0.95rem;
  list-style: disc;
  margin: 0;
}

.center-button {
  margin-top: 30px;
}

.center-button .cta-button {
  background-color: #e6a756;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
  display: inline-block;
}

.center-button .cta-button:hover {
  background-color: #d88d2f;
}
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 8px;
}

.pagination button {
  padding: 8px 14px;
  border: 1px solid #ccc;
  background-color: white;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.pagination button:hover {
  background-color: #eee;
}

.pagination button.active {
  background-color: var(--green);
  color: white;
  font-weight: bold;
}
.blog-section .pagination {
  margin: 30px 0;
}

.okolina-wrapper {
  text-align: center;
  padding: 30px 0;
}
.main-image {
  width: 100%;
  max-width: auto;
  height: 400px; /* možeš promeniti visinu po želji */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* popunjava okvir, seče višak */
  display: block;
}

.okolina-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
.okolina-thumb {
  width: 100px;
  cursor: pointer;
  border: 2px solid transparent;
}
.okolina-thumb:hover {
  border: 2px solid orange;
}
.okolina-info {
  min-height: 150px; /* prilagodi po potrebi, npr. 180px */
  max-height: 150px;
  overflow: hidden;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.okolina-info h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.okolina-info p {
  line-height: 1.5;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.google-review-section {
  padding: 40px 0;
  font-family: 'Arial', sans-serif;
}

.review-header {
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;

  margin-bottom: 30px;
}

.review-left h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #202124;
}

.google-logo {
  color: #4285f4;
  font-weight: bold;
}

.stars-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  margin-top: 5px;
  color: #333;
}

.stars {
  color: #fbbc04;
  font-size: 1.2rem;
}

.review-count {
  color: #666;
  font-size: 1rem;
}

.review-button {
  background-color: #4285f4;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.review-button:hover {
  background-color: #3367d6;
}

.review-widget {
  text-align: center;
}
/* Ispravi širinu Trustindex widgeta */
.review-widget,
.review-widget > div,
.review-widget .ti-widget-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* Stilizuj pojedinačne kartice da stanu više njih u jedan red */
.review-widget .ti-col-4 {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Stil za svaku karticu */
.review-widget .ti-slide {
  flex: 1 1 calc(25% - 20px); /* 4 kartice po redu sa razmakom */
  max-width: calc(25% - 20px);
  box-sizing: border-box;
  min-width: 250px;
}
.single-blog {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-header {
  margin-bottom: 20px;
  text-align: center;
}

.blog-title {
  font-size: 2.5rem;
  color: #184f39;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 0.95rem;
  color: #888;
}

.blog-image img {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
}

.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease-in-out;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-content {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-content h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.blog-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  margin-top: auto;
  color: #114232;
  font-weight: bold;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}
.pagination a {
  padding: 8px 12px;
  background-color: #f3c67c;
  color: #fff;
  margin: 0 5px;
  border-radius: 5px;
  text-decoration: none;
}
.pagination a:hover {
  background-color: #d78b60;
}
.home-blog-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #114232;
}

.home-blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;

  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px; /* ili više ako treba */
}

.home-blog-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.home-blog-card img.home-blog-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-blog-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-blog-info h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.home-blog-meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.home-blog-info p {
  flex-grow: 1;
  margin: 0 0 15px;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.read-more {
  color: #114232;
  font-weight: bold;
  display: inline-block;
  margin-top: auto;
}
.home-blog-slider {
  padding: 50px 0;
  background-color: #fff;
  position: relative;
}

.home-blog-title {
  text-align: center !important;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #114232;
}

.home-blog-carousel {
  display: flex;
  gap: 20px;
}

.home-blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.home-blog-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.home-blog-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-blog-info h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.home-blog-categories {
  margin-bottom: 10px;
}
.home-blog-categories span {
  color: #d946ef;
  font-size: 0.9rem;
  margin-right: 8px;
}

.home-blog-meta {
  font-size: 0.9rem;
  color: #999;
  margin: 10px 0;
}

.home-blog-author {
  font-size: 0.85rem;
  color: #e91e63;
  margin-bottom: 10px;
}

.read-more {
  margin-top: auto;
  color: #114232;
  font-weight: bold;
  display: inline-block;
  text-decoration: underline;
}

.blog-slider-header {
  position: relative;
  margin-bottom: 30px;
}
.blog-slider-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}

.blog-slider-nav .prev,
.blog-slider-nav .next {
  background: #fff;
  color: #e27b61;
  border: 1px solid #e27b61;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.blog-slider-nav .prev:hover,
.blog-slider-nav .next:hover {
  background-color: #e27b61;
  color: #fff;
}
/* Dots */
.slick-dots {
  text-align: center;
  margin-top: 25px;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  background-color: #c4c4c4;
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-indent: -9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.slick-dots li.slick-active button {
  background-color: #114232; /* tamnozelena kao kod tebe */
}
.related-blogs {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.related-blogs h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.related-blogs-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.related-blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  width: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.related-blog-card:hover {
  transform: translateY(-4px);
}

.related-blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-blog-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-blog-content h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.related-blog-content h3 a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
}

.related-blog-content h3 a:hover {
  color: #0073aa;
}

.related-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
  display: block;
}

.related-blog-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.read-more-btn {
  display: inline-block;
  text-align: center;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.3s;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: var(--text-colot);
}

/* Responsive */
@media (max-width: 768px) {
  .related-blogs-grid {
    flex-direction: column;
    align-items: center;
  }

  .related-blog-card {
    width: 90%;
  }
}
.ponuda-section {
  margin: 40px 0;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ponuda-section:hover {

  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.ponuda-section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.ponuda-section-img {
  flex: 1 1 40%;
  overflow: hidden;
  border-radius: 10px;
}

.ponuda-section-img img {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ponuda-section-img img:hover {
  transform: scale(1.05);
}

.ponuda-section-text-wrapper {
  flex: 1 1 55%;
}

.ponuda-section-text-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
  line-height: 1.3;
  border-left: 4px solid #08443a;
  padding-left: 0.5rem;
}

.ponuda-section-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* CTA rezerviši */
.ponuda-rezervisi {
  margin: 40px 0;
  text-align: center;
  padding: 3rem 1rem;
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ponuda-rezervisi h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #08443a;
}

.ponuda-rezervisi p {
  margin-bottom: 1.5rem;
  color: #666;
  font-size: 1.1rem;
}

.btn-rezervisi {
  display: inline-block;
  background: #08443a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-rezervisi:hover {
  background: #0a5c4d;
}

/* responsive */
@media (max-width: 768px) {
  .ponuda-section-content {
    flex-direction: column;
  }
  .ponuda-section-text-wrapper {
    text-align: center;
  }
  .ponuda-section-text-wrapper h2 {
    font-size: 1.6rem;
  }
}


.trusted-companies {
  text-align: center;
  padding: 3rem 1rem;
}

.trusted-companies h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #222;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.trusted-logo {
  flex: 0 1 120px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.trusted-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
}

.trusted-logo:hover {
  opacity: 1;
}
.ponuda-section-features {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #999; /* svetlije */
}

.ponuda-section-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ponuda-section-features li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.3em;
}

.ponuda-section-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #bbb; /* svetlija tačkica */
  font-size: 1rem;
  line-height: 1;
}
.badge {
  position: absolute;
  top: 10px;
  
  background: var(--orange);
  color: var(--green);
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  opacity: 0.9;
  z-index: 2;
}
.ponuda-section-img {
  position: relative;
}
.testimonials{
  margin: 40px 0;
}
.testimonials-slider {
  position: relative;
  max-width: 600px; /* ili koliko želiš */
  margin: 0 auto;
  text-align: center;
}
.testimonials  h2 {
 text-align: center;
}
.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.testimonial-photo {
  margin-bottom: 15px;
}

.testimonial-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.testimonial h3 {
  margin: 20px 0;
  font-size: 1rem;
  color: #C28052;
  font-weight: 500;
}

.testimonial p {
  font-size: 1rem;
  color: #555;
  max-width: 400px;
  margin: 0 auto;
}

/* Dugmad na sredini levo/desno */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #114232;
  color: #fff;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: #0a5c4d;
}

.slick-prev {
  left: -60px; /* prilagodi po želji */
}

.slick-next {
  right: -60px; /* prilagodi po želji */
}
.language-switcher {
   list-style: none;
    margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.language-switcher ul li {
  display: flex;
  align-items: center;
  
}

.language-switcher a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
}

.language-switcher .current-lang {
  font-weight: bold;
  color: #000;
}
.language-switcher img {
  width: 20px!important; /* povećaš osnovnu veličinu, default je oko 18px */
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.language-switcher a:hover img {
  transform: scale(0.9); /* zoom-out */
  opacity: 0.8; /* opcionalno malo izbledelo na hover */
}