@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@1,400&display=swap');

:root {
  --bg-color: #0e1a1a;
  --text-color: #fefefe;
  --nav-bg: #1a2d2d;
  --header-bg: #0a1c1c;
  --accent-color: #d4af37; /* Zlatna */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

header {
  background: var(--header-bg);
  color: var(--accent-color); /* zlatna boja teksta */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
  gap: 1rem;
}

.logo {
  height: 40px;
  width: auto;
}

.site-title {
  font-size: 1.5rem;
  font-style: italic;
  margin: 0;
  color: white;
}

/* Hamburger meni */
.menu-wrapper {
  display: none;
  background: var(--nav-bg);
  text-align: right;
  padding: 0.5rem 1rem;
}

.menu-toggle {
  background: white;
  color: black;
  font-weight: bold;
  border: none;
  font-size: 1.5rem;
  padding: 0.4rem 1rem;
  cursor: pointer;
}

.menu-toggle:hover {
  background: rgb(36, 96, 148);
}

nav {
  background: var(--nav-bg);
  padding: 0.5rem;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: rgb(36, 96, 148);
  text-decoration: underline;
}
.wrapper {
  
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
   
}

.wrapper1 {
    max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;

}
 .mapa1 {
  top: 2rem;
  display: flex;
  flex-wrap: wrap;
 object-fit: contain;
   margin-left: 5rem;
  margin-right: 5rem;
  margin-top: 5rem;

  gap: 20px;

  box-sizing: border-box;
}

.text-box, .image-box {
  flex: 1 1 500px;
  min-width: 300px;
  box-sizing: border-box;
}

.text-box {
  background-color: #294059;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 10px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}


/* Hero sekcija */
.hero {
  position: relative;
  height: 100vh;
  background-color: black; /* crna pozadina */
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/Picture1.3.png') no-repeat center center/cover;
  opacity: 0.5; /* providnost samo slike */
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-top {
  position: absolute;
  top: 2rem;
  width: 100%;
  z-index: 2;
}

.hero2 {
  position: relative;
  height: 100vh;

  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;    /* vertikalno centriranje */
  justify-content: center;/* horizontalno centriranje */
  text-align: center;
  margin-left: 5rem;
  margin-right: 5rem;
  margin-top: 5rem;
}
.hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/section2.jpg') no-repeat center center/cover;
  opacity: 0.5; /* providnost samo slike */
  z-index: 1;
}

.hero2-top {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  color: #ffffff;
  flex-direction: column;
 align-items: center;    /* vertikalno centriranje */
  justify-content: center;/* horizontalno centriranje */

}

.hero3-top {
  position: relative;
  width: 100%;
  height: 100%;
 
  display: flex;
  color: #ffffff;
  flex-direction: column;
 align-items: center;    /* vertikalno centriranje */
  justify-content: end;/* horizontalno centriranje */

}

.hero-overlay {
  background-image: url('img/Picture10.jpg'); /* putanja do tvoje slike */
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px;
}

.hero3-text {
  background-color: rgba(0, 43, 69, 0.85); /* tamnoplava providna */
  color: white;
  padding: 30px;
  max-width: 600px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.6;
}



.ikon2-title {
  font-size: 2.5rem;
  font-weight: bold;
 color: #ffffff;
  z-index: 2;
}

.ikon-description2 {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 300;
  color: #fefefe;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 8px;
  
  margin-top: auto;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}


.ikon-title {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}


.ikon-subtitle {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: white;
}

.hr-gold {
  border: none;
  height: 2px;
  background: var(--accent-color);
  width: 80%;
  margin: 1rem auto;
}

.hero-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
}

.ikon-description {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 300;
  color: #fefefe;
  line-height: 1.5;
  text-align: justify;
  
  padding: 1rem;
  border-radius: 8px;
  
}





.gallery-1 {
  background: url('img/Picture3.jpg') no-repeat center center/cover;
}

.gallery-2 {
  background: url('img/Picture3.jpg') no-repeat center center/cover;
}

.gallery-3 {
  background-image: url('img/Picture4.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.gallery-4 {
  background-image: url('img/Picture5.jpg');
 background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.gallery-5 {
  background-image: url('img/Picture6.jpg');
 background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.gallery-6 {
  background-image: url('img/Picture7.jpg');
 background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.gallery-7{
  background-image: url('img/Picture8.jpg');
 background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.gallery-8{
  background-image: url('img/Picture9.jpg');
 background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.gallery-3-1{
  background-image: url('img/Picture9.jpg');
 background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.gallery-3-2{
  background-image: url('img/Picture10.jpg');
 background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.gallery-3-3{
  background-image: url('img/Picture11.jpg');
 background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.gallery-4-1{
  background-image: url('img/Contact.jpg');
 background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;     /* cela slika se vidi */
  background-repeat: no-repeat;
  background-position: center;

  height: auto;
  aspect-ratio: 16 / 9;
}
footer {
  background: var(--header-bg);
  color: white; /* zlatna boja teksta */
  text-align: center;
  padding: 1rem;
}
  .email-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
  color: #116b8c; /* svetlija zlatna na hover */
}

/* Mobilni prikaz */
@media (max-width: 768px) {
 .logo {
  height: 32px;
}
.site-title {
  font-size: 1.2rem;
}

.wrapper{
padding:0px;

}

  .menu-wrapper {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
  }

  nav.show {
    display: flex;
  }

  nav a {
    display: block;
    margin: 1rem 0;
  }
.gallery-3 {
  height: auto; /* dopušta rastegljivost na manjim ekranima */
  min-height: 80vh;
}
  .ikon-title {
    font-size: 2rem;
  }

  .ikon2-title2 {
     font-size: 4.5vw; 
  }

  .ikon-subtitle {
    font-size: 1rem;
  }
  .ikon2-subtitle2 {
   font-size: 2.5vw; 
  }

  .ikon-description {
    font-size: 0.7rem;
    padding: 0.8rem;
    text-align: left;
  }
.ikon-description2 {
    font-size: 0.50rem;
    padding: 0.8rem;
    text-align: left;
    max-width: 100%;
  }
  .hero-top {
    top: 1rem;
  }
    .hero2-top {
    padding: 1rem;
  }

.hero2{
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
}
  .hero-text {
    padding: 1rem;
  }


      .mapa1 {
        flex-direction: column;
         margin-top: 1rem;
          margin-left: 1rem;
          margin-right: 1rem;
        }
    }