
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Open Sans', sans-serif;
    color: white;
    background-color:#18212b ;
  }

  header.topbar {
    background-color:#18212b;
    color: #ccc;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
  }
  header.topbar a {
    color: #ccc;
    text-decoration: none;
    margin-left: 1rem;
      margin-right: 2rem;
  }


  .hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 5vw;
    text-align: left;
    overflow: hidden;
    padding-bottom: 30vh;
  }

  .hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
  }
  .hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
  }
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
  }
  .visual-title{
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
  }

  .hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 1.5rem;
  }
  .hero-content .button {
    background-color: #f9a825;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: inline-block;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.3s ease;
  }

  .hero-content .button:hover {
    background-color: #d68f1c;

  }


  .hero-slider {
    position: relative;
  }
  .hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
  }
  .hero-slide.active {
    opacity: 1;
    position: relative;
  }
  .slider-controls {
    position: absolute;
      top: calc(50% - 10vh);
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
  }
  .slider-controls button {
   background: transparent;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem 1rem;

  }.slider-controls button:hover {

color: #f9a825; /* ili neka druga boja po izboru */
}
  .slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    bottom: 22vh;
  }
  @media screen and (max-width: 768px) {
.slider-dots {
  bottom: 25vh;
}
}

  .slider-dots span {
    display: block;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
  }
  .slider-dots span.active {
    opacity: 1;
  }

  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    background-color: #18212b;
    padding: 4rem 1rem;
    margin-top: -20vh;
    position: relative;
    z-index: 2;
  }
  .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    min-width: 0;
flex: 1 1 250px;
  }
  .feature-icon {
    background-color: #cfe2e6;
    color: #000;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  .feature-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: white;
  }
  .feature-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: white;
  }

  @media (max-width: 768px) {
    header.topbar,
    nav.main-nav {
      display: none;
    }
    .hero {
      justify-content: center;
      text-align: center;
      padding: 4rem 2rem;
    }
    .hero-content {
      max-width: 90%;
    }
    .features {
      flex-direction: column;
      align-items: center;
      margin-top: -10vh;
    }
    .feature {
      max-width: 90%;
    }
  }

  .feature-icon {
background-color: #cfe2e6;
color: #000;
border-radius: 50%;
width: 64px;
height: 64px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.feature-icon svg {
width: 40px;
height: 40px;
}

}
@media (max-width: 768px) {
.hero {
  padding: 1rem 1rem 6rem 1rem; /* manji top padding, manji bottom padding */
}
}


nav {
position: absolute;
top: 26px;
left: 0;
width: 100%;
padding: 20px 2rem;
display: flex;
justify-content: flex-start; /* slijeva poravnanje */
align-items: center;
background: transparent;
z-index: 20; /* iznad hero slike */
}





nav ul {
display: flex;
gap: 40px;
list-style: none;
padding: 0 20px;
margin: 0;
align-items: center;
}

nav ul li a {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 1rem;
font-weight: 500;
color: white;
text-decoration: none;
padding: 8px 12px;
border-radius: 8px;
position: relative;
overflow: hidden;
transition: color 0.3s ease;
}

nav ul li a::after {
content: '';
position: absolute;
bottom: 0;
left: 10%;
width: 80%;
height: 2px;
background-color: #f9a825;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.3s ease;
}

nav ul li a:hover::after {
transform: scaleX(1);
transform-origin: left;
}

nav ul li a:hover {
color: #f9a825;
}

nav ul li a i {
font-size: 1.1rem;
transition: color 0.3s ease;
}

/* MOBILNA NAVIGACIJA */
.bottom-nav {
display: none;
}

@media (max-width: 768px) {
nav {
  display: none;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #18212b;
  color: white;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.bottom-nav a {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.bottom-nav a i {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.bottom-nav a:hover,
.bottom-nav a.active {
  color: #f9a825;
}
}


.nav-inner {
width: 100%;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: flex-end;

}




header.topbar a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  margin-left: 1rem;
  margin-right: 2rem;
  transition: color 0.3s ease;
}

header.topbar a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor; /* koristi boju teksta */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

header.topbar a:hover::after {
  transform: scaleX(1);
}
header.topbar svg {
  width: 16px;
  height: 16px;
  margin-right: 3px;
  vertical-align: middle;
}
.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  margin-right: auto;margin-left: 1rem;
}

.nav-logom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;

}

