/* =========================
   TOKENS + RESET
========================= */
:root{
  --container: 1440px;
  --container-pad: clamp(16px, 3vw, 24px);

  --text: #111;
  --muted: #1a1a1a;

  --brand: #048BCF;
  --brand-soft: rgba(4, 139, 207, 0.20);

  --dark: #1F1F1F;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:#fff;
  overflow-x: hidden; /* sprječava horizontal scroll od overlap slika */
}
img, svg{ max-width:100%; height:auto; }
h1, h2, h3, p { margin: 0; }



.site-footer__made{
 
  text-decoration: none !important;
  color: #fff !important;

}
.site-footer__made:hover{
  text-decoration: underline;
}



.container{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* helper za mobile drawer */
html.no-scroll, html.no-scroll body{ overflow: hidden; }

/* =========================
   HEADER / NAV
========================= */
.site-header{ background:#fff; }

.nav{ width:100%; }

.nav__inner{
  height: 88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  position: relative; /* bitno za centriranje burgera na mobu */
}

/* LEFT brand */
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
  color: var(--text);
  min-width: 260px; /* da centar ostane lijepo na desktop */
}
.brand__logo{
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.brand__name{
  font-size: 20px;
  font-weight: 500;
  color: #1F1F1F;
  letter-spacing: 0.1px;
}

/* CENTER links (desktop) */
.nav__links{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 34px;
  padding:0;
  margin:0;
  flex: 1;
}
.nav__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration:none;
  color: #1F1F1F;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.nav__link:hover{ background: rgba(0,0,0,0.06); }
.nav__link.is-active{
  background:#1F1F1F;
  color:#fff;
  width: 96px;
  padding: 10px 5px;
  border-radius: 50px;
  font-weight: 700;
}

/* RIGHT: contact button */
.btn-contact{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;

  height: 38px;
  min-width: 140px;
  padding: 0 14px;

  border-radius: 50px;
  background: var(--brand);
  color:#fff;
  text-decoration:none;

  font-weight: 700;
  font-size: 14px;

  box-shadow: 0 6px 14px rgba(44,124,197,0.18);
  transition: transform .15s ease, filter .15s ease;
}
.btn-contact:hover{
  transform: translateY(-1px);
  filter: brightness(0.98);
}
.btn-contact__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: currentColor; /* ako je svg na currentColor */
}
.btn-contact__icon svg{
  width: 18px;
  height: 18px;
  display:block;
}
.btn-contact__text{ display:inline; }

/* =========================
   NAV — BURGER + DRAWER
========================= */
.nav__toggle{
  display:none; /* desktop off */
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index: 3;
}
.nav__toggle-bars{
  width: 18px;
  height: 2px;
  background: #1F1F1F;
  position: relative;
  display: block;
  border-radius: 2px;
}
.nav__toggle-bars::before,
.nav__toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background:#1F1F1F;
  border-radius: 2px;
}
.nav__toggle-bars::before{ top: -6px; }
.nav__toggle-bars::after{ top: 6px; }

.nav__backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
}

.nav__drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 340px);
  height: 100dvh;
  background: #fff;
  z-index: 9999;
  transform: translateX(110%);
  transition: transform .22s ease;
  padding: 18px 16px;
  box-shadow: -20px 0 40px rgba(0,0,0,.22);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav__drawer.is-open{ transform: translateX(0); }

.nav__drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 8px;
}
.nav__drawer-title{
  font-weight: 800;
  color:#1F1F1F;
}
.nav__drawer-close{
  width: 42px;
  height: 42px;
  border:0;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  cursor:pointer;
  font-size: 18px;
  line-height: 1;
}

.nav__drawer-link{
  display:flex;
  align-items:center;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  text-decoration:none;
  color:#1F1F1F;
  font-weight: 700;
  background: rgba(0,0,0,0.04);
}
.nav__drawer-link:active{ transform: scale(.99); }

.nav__drawer-contact{
  margin-top: auto;
  justify-content:center;
  width: 100%;
}

