
:root{
  --bg:#0b0b0c;
  --panel: rgba(10,10,10,.66);
  --panel2: rgba(10,10,10,.56);
  --text:#f2f2f2;
  --muted:#cfcfcf;
  --gold:#c8a24a;
  --line: rgba(255,255,255,.10);
  --shadow: 0 22px 70px rgba(0,0,0,.62);
  --radius: 16px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(80% 70% at 50% 35%, rgba(0,0,0,.55) 0%, rgba(0,0,0,.86) 70%, rgba(0,0,0,.92) 100%),
    url("assets/background.png") center/cover fixed no-repeat;
}

a{ color: inherit; text-decoration: none; }
a:hover{ color: var(--gold); }

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

.gold{ color: var(--gold); }
.center{ text-align: center; }
.mt24{ margin-top: 24px; }
.small{ font-size: 12px; }

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(10,10,10,.62);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  height: 68px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}
.brand__name{
  font-weight: 800;
  letter-spacing: .10em;
}
.nav{
  display:flex;
  gap: 16px;
  align-items:center;
  font-weight: 600;
  font-size: 14px;
}
.nav__cta{
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
}
.nav__cta:hover{
  border-color: rgba(200,162,74,.55);
  color: var(--text);
}
.navbtn{
  display:none;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
}
.mobileNav{
  border-top: 1px solid var(--line);
  background: rgba(10,10,10,.78);
  padding: 10px 0;
}
.mobileNav a{
  display:block;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hero{
  position: relative;
  min-height: 40vh;
  display:grid;
  align-items: center;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero__media{
  position:absolute; inset:0;
  background: url("assets/hero.png") center/cover no-repeat;
  filter: contrast(1.08) saturate(1.05) 
}

.hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(70% 70% at 50% 45%, rgba(0,0,0,.05) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.45) 100%);
}


.hero__content{
  position:relative;
  padding: 60px 0;
}
.hero__text{
  text-align:center;
  padding: 0 10px;
}
.hero__kicker{
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .20em;
  font-size: 14px;
  margin-bottom: 12px;
}
.hero__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: clamp(28px, 4.3vw, 58px);
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.hero__subtitle{
  margin: 0 0 24px;
  color: var(--muted);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(13px, 1.7vw, 18px);
}
.hero__actions{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .05em;
  font-size: 13px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
}
.btn--sm{ padding: 10px 14px; font-size: 12px; border-radius: 12px; }
.btn--primary{
  background: linear-gradient(180deg, #d4b15a 0%, #b08934 100%);
  color: #141414;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover{
  border-color: rgba(200,162,74,.55);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transform: translateY(-1px);
}

.section{ padding: 72px 0; }
.card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 46px);
}

.h2{
  margin: 0 0 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(20px, 2.3vw, 30px);
}
.h3{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .02em;
}
.p{
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 14px;
}
.muted{ color: var(--muted); }

.grid2{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(14px, 2.5vw, 34px);
  align-items: center;
}

.about__media{
  border-radius: 14px;
  min-height: 260px;
  background:
    linear-gradient(120deg, rgba(0,0,0,.65), rgba(0,0,0,.15)),
    url("assets/work-01.jpeg") center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.10);
}

.bullets{
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.sectionHead{ margin-bottom: 18px; }

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.shot{
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 14px;
  overflow:hidden;
  cursor:pointer;
  position: relative;
}
.shot img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  transition: transform .2s ease, filter .2s ease;
}
.shot::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity .2s ease;
}
.shot:hover img{ transform: scale(1.03); filter: contrast(1.03); }
.shot:hover::after{ opacity: 1; }

.services{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 18px;
}
.service__marker{
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  margin-bottom: 16px;
  box-shadow: 0 0 10px rgba(200,162,74,.18);
}

.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote{
  margin:0;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 18px;
}
.quote blockquote{
  margin: 8px 0 10px;
  color: var(--text);
  line-height: 1.7;
  font-size: 14px;
}
.quote figcaption{
  color: var(--muted);
  font-size: 13px;
}
.stars{ color: var(--gold); letter-spacing: .1em; }