.logo-icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
  margin-top: 1px; /* fino poravnanje s tekstom */
}

.logo-text {
  line-height: 1;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}
/* Osnovno: sakrij top bar na svim uređajima */
.mobile-logo-bar {
  display: none;
}

/* Prikaži SAMO na mobilnim uređajima */
@media screen and (max-width: 768px) {
  .mobile-logo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #18212b;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    position: relative;
  }

  .mobile-logo-bar .nav-logom {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    gap: 10px;
  }

  .logo-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
  }
}
.mobile-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero-content {
    left: 50%;
     top: 25%;
    transform: translate(-50%, -25%);
    text-align: center;
    width: 90%;
    padding: 0 1rem;
  }
}@media screen and (max-width: 768px) {
  .hero-slider {
    min-height: 40vh; /* minimalna visina, ali raste ako treba */
  }
}

.desktop-break {
  display: none;
}

@media screen and (min-width: 768px) {
  .desktop-break {
    display: inline;
  }
}






@media (max-width: 768px) {
  .features {
    display: block !important;         /* umjesto flex – sprječava gap */
    padding:5rem 1rem 0rem 1rem !important;
    margin-top: -5vh !important;
  }

  .feature {

    min-height: unset !important;      /* ključna linija */
    height: auto !important;           /* ključna linija */
    box-sizing: border-box;
  }

 .feature {
    margin-bottom: 3rem;
  }

  .feature:last-child {
    margin-bottom: 5rem;
  }
}

}




.location-section {
background-color: #d0e6eb;
text-align: center;
 padding: 6rem 1rem 6rem 1rem; /* Gornji i donji padding povećani na 6rem */
color: #222;
}

.location-text .subtitle {
font-size: 1rem;
margin-bottom: 0.5rem;
}

.location-text h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
margin-bottom: 1rem;
}

.location-text .description {
font-size: 1rem;
line-height: 1.6;
color: #333;
}
.location-section {
  background-color: #d0e6eb;
  text-align: center;
  padding: 5rem 1rem 5.5rem 1rem; /* Gornji i donji padding povećani na 6rem */
  color: #222;
}

.location-text .subtitle {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.location-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.location-text .description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.location-slider {
  position: relative;
  margin: 2rem auto 0;
  max-width: 700px;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
border-radius: 6px;
  background-color: #000;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, color 0.2s ease;
}

.location-btn:hover {
  transform: translateY(-50%) scale(1.2); /* povećanje pri hoveru */
  color:  #f9a825; /* zlatna ili bilo koja druga boja */
}

.location-btn.prev {
  left: 10px;
}

.location-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .location-section {
    padding: 6rem 1rem;
  }

  .location-text h2 {
    font-size: 1.5rem;
  }

  .location-text .description {
    font-size: 0.95rem;
  }

  .location-slider {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    margin: 1.5rem auto 0;
  }

  .location-btn {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
.location-section {
  padding: 4rem 1rem;
}

.location-text h2 {
  font-size: 1.5rem;
}

.location-text .description {
  font-size: 0.95rem;
}

}


.property-section-modern {
  background: #ffffff;
  padding: 4rem 1rem;
  font-family: 'Open Sans', sans-serif;
  z-index: 2;
  isolation: isolate;
}

.property-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.property-info-box {
  flex: 1 1 300px;
  background-color: #d0e6eb;
  border-radius: 20px;
  padding: 2rem;
  box-shadow:
    8px 8px 20px rgba(0, 0, 0, 0.08),
    -8px -8px 20px rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.property-info-box:hover {
  transform: translateY(-2px);
  box-shadow:
    12px 12px 25px rgba(0, 0, 0, 0.1),
    -6px -6px 15px rgba(255, 255, 255, 0.5);
}

.box-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 0.5px;
}

.info-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: #222;
  transition: transform 0.3s ease;
}

