:root{
  --bg: #0b0b0b;
  --text: rgba(255,255,255,0.94);
  --muted: rgba(255,255,255,0.62);
  --border: rgba(255,255,255,0.12);
  --accent: #f4c430; /* žuta */
  --radius: 18px;
}

*{
  box-sizing: border-box;
}

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a{
  color: inherit;
  text-decoration: none;
}

img{
  max-width: 100%;
  display: block;
}

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* ===== FIKSIRANI HEADER ===== */
.siteHeader{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  padding: 10px 18px;
  z-index: 1000;
  background: transparent;
  pointer-events: none;
}

.brand{
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}

.brand img{
  height: 110px;
  width: auto;
}

/* ===== HERO ===== */
.hero{
  position: relative;
  height: 100vh;
  min-height: 640px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
margin-bottom: 2rem;
}

.heroBg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.heroBg--desktop{
  background: url("assets/img/hero.webp") center/cover no-repeat;
  display: none;
  filter: contrast(1.06) saturate(1.05);
}

.heroBg--mobile{
  display: block;
}

.heroVideo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: contrast(1.06) saturate(1.05);
}

.heroOverlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.30);
  pointer-events: none;
}

.heroInner{
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  padding-top: 120px;
  padding-bottom: 60px;
}

.heroContent{
  width: 100%;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.heroEyebrow{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
}

.heroTitle{
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

.heroActions{
  display: flex;
  justify-content: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.12);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.20);
}

.btnIcon{
  font-weight: 900;
  opacity: 0.95;
}

.heroFade{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(0,0,0,0), var(--bg));
  pointer-events: none;
}

/* ===== INFO ===== */
.info{
  background: var(--bg);
  padding: 64px 0 38px;
  position: relative;
  overflow: hidden;
}

.infoTop{
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.sectionTitle{
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.hoursList{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hoursItem{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.hoursDay{
  color: rgba(255,255,255,0.80);
  font-weight: 600;
}

.hoursTime{
  color: rgba(255,255,255,0.96);
  font-weight: 700;
}

.subTitle{
  margin: 24px 0 8px;
  font-size: 22px;
  color: rgba(255,255,255,0.90);
}

.muted{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.miniActions{
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.miniLink{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 650;
}

.miniLink:hover{
  background: rgba(255,255,255,0.09);
}

.accentLine{
  height: 2px;
  width: 100%;
  background: var(--accent);
  margin: 4px 0 14px;
  border-radius: 999px;
}

.mapWrap{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.40);
  box-shadow: 0 22px 65px rgba(0,0,0,0.45);
}

.mapWrap iframe{
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ===== ADRESA ===== */
.addrBlock{
  margin-top: 8px;
  padding-top: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.addrRow{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  transition: transform 140ms ease;
}

.addrRow:hover{
  transform: translateX(2px);
}

.addrRow:hover .addrArrow{
  color: var(--accent);
}

.addrPin{
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--muted);
  flex: 0 0 auto;
}

.addrPin svg{
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
}

.addrText{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.addrMain{
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.addrSub{
  font-weight: 400;
  color: var(--muted);
}

.addrArrow{
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--muted);
  flex: 0 0 auto;
  transition: color 140ms ease;
}

.addrArrow svg{
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
}

/* ===== O NAMA (redizajn sa slikom i zupčanikom) ===== */
.about {
  padding: 80px 0 10px;
  background: var(--bg);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.aboutText {
  width: 100%;
}

.aboutParagraph {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
}

.aboutParagraph:last-child {
  margin-bottom: 0;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;           /* prilagodite po potrebi */
  display: flex;
  justify-content: center;
  align-items: center;

}

.about-gear {
  position: absolute;
  width: 260px;            /* malo veći od slike da viri */
  height: 260px;
  left: -36%;
  top: -38%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  opacity: 0.4;
  z-index: 0;
}

.about-image {
  position: relative;
  width: 90%;
    height: auto;
  overflow: hidden;
   z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== ROTIRAJUĆI ZUPČANICI (opšta klasa) ===== */
.gear {
  pointer-events: none;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.gear svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

/* ===== FOOTER ===== */
.footer{
  padding: 22px 0 34px;
}

.footerInner{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px){
  .heroBg--desktop{
    display: block;
  }
  .heroBg--mobile{
    display: none;
  }
  .infoTop{
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
  .mapWrap iframe{
    height: 380px;
  }
}

@media (max-width: 767px){
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image-wrapper {
    height: 250px;
  }

  .about-gear {
    width: 220px;
    height: 220px;
  }

  .about-image {

width: 90%;
  height: auto;
  
  }
}

.fuMap{
  width: 100%;
  height: 360px; /* promeni ako hoćeš */
  border-radius: 18px; /* ako ti odgovara */
}