.contactList{
  display:grid;
  gap: 12px;
  margin-top: 18px;
}
.contactItem{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
}
.contactItem__label{ color: var(--muted); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.contactItem__value{ font-weight: 700; }

.form{
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 18px;
}
label{
  display:block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
input, textarea{
  width:100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,10,10,.65);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 14px;
}
input:focus, textarea:focus{
  border-color: rgba(200,162,74,.55);
  box-shadow: 0 0 0 4px rgba(200,162,74,.10);
}

.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,10,.62);
  backdrop-filter: blur(10px);
  padding: 22px 0;
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items:center;
}
.footer__brand{
  font-weight: 900;
  letter-spacing: .12em;
}
.footer__muted{ color: var(--muted); font-size: 13px; margin-top: 6px; }

/* LIGHTBOX */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 100;
}
.lightbox__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.72);
}
.lightbox__panel{
  position: relative;
  width: min(1100px, calc(100% - 28px));
  margin: 60px auto;
  background: rgba(10,10,10,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}
.lightbox__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  font-size: 18px;
}
#lightboxImg{
  width: 100%;
  height: min(62vh, 720px);
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
}
.lightbox__thumbs{
  display:flex;
  gap: 10px;
  overflow:auto;
  padding: 12px 4px 4px;
}
.lightbox__thumbs img{
  height: 70px;
  width: 110px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  cursor:pointer;
  opacity: .85;
}
.lightbox__thumbs img.active{
  border-color: rgba(200,162,74,.75);
  opacity: 1;
}

/* Responsive */
@media (max-width: 980px){
  .grid2{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .services{ grid-template-columns: 1fr; }
  .testimonials{ grid-template-columns: 1fr; }
  .about__media{ min-height: 220px; }
}
@media (max-width: 760px){
  .nav{ display:none; }
  .navbtn{ display:inline-flex; }
  .section{ padding: 54px 0; }
}
@media (max-width: 520px){
  .gallery{ grid-template-columns: 1fr; }
  .shot img{ height: 240px; }
  .btn{ width: 100%; }
  .hero{ min-height: 40vh; }
}


/* Hero callout below image */
.section--compact{ padding: 34px 0; }
.card--center{ text-align: center; }
.hero__actions--below{ margin-top: 14px; }


.hero__media{
    background: url("assets/hero-mobile.png") center top/cover no-repeat;
  }
}


/* ===== MOBILE HERO FIX (no zoom, smaller look) ===== */
@media (max-width: 768px){
  .hero{
    min-height: 28vh;
  }
  /* Use CONTAIN so the banner fits on screen and the baked-in text isn't huge/cropped */
  .hero__media{
    background: url("assets/hero.png") center/contain no-repeat;
    background-color: #0b0b0c;
    filter: contrast(1.02) saturate(1.02);
  }
  .hero__overlay{
    background: radial-gradient(70% 70% at 50% 45%, rgba(0,0,0,.10) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.45) 100%);
  }
}


/* Header logo */
.brand__logo{
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 760px){
  .brand__logo{ height: 30px; }
}

/* Header brand with text */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__logo{
  height:42px;
  width:auto;
  display:block;
}
.brand__text{
  /* Keep same vibe as section headings (e.g. "NAŠI RADOVI") */
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:14px;
  color: rgba(255,255,255,.9);
}
@media(max-width:768px){
  .brand__logo{ height:36px; }
  .brand__text{
    font-size:12px;
    letter-spacing:.16em;
  }
}

.mobile-break{ display:none; }
.heading-inline{ white-space: nowrap; }

@media (max-width: 768px){
  .mobile-break{
    display:block;
    height:.15em;
  }
}

.instaLink{
  color: #f2c94c;
  font-weight: 600;
  text-decoration: none;
}
.instaLink:hover{
  text-decoration: underline;
}


.infoGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.infoCard{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 20px;
}
.infoCard__marker{
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  margin-bottom: 16px;
  box-shadow: 0 0 10px rgba(200,162,74,.18);
}
@media (max-width: 980px){
  .infoGrid{ grid-template-columns: 1fr; }
}


.container--wide{
  width: min(1380px, calc(100% - 40px));
}

