@charset "utf-8";

:root {
  --widthMax: 1280px;
  --widthUsko: 720px;
  --bgPage: #f3efea;
  --bgPageDark: #eee9e3;
  --bgPageMediumDark: hsl(40 10% 90%);
  --bgPageDark2: hsl(40 5% 20%);
  --accent: #f7931e;
  --accent2: hsl(91 50% 40%);
  --accent3: hsl(43 94% 54%);

  --shadow-color: 0deg 0% 0%;
  --shadow-elevation-low:
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.15),
    1px 2px 2.5px -2.5px hsl(var(--shadow-color) / 0.15);
  --shadow-elevation-medium:
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.14),
    1.3px 2.6px 3.3px -1.2px hsl(var(--shadow-color) / 0.14),
    5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.14);
  --shadow-elevation-high:
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.13),
    1.9px 3.9px 4.9px -0.5px hsl(var(--shadow-color) / 0.13),
    4.1px 8.1px 10.2px -1px hsl(var(--shadow-color) / 0.13),
    7.8px 15.6px 19.6px -1.5px hsl(var(--shadow-color) / 0.13),
    14.4px 28.8px 36.2px -2px hsl(var(--shadow-color) / 0.13),
    25px 50px 62.9px -2.5px hsl(var(--shadow-color) / 0.13);
  --shadow-elevation-menu:
    0px 0.5px 0.7px hsl(var(--shadow-color) / 0.13),
    0px 3.9px 4.9px -0.5px hsl(var(--shadow-color) / 0.13),
    0px 8.1px 10.2px -1px hsl(var(--shadow-color) / 0.13),
    0px 15.6px 19.6px -1.5px hsl(var(--shadow-color) / 0.13),
    0px 28.8px 36.2px -2px hsl(var(--shadow-color) / 0.13),
    0px 50px 62.9px -2.5px hsl(var(--shadow-color) / 0.13);
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scrollbar-gutter: stable;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: var(--bgPage);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", sans-serif;
  color: #f68709;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 1.7rem;
  font-weight: 400;
  color: #2b2d2e;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.2rem;
  color: #2b2d2e;
}

h4 {
  font-size: 1.2rem;
  font-weight: 300;
}

p {
  color: black;
  font-size: 1em;
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 0.9rem;
  text-align: left;
}

.smallprint {
  font-size: 0.8em;
  opacity: 0.8;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  padding: 0.3rem 0;
}

strong {
  font-weight: 500;
  filter: brightness(70%);
}

.onlyDesk {
  display: flex;
}

.onlyMob {
  display: none !important;
}

.paddingBottom80 {
  padding-bottom: 80px;
}

.paddingBottom80 {
  padding-bottom: 80px;
}

.paddingVertical40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.paddingTop40 {
  padding-top: 40px !important;
}

.no-scroll {
  overflow: hidden;
}

/* ========================================= */
/*                                           */
/* HEADER                                    */
/*                                           */
/* ========================================= */