.info-line i {
  background-color: #ffffff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 1rem 0;
}

.property-content {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}

.block p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.text-link {
  font-weight: 600;
  color: #444;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;

}


.text-link:hover {
  color: #000;
}

.text-link i {
  width: 18px;
  height: 18px;
}




/* Responsive */
@media (max-width: 768px) {
  .property-inner {
    flex-direction: column;
  }

  .property-info-box,
  .property-content {
    width: 100%;
  }

  .block h2 {
    font-size: 1.5rem;
  }

  .info-line {
    font-size: 0.95rem;
  }
}


.interior-section {
  background-color: #18212b;
  padding: 4rem 1rem;
  color: #fff;
}

.interior-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.interior-text {
  flex: 1 1 300px;
  max-width: 500px;
}

.interior-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.interior-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

.interior-text .subtitle {
  display: block;
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.interior-slider {
  flex: 1 1 500px;
  max-width: 600px;
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background-color: #000;  border-radius: 6px;
}

.interior-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.interior-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
border-radius: 6px;
}

.interior-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, color 0.2s ease;
}

.interior-btn:hover {
  transform: translateY(-50%) scale(1.2);
  color: #f9a825;
}

.interior-btn.prev {
  left: 10px;
}

.interior-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .interior-wrapper {
flex-direction: column-reverse;
text-align: left;
align-items: flex-start;
padding: 2.3rem 0.2rem 2.3rem 0.2rem ;
}


  .interior-slider {
    width: 100%;
    height: 55vw; /* umjesto aspect-ratio, definiramo visinu */
    max-height: 280px; /* sprječava da slika bude previsoka */
    aspect-ratio: unset; /* ukidamo aspektni omjer */
      border-radius: 6px;
  }

  .interior-track img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .interior-text h2 {
    font-size: 1.5rem;

  }

  .interior-text p {
    font-size: 0.95rem;

  }

  .interior-btn {
    font-size: 1.8rem;
  }

  .interior-btn.prev {
    left: 5px;
  }

  .interior-btn.next {
    right: 5px;
  }
}
.interior-button {
background-color: #e2f1f4;
color: black;
padding: 0.75rem 1.5rem;
font-weight: bold;
border: none;
border-radius: 4px;
text-decoration: none;
font-size: clamp(0.9rem, 2vw, 1rem);
display: inline-block;
max-width: 100%;
text-align: center;
white-space: nowrap;
transition: background-color 0.3s ease;
margin-top: 1.5rem;
}

.interior-button:hover {
background-color: #d0e6eb;
color:#18212b;
}
.calendar-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Lijevo poravnanje */
  gap: 16px;
  padding: 10px 0 10px 0;

}

.calendar-month {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: bold;
  color: #000; /* Možeš promijeniti ako želiš bijelu na tamnoj podlozi */
}

.calendar-btn {
  width: 36px;
  height: 36px;
  border: none;
  background-color:#18212b; /* sivo, kao na slici */
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.calendar-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
}

.calendar-btn.prev::before {
  border-width: 8px 12px 8px 0;
  border-color: transparent white transparent transparent;
}

.calendar-btn.next::before {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent white;
}

.calendar-btn:hover {
  background-color: #aab1b5;
}


.btn-yellow {
  background: #f9a825;
  color: #ffffff;
  width:100%;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  margin-top: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: filter 0.3s ease;font-size: 1.1rem;
}

.btn-yellow:hover {
  filter: brightness(90%);
}


.footer-section {
  background-color: #d0e6eb;
  color: #222;
  padding: 4rem 1rem;
  font-family: 'Open Sans', sans-serif;
  border-top: 1px solid #ccc;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #111;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-col a {
  color: #18212b;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover {
  color: #f9a825;
  text-decoration: underline;
}

.footer-col i.icon-sm {
  color: #f9a825;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-credits {
  background-color: #18212b;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.footer-credits a {
  color: #f9a825;
  text-decoration: none;
}

.footer-credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
