:root{
  --brand:#ff0077;
  --bg-dark:#121212;
  --bg-light:#1e1e1e;
  --text-light:#f3f3f3;
}

/*------ RESET ------*/
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Inter,sans-serif;background:var(--bg-dark);color:var(--text-light);line-height:1.6;overflow-x:hidden}
img{max-width:100%;display:block}
h1,h2,h3{font-weight:800}
a{color:inherit;text-decoration:none}

/*------ LANGUAGE RADIAL ------*/
.lang-switch{
  position:fixed;top:2cm;left:24px;z-index:1000;
  --size:48px;
  width:200px;height:200px; /* veći hitbox */
}
.lang-switch button{
  width:var(--size);height:var(--size);
  border-radius:50%;border:none;cursor:pointer;
  background:rgba(255,255,255,.12);backdrop-filter:blur(5px);
  color:#fff;font-weight:600;transition:transform .3s ease;
  position:absolute;inset:0;margin:auto;
}
.lang-switch:hover button:nth-child(1){transform:translate(0,-90px)}
.lang-switch:hover button:nth-child(2){transform:translate(64px,-64px)}
.lang-switch:hover button:nth-child(3){transform:translate(90px,0)}
.lang-switch:hover button:nth-child(4){transform:translate(64px,64px)}
.lang-switch button:hover{background:var(--brand)}

/*------ HERO SPLIT ------*/
.stage{display:grid;grid-template-columns:1fr 1fr;height:100vh;min-height:640px;overflow:hidden}
.stage picture{grid-column:1/2;grid-row:1/-1;position:relative}
.stage picture img{width:100%;height:100%;object-fit:cover;filter:brightness(.65)}
.hero-content{grid-column:2/3;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:3rem;gap:1.5rem;background:linear-gradient(135deg,rgba(18,18,18,.85),rgba(18,18,18,.6));backdrop-filter:blur(6px)}
.hero-content h1{font-size:clamp(2.4rem,6vw,4.5rem);text-shadow:2px 2px 6px rgba(0,0,0,.45)}
.hero-content p{font-size:clamp(1rem,2vw,1.6rem);font-weight:600;opacity:.9}

.stage::after{content:"";position:absolute;bottom:-1px;left:0;width:100%;height:120px;background:var(--bg-dark);clip-path:polygon(0 0,100% 100%,0 100%)}

/*------ INFO GRID SECTION ------*/
.info-section{padding:6rem 2rem 4rem;background:var(--bg-light);clip-path:polygon(0 0,100% 4%,100% 96%,0 100%)}
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2.8rem;max-width:1200px;margin:0 auto}
.info-card{background:rgba(255,255,255,.02);border:1px solid rgba(255,255,255,.06);border-radius:16px;padding:2.2rem;text-align:center;transition:transform .25s,box-shadow .25s}
.info-card:hover{transform:translateY(-6px);box-shadow:0 8px 24px rgba(0,0,0,.35)}
.info-card img{width:96px;height:96px;margin:0 auto 1.4rem;filter:grayscale(.15) contrast(1.05)}

.info-section h2{grid-column:1/-1;font-size:2rem;margin-bottom:2rem;color:var(--brand);text-align:center}

.about-text{grid-column:1/-1;font-size:1.1rem;max-width:820px;margin:0 auto;opacity:.92}

/*------ GALLERY ------*/
.gallery-section{
  padding:5rem 2rem;
  background:var(--bg-dark);
  text-align:center;
}
.gallery-section h2{color:var(--brand);margin-bottom:2.5rem}

/* FLEX‑MASONRY: svaki item 280px širine, blok centriran */
.masonry{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  justify-content:center; /* ⬅️  ključno */
  max-width:1200px;
  margin:0 auto;
}
.masonry a{flex:0 1 280px;border-radius:12px;overflow:hidden;transition:transform .25s}
.masonry a img{width:100%;height:100%;object-fit:cover;display:block}
.masonry a:hover{transform:scale(1.04)}

@media(max-width:900px){.masonry a{flex:0 1 220px}}
@media(max-width:600px){.masonry a{flex:0 1 100%}}

/*------ MAP & CONTACT ------*/ & CONTACT ------*/
.map-contact{display:grid;grid-template-columns:1fr 1fr;max-width:1200px;margin:0 auto;padding:4rem 2rem;gap:2rem;background:var(--bg-light);clip-path:polygon(0 4%,100% 0,100% 100%,0 96%)}
.map-contact iframe{width:100%;height:100%;border:0;border-radius:14px;min-height:320px}
.contact-details{display:flex;flex-direction:column;justify-content:center;font-size:1.1rem;gap:1.2rem;padding:1rem 2rem}
.contact-details strong{color:var(--brand)}

/*------ CTA BAR ------*/
.cta-bar{position:fixed;bottom:0;left:50%;translate:-50% 0;width:clamp(280px,90vw,600px);background:var(--brand);padding:1.2rem 1.8rem;border-radius:18px 18px 0 0;text-align:center;box-shadow:0 -4px 16px rgba(0,0,0,.45);z-index:900}
.cta-bar a{display:inline-block;color:#fff;font-size:1.15rem;font-weight:600}
.cta-bar a:hover{text-decoration:underline}

/*------ SCROLLBAR ------*/
::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-track{background:var(--bg-dark)}
::-webkit-scrollbar-thumb{background:var(--brand);border-radius:6px}