header {
  width: 100%;
  margin: 0 auto;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.headerBox {
  box-sizing: border-box;
  max-width: var(--widthMax);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}

.headerLogo {
  display: flex;
  gap: 0px;
  align-items: center;
}

.headerLogoSymbol {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 20px;
  box-sizing: content-box;
  position: sticky;
  top: 0;
  transition: all 0.8s ease;
  transform-origin: left top;
  border-radius: 0px 0px 5px 5px;
  background-color: var(--bgPage);
  box-shadow: none;
  z-index: 1500;
}

.headerLogoSymbol img {
  height: 60px;
  width: auto;
  transition: all 0.8s ease;
  transform-origin: center top;
}

.headerLogoType {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: all 0.8s ease;
}

.headerLogoType img {
  height: 20px;
  width: auto;
  fill: #f68709;
}
.headerNav {
  display: flex;
  gap: 10px;
}

.headerMenu {
  border: none;
  border-radius: 5px;
  background-color: var(--bgPage);
  background-image: url(../images/icons/menudark.svg);
  background-size: 32px auto;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 48px;
  height: 48px;
  transition: all 0.8s ease;
  margin-top: 10px;
  cursor: pointer;
  z-index: 1500;
}
.headerMenu--Close {
  background-image: url(../images/icons/close.svg);
}

.headerMenu:hover {
  background-size: 32px auto;
  box-shadow: var(--shadow-elevation-medium);
  transform: scale(1);
}

.headerKontakt {
  border: none;
  border-radius: 5px;
  background-color: var(--bgPage);
  background-image: url(../images/icons/kontakt.svg);
  background-size: 32px auto;
  background-repeat: no-repeat;
  background-position: right 10px center;
  display: block;
  width: auto;
  line-height: 48px;
  font-weight: 400;
  transition: all 0.8s ease;
  margin-top: 10px;
  text-decoration: none;
  color: black;
  padding: 0px 50px 0px 10px;
}

.headerKontakt:hover {
  background-size: 32px auto;
  box-shadow: var(--shadow-elevation-high);
  transform: scale(1);
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 120vh;

  background-color: rgba(243, 239, 234, 0.7);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  justify-content: center;
  align-items: flex-start;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;

  z-index: 1010;
  overflow-y: auto;
}

/* Active state (visible) */
.overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
  box-shadow: var(--shadow-elevation-menu);
}
.overlayMenu {
  margin-top: 80px;
  padding: 40px;
  margin-bottom: 100px;
  width: 100%;
  max-width: var(--widthMax);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

.overlayMenuGroup {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.overlayMenuGroup li {
  margin: 0;
  padding: 0;
}

.menuLink {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2rem;
  display: block;
  text-decoration: none;
  color: black;
  padding: 10px 15px;
  background-color: white;
  border-radius: 5px;
  box-shadow: var(--shadow-elevation-medium);
  transition: 0.3s ease;
}

.menuLink--main {
  box-sizing: border-box;
  font-family: "Roboto Slab", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2rem;
  border-bottom: #f7931e 5px solid;
  display: block;
  text-decoration: none;
  color: black;
  padding: 10px 15px;
  background-color: white;
  border-radius: 5px;
  box-shadow: var(--shadow-elevation-medium);
  transition: 0.3s ease;
}

.menuLink--phone {
  padding: 10px 15px 10px 38px;
  background-image: url(../images/icons/phone.svg);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: left 10px center;
}

.menuLink--mail {
  padding: 10px 15px 10px 38px;
  background-image: url(../images/icons/mail.svg);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: left 10px center;
}

.menuLink--ponuda {
  padding: 10px 15px 10px 38px;
  background-image: url(../images/icons/ponuda.svg);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: left 10px center;
}

.menuLink:hover {
  box-shadow: var(--shadow-elevation-low);
  transform: translate(0px, 1px);
}

/* ========================================= */
/*                                           */
/* SCROLL                                    */
/*                                           */
/* ========================================= */

header.scrolled .headerLogoType {
  opacity: 0;
  transform: translateY(-80px);
  pointer-events: none;
}

header.scrolled .headerLogoSymbol {
  background-color: white;
  box-shadow: var(--shadow-elevation-high);
  padding: 10px 20px 10px 20px;
}

header.scrolled .headerMenu {
  background-color: white;
  box-shadow: var(--shadow-elevation-high);
}

header.scrolled .headerMenu:hover {
  box-shadow: var(--shadow-elevation-medium);
}

header.scrolled .headerKontakt {
  background-color: white;
  box-shadow: var(--shadow-elevation-high);
}

header.scrolled .headerLogoSymbol {
  transform: scale(0.8);
}

header.scrolled .headerLogoSymbol img {
  transform: scale(1);
}

/* ========================================= */
/*                                           */
/* HEROES                                    */
/*                                           */
/* ========================================= */

.hero {
  padding: 0 10px;
}

.hero01 {
  background-image: url(../images/heros/hala02.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.hero02 {
  background-image: url(../images/heros/hero02.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroKontakt {
  background-image: url(../images/heros/m01.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroUsluga01 {
  background-image: url(../images/heros/konsultacije01.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroUsluga02 {
  background-image: url(../images/heros/projektovanje01.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroUsluga03 {
  background-image: url(../images/heros/priprema01.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroUsluga04 {
  background-image: url(../images/heros/proizvodnja01.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroUsluga05 {
  background-image: url(../images/heros/montaza01.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroUsluga06 {
  background-image: url(../images/heros/krov01.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroUsluga07 {
  background-image: url(../images/heros/stolarija01.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroGalerija {
  background-image: url(../images/heros/projekti01.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroONama {
  background-image: url(../images/heros/konstrukcija01.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #535454;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  max-width: var(--widthMax);
  margin: 0 auto 40px auto;
  border-radius: 10px;
}

.heroBox {
  max-width: var(--widthMax);
  margin: 0 auto;
  padding: 40px;
  display: flex;
}

.heroBox01 {
  flex-direction: column;
  align-items: flex-end;
}

.heroBox01Center {
  align-items: center;
}

.heroBox01 h1 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  text-align: end;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px;
}

.heroBox01 h2 {
  color: white;
  font-size: clamp(1.6rem, 2.5vw, 3.5rem);
  font-weight: 300;
  text-align: end;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px;
}

.heroBox01Center h2 {
  text-align: center;
}

.hero_divider01_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  fill: var(--bgPage);
}

.hero_divider01_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  fill: var(--bgPage);
}

/* ========================================= */
/*                                           */
/* PAGE ELEMENTS                             */
/*                                           */
/* ========================================= */

.main {
  max-width: var(--widthMax);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
}

.mainReverse {
  flex-direction: row;
}

.mainTitle {
  max-width: var(--widthMax);
  margin: 40px auto 20px auto;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.mainCenter {
  align-items: stretch;
}

.mainVerticalCenter {
  justify-content: center !important;
}

.mainDark {
  background-color: var(--bgPageDark);
}

.elm {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}

.elm80 {
  width: 80%;
}

.elm70 {
  width: 70%;
}

.elm60 {
  width: 60%;
}

.elm50 {
  width: 50%;
}

.elm40 {
  width: 40%;
}

.elm30 {
  width: 30%;
}

.elm20 {
  width: 20%;
}

.elm10 {
  width: 10%;
}

.elmLeft {
  padding: 0px 80px 0px 40px;
}

.elmRight {
  padding: 0px 40px 0px 40px;
}

.galSwipe {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 0px 20px 40px 20px;
}

.galSwipeItem {
  height: 100%;
  position: relative;
  display: inline-block;
}

.galSwipeCTA {
  box-sizing: border-box;
  background-color: var(--bgPageDark2);
  height: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 10px;
  padding: 10px 10px 10px 70px;
}

.galSwipeItem img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

/* OVERLAY */
.galSwipeOverlay {
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 16px 20px;
  border-radius: 0 0 10px 10px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);

  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.galSwipeOverlay h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
}

.galSwipeOverlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  color: white;
}

.galerija {
  max-width: var(--widthMax);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 20px;
}

.galItem {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  box-shadow: var(--shadow-elevation-medium);
  background-color: var(--bgPageDark2);
}

.galItemImage img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.galItemOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 10px;
  background-color: color-mix(in srgb, var(--bgPageDark2) 60%, transparent);
  backdrop-filter: blur(3px);
  color: #fff;
}

.galItemOverlay h3 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 400;
  color: white;
}

.galItemOverlay p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 300;
  color: white;
}

.usluge {
  max-width: var(--widthMax);
  margin: 0 auto;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.usluga {
  width: 100%;
  /* background-color: #0081c5; */
  background-color: var(--bgPageDark2);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}

.usluga2 {
  background-color: #c56c07;
}

.uslugaTekst {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.uslugaTekst h2 {
  color: white;
}

.uslugaTekst li {
  color: white;
}

.uslugaTekst p {
  color: white;
  font-weight: 300;
}

.uslugaLink {
  padding: 10px 0px;
}

.uslugaLink a {
  font-family: "Roboto Slab", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: white;
  padding: 5px 30px 5px 5px;
  border-left: 5px solid var(--accent);
  transition: all 0.3s ease;
  background-image: url(../images/icons/link-white.svg);
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: right center;
}

.uslugaLink a:hover {
  border-left: 5px solid white;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.uslugaEnd {
  width: 40px;
}

.uslugaEnd img {
  width: 100%;
  height: 100%;
}

.pageLink {
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.pageLink a {
  font-family: "Roboto Slab", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: black;
  padding: 5px 30px 5px 10px;
  border-left: 5px solid var(--accent);
  transition: all 0.3s ease;
  background-image: url(../images/icons/link-orange.svg);
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: right center;
}

.pageLink a:hover {
  background-color: rgba(255, 255, 2550, 1);
  border-radius: 5px;
}

.projekti {
  width: 100%;
  gap: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0px 0px 40px 0px;
}

.projekatCard {
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

.projekatCard img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0px 0px;
  box-shadow: var(--shadow-elevation-medium);
}

.projekatCardText {
  width: 100%;
  padding: 20px 20px 0px 20px;
}

/* ========================================= */
/*                                           */
/* PHOTOS                                    */
/*                                           */
/* ========================================= */

.photo01 {
  background-color: #535454;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-size: cover;
  background-position: center top;
}

.photo01_right {
  border-radius: 0px 10px 10px 0px;
}

.photo01_left {
  border-radius: 10px 0px 0px 10px;
}

.ph_Konstrukcija_01 {
  background-image: url(../images/heros/konstrukcija01.webp);
}

.ph_Hala_01 {
  background-image: url(../images/heros/hala01.webp);
}

.ph_Konsultacije_01 {
  background-image: url(../images/heros/konsultacije01.webp);
}

.ph_Projektovanje_01 {
  background-image: url(../images/heros/projektovanje01.webp);
}

.ph_Priprema_01 {
  background-image: url(../images/heros/priprema01.webp);
}

.ph_Proizvodnja_01 {
  background-image: url(../images/heros/proizvodnja01.webp);
}

.ph_Montaza_01 {
  background-image: url(../images/heros/montaza01.webp);
  background-position: center center;
}

.ph_Krov_01 {
  background-image: url(../images/heros/krov01.webp);
}

.ph_Stolarija_01 {
  background-image: url(../images/heros/stolarija01.webp);
}

.ph_M_01 {
  background-image: url(../images/heros/m01.webp);
  background-position: center center;
  aspect-ratio: 16 / 6;
}

.ph_Armiranje_01 {
  background-image: url(../images/heros/armiranje01.webp);
  background-position: bottom center;
  aspect-ratio: 16 / 6;
}

.broj {
  position: relative;
  min-height: 30px;
}

.broj img {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 100%;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  opacity: 0.05;
  filter: blur(8px);
  transform: scale(0.9);
  transition:
    filter 0.25s ease-out,
    opacity 0.25s ease-out,
    transform 0.35s ease-out;
}

.img_divider01_left {
  position: absolute;
  top: 0;
  left: -1px;
  width: 60px;
  height: calc(100% + 2px);
  fill: var(--bgPage);
  display: block;
  pointer-events: none;
}

.img_divider01_right {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 60px;
  height: calc(100% + 2px);
  fill: var(--bgPageDark);
}

.img_divider01_right_light {
  fill: var(--bgPage);
}

.img_divider01_left_dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  fill: var(--bgPageDark);
}
.formularBox {
  background-color: var(--bgPageDark);
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.formular {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Label + input blok */
.formular label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  color: #333;
}

/* Inputs */
.formular input,
.formular textarea,
.formular select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Fokus efekat */
.formular input:focus,
.formular textarea:focus,
.formular select:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow-elevation-medium);
  outline: none;
}

/* Dugme */
.formularBox button {
  font-family: "Roboto Slab", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: white;
  padding: 10px 30px 10px 10px;
  border: none;
  border-left: 5px solid var(--accent);
  transition: all 0.3s ease;
  background-image: url(../images/icons/link-orange.svg);
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: right center;
  background-color: var(--bgPageDark2);
  box-shadow: var(--shadow-elevation-medium);
}

.formular button:hover {
  box-shadow: var(--shadow-elevation-low);
}

/* Divider */
.formular hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}

footer {
  max-width: 100%;
  padding: 40px 0px;
  background-color: var(--bgPageDark2);
}

.footerBox {
  max-width: var(--widthMax);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}

.footerLogo {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footerLogo img {
  width: 100%;
  height: auto;
}

.footerNav {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-around;
  flex-grow: 1;
}

.footerNavGroup {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footerBox p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 0.8rem;
}

.footerBox a {
  font-family: "Roboto Slab", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 300;
}

.footerBox a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.mySwiper.swiper {
  width: 100%;
  padding-bottom: 40px;
  /* space for pagination */
}

.mySwiper .swiper-wrapper {
  align-items: center;
}

.mySwiper .swiper-slide {
  position: relative;
  width: auto;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiper .swiper-slide img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.galOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 16px 20px;
  border-radius: 0 0 10px 10px; /* prati radius slike */

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);

  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.galOverlay h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
}

.galOverlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  color: white;
}

.mySwiper .swiper-pagination {
  bottom: 5px !important;
  position: absolute;
  z-index: 20;
}

.swiper-button-next,
.swiper-button-prev {
  width: 32px;
  height: 32px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: var(--accent);
  font-size: 16px;
  text-shadow:
    0 0 8px black,
    0 0 5px black,
    0 0 3px black,
    0 0 1px black;
  /* optional glow */
}

/* ========================================= */
/*                                           */
/*                                           */
/*                                           */
/*                                           */
/*                                           */
/*                                           */
/*                                           */
/* RESPONSIVE                                */
/*                                           */
/*                                           */
/*                                           */
/*                                           */
/*                                           */
/*                                           */
/*                                           */
/*                                           */
/* ========================================= */

@media only screen and (max-width: 1080px) {
  .usluge {
    grid-template-columns: repeat(2, 1fr);
  }

  .galerija {
    max-width: var(--widthMax);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 780px) {
  .onlyDesk {
    display: none !important;
  }

  .headerBox {
    padding: 0 10px;
  }

  .headerLogoType {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0px;
    transition: all 0.8s ease;
  }

  .headerLogoType img {
    height: 15px;
    width: auto;
  }

  .headerKontakt {
    position: fixed;
    right: 16px;
    bottom: calc(env(safe-area-inset-bottom) + 36px);
    z-index: 1000;
    box-shadow: var(--shadow-elevation-high);
    background-color: white;
  }

  .overlay {
    width: 90%;
    justify-content: flex-start;
  }

  .overlayMenu {
    padding: 40px 0px 40px 20px;
    width: calc(100% - 10px);
    display: flex;
    flex-direction: column;
    margin-bottom: 300px;
    gap: 0px;
  }

  .hero {
    padding: 0 0;
  }

  .hero01 {
    aspect-ratio: 16 / 13;
    border-radius: 0px;
    margin: 0 auto 0px auto;
  }

  .hero02 {
    aspect-ratio: 16 / 13;
    border-radius: 0px;
    margin: 0 auto 0px auto;
  }

  .heroKontakt {
    aspect-ratio: 16 / 13;
    border-radius: 0px;
    margin: 0 auto 0px auto;
  }

  .hero-divider01-top {
    height: 10px;
  }

  .heroBox {
    width: 100%;
    padding: 20px;
  }

  .heroBox01 {
    margin-top: 30px;
  }

  .hero-divider01-bottom {
    height: 20px;
    bottom: -1px;
  }

  .heroUsluga01,
  .heroUsluga02,
  .heroUsluga03,
  .heroUsluga04,
  .heroUsluga05,
  .heroUsluga06,
  .heroUsluga07 {
    aspect-ratio: 16 / 13;
    border-radius: 0px;
    margin: 0 auto 0px auto;
  }

  .heroGalerija {
    margin: 0px auto 0px auto;
    border-radius: 0px;
    aspect-ratio: 16 / 12;
  }

  .heroONama {
    margin: 0px auto 0px auto;
    border-radius: 0px;
    aspect-ratio: 16 / 12;
  }

  .main {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
  }

  .mainReverse {
    flex-direction: column-reverse;
  }

  .mainVerticalCenter {
    justify-content: center !important;
  }

  .paddingTop40 {
    padding-top: 40px;
  }

  .elm70 {
    width: 100%;
  }

  .elm60 {
    width: 100%;
  }

  .elm50 {
    width: 100%;
  }

  .elm40 {
    width: 100%;
  }

  .elm30 {
    width: 100%;
  }

  .elm20 {
    width: 100%;
  }

  .elmLeft {
    padding: 0px 20px 0px 20px;
  }

  .elmRight {
    padding: 0px 20px 0px 20px;
  }

  .photo01 {
    border-radius: 0px;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 20px;
  }

  .photo02 {
    border-radius: 0px;
    background-image: url(../images/editorial/hala01.webp);
    aspect-ratio: 16 / 9;
    margin-top: 20px;
  }

  .broj {
    position: relative;
    min-height: 60px;
    margin-bottom: 20px;
  }

  .broj img {
    margin: 0 auto 0px 20px;
  }

  .usluge {
    grid-template-columns: repeat(1, 1fr);
  }

  .usluga {
    flex-direction: column;
    border-radius: 0px;
  }

  .uslugaEnd {
    width: 100%;
    height: 40px;
  }

  footer {
    padding: 40px 20px;
  }

  .galerija {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
    padding: 40px 0px;
  }

  .galItem {
    border-radius: 0px;
  }

  .galItemImage img {
    border-radius: 0px;
  }

  .galSwipe {
    padding: 0px 0px 0px 0px;
  }
  .projekti {
    width: 100%;
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 0px 0px 40px 0px;
  }

  .footerBox {
    max-width: 100%;
    flex-direction: column-reverse;
    gap: 80px;
  }

  .footerLogo {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .footerLogo img {
    width: 70%;
    height: auto;
  }

  .footerNav {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .footerNavGroup {
    gap: 30px;
  }

  .mySwiper .swiper-slide {
    width: 100% !important;
    /* override variable width */
    height: auto;
    /* set mobile height */
  }

  .mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0px;
  }

  .galSwipeCTA {
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 0px;
  }

  .galSwipeOverlay {
    border-radius: 0;
  }
}

@media only screen and (max-width: 320px) {
  .headerLogoType img {
    height: 10px;
    width: auto;
  }

  .mainVerticalCenter {
    justify-content: center !important;
  }
}