/* NAV responsive */
@media (max-width: 980px){
  .nav__links{ gap: 18px; }
  .brand{ min-width: auto; }
}
@media (max-width: 860px){
  /* sakrij desktop linkove */
  .nav__links{ display:none; }

  /* logo manji, bez teksta */
  .brand{ min-width:auto; gap: 0; }
  .brand__name{ display:none; }
  .brand__logo{ width: 44px; height: 44px; }

  /* burger tačno u sredini */
  .nav__toggle{
    display:inline-flex;
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
  }

  /* CONTACT na mobu = pill sa ikonom + tekst (FIX) */
  .btn-contact.nav__contact{
    height: 44px;
    min-width: 122px;
    padding: 0 14px;
    border-radius: 999px;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(4,139,207,.25);
  }
  .btn-contact.nav__contact .btn-contact__text{ display:inline; font-weight:800; }
  .btn-contact.nav__contact .btn-contact__icon{ display:inline-flex; }
}

/* =========================
   HERO
========================= */
.hero{
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}
.hero__inner{
  position: relative;
  height: 520px;
}

/* fixed grid background */
.hero__grid{
  position:absolute;
  inset: 0;
  border-radius: 14px;
  background:
    linear-gradient(to right, rgba(0,0,0,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .35;
  pointer-events:none;
}

/* Slider wrap */
.hero-slider{
  position: relative;
  z-index: 2;
  height: calc(520px - 130px);
  margin-top: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-stage{
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each slide */
.hero-slide{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:flex-start;
  padding-top: 24px;

  opacity:0;
  transform: translateX(30px) scale(.995);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events:none;
}
.hero-slide.is-active{
  opacity:1;
  transform: translateX(0) scale(1);
  pointer-events:auto;
}

/* === WAVE TITLE (FIXED on mobile) === */
.wave-title{
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin: 0;
  padding-inline: 12px;

  /* JS postavlja --wave-color po slajdu */
  --wave-blue: var(--wave-color, var(--brand));
}

.wave-title__base,
.wave-title__fill{
  display:block;
  width: 100%;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* ključ: skaluje i na desktop i na mobu bez “bježanja” */
  font-size: clamp(32px, 6.5vw, 96px);

  /* dozvoli wrap na mobu (2 reda) */
  white-space: normal;
  text-align: center;
}

.wave-title__base{
  position: relative;
  z-index: 1;
  color:#111;
}

.wave-title__fill{
  position: absolute;
  inset: 0;               /* poravnanje 1:1 sa bazom */
  z-index: 2;
  pointer-events: none;
  color: var(--wave-blue);

  /* GLATKA SVG MASKA (talas) */
  -webkit-mask-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'>\
  <path fill='white' d='M0 58 \
    C 12 50, 22 52, 35 60 \
    S 62 66, 80 60 \
    S 95 52, 100 56 \
    V 100 H 0 Z'/>\
</svg>");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;

  mask-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'>\
  <path fill='white' d='M0 58 \
    C 12 50, 22 52, 35 60 \
    S 62 66, 80 60 \
    S 95 52, 100 56 \
    V 100 H 0 Z'/>\
</svg>");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

/* Jet ski image */
.hero-ski{
  max-width: 820px;
  width: 70%;
  height: auto;
  margin-top: 12px;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.18));
  user-select:none;
  -webkit-user-drag: none;
}

/* Arrows */
.hero-arrow{
  position:absolute;
  top: 56%;
  transform: translateY(-50%);
  width: 63px;
  height: 63px;
  border-radius: 999px;
  border: 0;
  background: transparent; /* SVG ima shadow */
  box-shadow: none;
  padding: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index: 3;
  transition: transform .15s ease, filter .15s ease;
}
.hero-arrow svg{ display:block; }
.hero-arrow:hover{
  transform: translateY(-50%) scale(1.03);
  filter: brightness(0.98);
}
.hero-arrow--left{ left: 90px; }
.hero-arrow--right{ right: 90px; }

/* HERO responsive */
@media (max-width: 1100px){
  .hero__inner{ height: 460px; }
  .hero-slider{ height: calc(460px - 120px); }
  .hero-arrow--left{ left: 24px; }
  .hero-arrow--right{ right: 24px; }
  .hero-ski{ width: 84%; }
}
@media (max-width: 860px){
  .hero{ padding: 22px 0 14px; }
  .hero__inner{ height: 420px; }
  .hero-slider{ height: calc(420px - 90px); }
  .hero-arrow--left{ left: 12px; }
  .hero-arrow--right{ right: 12px; }
  .hero-ski{ width: min(92%, 420px); margin-top: 22px; }
}
@media (max-width: 520px){
  .hero__inner{ height: 360px; }
  .hero-slider{ height: calc(360px - 80px); }
  .hero-ski{ width: min(96%, 380px); }
}

/* =========================
   HERO CTA
========================= */
.hero-cta{
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 18px;
  padding: 0 var(--container-pad) 20px; /* FIX: odmak od ivica na mobu */
}
.hero-cta__title{
  color: #1F1F1F;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-cta__quote{
  color: #1F1F1F;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 44px;
}

.cta-buttons{
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-book,
.btn-offers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  transition: transform .15s ease, filter .15s ease;
}
.btn-book{
  background: var(--brand);
  color: #fff;
}
.btn-offers{
  background: var(--brand-soft);
  color: #1F1F1F;
}
.btn-book:hover,
.btn-offers:hover{
  transform: translateY(-1px);
  filter: brightness(0.98);
}

@media (max-width: 860px){
  .hero-cta{ margin-top: 10px; padding-bottom: 10px; }
  .hero-cta__title{ font-size: clamp(28px, 7vw, 40px); }
  .hero-cta__quote{ font-size: clamp(16px, 4vw, 20px); margin-bottom: 22px; }
  .cta-buttons{ gap: 12px; }
  .btn-book, .btn-offers{
    width: 100%;
    max-width: 420px;
  }
}

/* =========================
   RENTALS (WAVES + FIX MOBILE TITLE)
========================= */
.rentals{
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 90px 0 180px; /* bottom veći zbog overlap slika */
  overflow: hidden;      /* FIX: uklanja “liniju”/seam na iOS */
}

/* svg waves */
.rentals__wave{
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  line-height: 0; /* FIX: uklanja 1px gaps */
}
.rentals__wave svg{
  display:block;
  width: 100%;
  height: 140px;
  vertical-align: top; /* FIX seam */
}
.rentals__wave--top{
  top: -2px;              /* FIX: uklanja tanku liniju gore */
}
.rentals__wave--bottom{
  bottom: -2px;
}
.rentals__wave--bottom svg{
  transform: scaleX(-1);
  transform-origin: center;
}

/* content above waves */
.rentals__inner{
  position: relative;
  z-index: 1;
  padding-top: 40px;  /* da title ne upadne u bijeli top talas */
}

.rentals__title{
  margin: 0 0 34px;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
}

/* cards layout */
.rentals__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* card */
.rental-card{
  position: relative;
  background: var(--brand);
  border-radius: 16px;
  padding: 28px 28px 120px;
  min-height: 320px;
  overflow: visible;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}

.rental-card__name{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.rental-card__desc{
  margin: 0;
  max-width: 280px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}

/* overlap images */
.rental-card__img{
  position: absolute;
  bottom: -78px;
  width: 440px;
  height: auto;
  filter: drop-shadow(0 22px 22px rgba(0,0,0,.25));
  user-select: none;
  pointer-events: none;
}
.rental-card__img--left{ right: -60px; transform: scaleX(-1) rotate(-8deg); }
.rental-card__img--right{ right: -80px; transform: scaleX(-1) rotate(-10deg); }

/* rentals responsive */
@media (max-width: 1100px){
  .rentals__grid{ gap: 50px; }
  .rental-card__img{ width: 380px; bottom: -68px; }
  .rentals__wave svg{ height: 120px; }
}
@media (max-width: 900px){
  .rentals{ padding: 120px 0 220px; }
  .rentals__grid{ grid-template-columns: 1fr; gap: 40px; }
  .rental-card__desc{ max-width: 420px; }
  .rental-card__img{ right: -10px; width: 380px; }
  .rentals__title{ text-align:center; }
}
@media (max-width: 520px){
  /* FIX: title da ne upadne u bijeli talas */
  .rentals{
    padding: 150px 0 240px; /* TOP povećan + bottom ostaje velik */
  }
  .rentals__inner{ padding-top: 20px; }
  .rentals__wave svg{ height: 120px; }

  .rentals__grid{ gap: 28px; }
  .rental-card{
    padding: 22px 18px 150px;
    border-radius: 14px;
    min-height: 280px;
  }
  .rental-card__name{ font-size: 18px; }
  .rental-card__desc{ font-size: 14px; line-height: 1.4; max-width:none; }

  .rental-card__img{
    width: 320px;
    bottom: -70px;
    right: -24px;
  }
}

/* =========================
   SAFETY
========================= */
.safety{
  background:#fff;
  padding: 56px 0 86px;
}
.safety__title{
  margin: 0 0 34px;
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  color: #1F1F1F;
}
.safety-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 58px;
  align-items: start;
}
.safety-card{
  background:#fff;
  border: 3px solid var(--brand);
  border-radius: 32px;
  padding: 28px 28px 30px;
  min-height: 210px;
}
.safety-card__title{
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  color:#1F1F1F;
}
.safety-card__text{
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color:#1F1F1F;
  max-width: 270px;
}
@media (max-width: 1100px){
  .safety-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px){
  .safety{ padding: 40px 0 70px; }
  .safety__title{ font-size: 34px; }
  .safety-grid{ grid-template-columns: 1fr; gap: 26px; }
  .safety-card__text{ max-width: none; }
}
@media (max-width: 520px){
  .safety__title{ font-size: 32px; }
  .safety-card{ border-radius: 24px; padding: 22px; min-height:auto; }
  .safety-card__title{ font-size: 18px; }
}

/* =========================
   TESTIMONIAL
========================= */
.testimonial{
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 140px 0 140px;
  overflow: hidden;
}
.testimonial__wave{
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}
.testimonial__wave svg{
  width: 100%;
  height: 220px;
  display: block;
  vertical-align: top;
}
.testimonial__wave--top{ top: -2px; }
.testimonial__wave--bottom{ bottom: -2px; }
.testimonial__wave--bottom svg{
  transform:scaleX(-1);
  transform-origin:center;
}

.testimonial__inner{
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial__content{
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: #0B76C5;
  font-size: 20px;
  font-weight: 800;
}
.testimonial__quote{
  margin: 26px auto 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  max-width: 560px;
}
.testimonial__line{
  width: 520px;
  max-width: 80%;
  height: 1px;
  background: rgba(255,255,255,.55);
  margin: 26px auto 14px;
}
.testimonial__author{
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  margin-bottom: 10px;
}
.testimonial__nav{
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.t-nav{
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: transform .15s ease, color .15s ease;
}
.t-nav:hover{ transform: translateY(-1px); color: #fff; }

.testimonial__deco{
  position: absolute;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.testimonial__deco--left{
  left: 130px;
  top: 140px;
  width: 90px;
  transform: rotate(-18deg);
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.35));
}
.testimonial__deco--right{
  right: 110px;
  bottom: 150px;
  width: 130px;
  transform: rotate(18deg);
  filter: drop-shadow(0 22px 26px rgba(0,0,0,.35));
}
@media (max-width: 1100px){
  .testimonial__quote{ font-size: 22px; }
  .testimonial__wave svg{ height: 190px; }
  .testimonial__deco--left{ left: 40px; top: 120px; }
  .testimonial__deco--right{ right: 40px; bottom: 130px; }
}
@media (max-width: 900px){
  .testimonial__deco{ display: none; }
}
@media (max-width: 520px){
  .testimonial{ padding: 110px 0; }
  .testimonial__inner{ min-height: 420px; }
  .testimonial__wave svg{ height: 160px; }
  .testimonial__quote{ font-size: 18px; max-width: 92%; }
  .testimonial__line{ width: 86%; }
}

/* =========================
   CONTACT
========================= */
.contact{
  padding: 90px 0 110px;
  background: #fff;
}
.contact__title{
  margin: 0 0 28px;
  text-align: center;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #1F1F1F;
}
.contact__form{
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.contact__label{
  display:block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #757575;
}
.contact__label--mt{ margin-top: 18px; }

.contact__input,
.contact__textarea{
  width: 100%;
  border: 2px solid #1F1F1F;
  border-radius: 12px;
  background: #2F3640;
  color: #fff;
  outline: none;
  font-size: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.contact__input{ height: 52px; }
.contact__textarea{ min-height: 150px; resize: vertical; }

.contact__input:focus,
.contact__textarea:focus{
  border-color: var(--brand);
  box-shadow: 0 12px 22px rgba(4,139,207,.18);
}

.contact__btn{
  display: block;
  margin: 22px auto 0;
  height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(4,139,207,.25);
  transition: transform .15s ease, filter .15s ease;
}
.contact__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}
@media (max-width: 760px){
  .contact{ padding: 70px 0 90px; }
  .contact__title{ font-size: 34px; }
  .contact__form{ max-width: 92%; }
}
@media (max-width: 520px){
  .contact__title{ font-size: 32px; }
  .contact__input, .contact__textarea{
    font-size: 15px;
    padding: 12px 14px;
  }
  .contact__btn{
    height: 42px;
    width: 160px;
  }
}

/* =========================
   FOOTER
========================= */
.site-footer{
  position: relative;
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 140px 0 70px;
  overflow: hidden;
}
.site-footer__wave{
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}
.site-footer__wave svg{
  width: 100%;
  height: 220px;
  display: block;
  vertical-align: top;
}
.site-footer__wave--top{ top: -2px; }

.site-footer__inner{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.site-footer__logo{
  width:120px;
  height:auto;
  object-fit:contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .45;
}
.site-footer__follow{
  margin: 4px 0 2px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}
.site-footer__social{
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.site-footer__social-link{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: rgba(255,255,255,.45) !important;
  transition: transform .15s ease, color .15s ease;
  text-decoration: none;
}
.site-footer__social-link:hover{
  transform: translateY(-1px);
  color: rgba(255,255,255,.75);
}
.site-footer__line{
  width: 62%;
  max-width: 720px;
  height: 1px;
  background: rgba(255,255,255,.25);
  margin: 18px 0 10px;
}
.site-footer__copy{
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
}
.site-footer__credits{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.site-footer__made{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.35);
}
@media (max-width: 860px){
  .site-footer{ padding: 120px 0 56px; }
  .site-footer__wave svg{ height: 180px; }
  .site-footer__logo{ width: 96px; }
  .site-footer__line{ width: 86%; }
}
@media (max-width: 520px){
  .site-footer{ padding: 110px 0 50px; }
  .site-footer__wave svg{ height: 160px; }
  .site-footer__social-link{ width: 38px; height: 38px; }
  .site-footer__copy, .site-footer__made{ font-size: 13px; }
}
/* Smooth scroll za anchor linkove (#sekcija) */
html {
  scroll-behavior: smooth;
}

/* Ako imaš fixed/sticky header, da sekcija ne ode “ispod” headera */
:root {
  --header-offset: 90px; /* prilagodi visini tvog headera na desktop */
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

/* Mobile offset (ako ti je header niži/viši na mobitelu) */
@media (max-width: 768px) {
  :root {
    --header-offset: 80px;
  }
}