.section--gallery .card{
  padding-inline: clamp(18px, 2.4vw, 34px);
}

.gallery--preview{
  gap: 18px;
}

.gallery--preview .shot img{
  height: clamp(240px, 28vw, 360px);
}

@media (max-width: 900px){
  .container--wide{
    width: min(1200px, calc(100% - 28px));
  }
  .gallery--preview{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery--preview .shot img{
    height: 260px;
  }
}


.aboutSimple{
  max-width: 780px;
  margin: 0 auto;
}

.section--after-intro{
  padding-top: 24px;
}

@media (max-width: 768px){
  .aboutSimple{
    max-width: none;
  }
  .section--after-intro{
    padding-top: 8px;
  }
}


.footer__inner--simple{justify-content:flex-end;}


/* gallery category filters */
.galleryFilters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:8px 0 16px;
}
.galleryFilters__btn{
  border:1px solid rgba(212,178,94,.45);
  background:#121212;
  color:#f3efe6;
  border-radius:999px;
  padding:10px 16px;
  font:600 14px/1 Montserrat, sans-serif;
}
.galleryFilters__btn.active{
  background:#d4b25e;
  color:#111;
  border-color:#d4b25e;
}


/* cleaner horizontal gallery categories */
.galleryFilters{
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  justify-content:flex-start;
  align-items:center;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding:2px 2px 8px;
  margin:4px 0 14px;
}
.galleryFilters::-webkit-scrollbar{ display:none; }
.galleryFilters__btn{
  flex:0 0 auto;
  white-space:nowrap;
  border:1px solid rgba(212,178,94,.4);
  background:#121212;
  color:#f3efe6;
  border-radius:999px;
  padding:10px 16px;
  font:600 14px/1 Montserrat, sans-serif;
  transition:all .18s ease;
}
.galleryFilters__btn.active{
  background:#d4b25e;
  color:#111;
  border-color:#d4b25e;
}
.galleryFilters__hint{
  width:100%;
  text-align:center;
  color:#bdb7ab;
  font:500 14px/1.4 Montserrat, sans-serif;
  padding:18px 8px 6px;
}
.lightbox__panel.gallery-select-mode #lightboxImg,
.lightbox__panel.gallery-select-mode #lightboxThumbs{
  display:none;
}


/* improved gallery category layout */
.galleryFilters{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  align-items:stretch;
  margin:6px 0 18px;
  padding:0;
}
.galleryFilters__btn{
  width:100%;
  min-height:52px;
  white-space:normal;
  text-align:center;
  justify-content:center;
  display:flex;
  align-items:center;
  border:1px solid rgba(212,178,94,.42);
  background:#111;
  color:#f3efe6;
  border-radius:18px;
  padding:12px 10px;
  font:700 14px/1.2 Montserrat, sans-serif;
}
.galleryFilters__btn.active{
  background:#d4b25e;
  color:#111;
  border-color:#d4b25e;
}
.galleryFilters__hint{
  grid-column:1 / -1;
  text-align:center;
  color:#bdb7ab;
  font:500 14px/1.45 Montserrat, sans-serif;
  padding:4px 8px 2px;
}
@media (min-width: 768px){
  .galleryFilters{
    grid-template-columns:repeat(5, minmax(0, 1fr));
  }
  .galleryFilters__btn{
    min-height:48px;
    font-size:15px;
  }
}


/* vertical category buttons for cleaner mobile gallery */
.galleryFilters{
  display:flex !important;
  flex-direction:column !important;
  gap:14px !important;
  align-items:stretch !important;
  margin:8px 0 18px !important;
  padding:0 !important;
}
.galleryFilters__btn{
  width:100% !important;
  min-height:58px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  white-space:normal !important;
  border-radius:18px !important;
  padding:14px 16px !important;
  font:700 16px/1.2 Montserrat, sans-serif !important;
}
.galleryFilters__hint{
  text-align:center !important;
  color:#bdb7ab !important;
  font:500 15px/1.45 Montserrat, sans-serif !important;
  padding:2px 8px 0 !important;
}
@media (min-width: 768px){
  .galleryFilters{
    max-width:520px;
    margin:8px auto 18px !important;
  }
}
