body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
  }
  
  header {
    background: #004080;
    padding: 15px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero {
    background: url("SlikeB/_NZF1572.jpg") center/cover no-repeat;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  }

  .hero-title {
    line-height: 1.2; /* manji razmak među redovima */
  }
  
  section {
    padding: 50px 20px;
    text-align: center;
  }

  .apartman {
    display: grid;
    grid-template-columns: 1fr 2fr; /* lijevo manji stupac, desno veći */
    gap: 20px;
    align-items: center;
    padding: 50px 20px;
  }
  
  .apartman-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
  }
  
  .apartman-info h2 {
    margin-bottom: 15px;
    color: #004080;
  }
  
  .apartman-info ul {
    list-style: none;
    padding: 0;
  }
  
  .apartman-info li {
    margin: 8px 0;
    font-size: 18px;
  }
  
  .apartman-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
  }
  
  .apartman-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  
  /* Galerija */
.apartman-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.apartman-gallery img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.apartman-gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none; /* skrivamo dok se ne otvori */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
  

.map-container {
  display: flex;
  gap: 20px;         /* razmak između karata */
}

.map-container iframe {
  flex: 1;           /* obje karte zauzimaju jednaku širinu */
}

  .kontakt {
    background: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 50px auto;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .kontakt h2 {
    margin-bottom: 20px;
    color: #004080;
  }
  
  .kontakt ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
  }
  
  .kontakt li {
    margin: 12px 0;
  }
  
  .kontakt a {
    color: #004080;
    text-decoration: none;
    font-weight: bold;
    margin-left: 8px;
  }
  
  .kontakt a:hover {
    text-decoration: underline;
  }
  
  .kontakt li i {
    margin-right: 8px;
  }
  
  .kontakt li i.fa-phone {
    color: red; /* telefonska ikona crvena */
  }
  
  .kontakt li i.fa-envelope {
    color: #d8b647; /* email ikona žuta */
  }
  
  .kontakt li i.fa-whatsapp {
    color: #25D366; /* WhatsApp zelena */
  }
  
  .kontakt li i.fa-instagram {
    color: #C13584; /* Instagram roza */
  }
  
  
  
  footer {
    background: #004080;
    color: white;
    text-align: center;
    padding: 15px;
  }