/* =========================================================
   Produkcija Snova — styles.css
   Light, friendly theme with soft sky-blue accent.
   ========================================================= */

:root {
  --bg:        #f6f9fc;
  --bg-alt:    #eaf1f9;
  --surface:   #ffffff;
  --surface-2: #f0f5fb;
  --border:    rgba(28, 55, 98, 0.10);
  --border-2:  rgba(28, 55, 98, 0.18);

  --text:      #233143;
  --muted:     #5a6982;
  --muted-2:   #8995a8;

  --accent:      #4f8fd6;
  --accent-soft: #74a9e2;
  --accent-deep: #2f6fb8;
  --accent-grad: linear-gradient(135deg, #74a9e2 0%, #4f8fd6 50%, #2f6fb8 100%);
  --btn-grad:    linear-gradient(135deg, #5b97d8 0%, #3a80c6 60%, #2f6fb8 100%);

  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1140px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }   /* hidden attribute must win over class display rules (e.g. .cam-modal) */

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--text); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.3rem; }

.eyebrow {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}

.accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 0.9rem 1.7rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--btn-grad);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(47, 111, 184, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(47, 111, 184, 0.38); }

.btn-ghost {
  background: #ffffff;
  color: var(--accent-deep);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47, 111, 184, 0.12); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(28, 55, 98, 0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.brand-mark { width: 28px; height: 28px; fill: var(--accent); flex: none; filter: drop-shadow(0 2px 5px rgba(79, 143, 214, 0.35)); }
.brand-text { font-family: "Dancing Script", "Playfair Display", cursive; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.01em; line-height: 1; color: var(--accent-deep); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a:not(.btn) { color: var(--muted); font-size: 0.94rem; font-weight: 500; transition: color 0.2s; }
.nav a:not(.btn):hover { color: var(--accent-deep); }
.nav-cta { padding: 0.55rem 1.15rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }

/* ---------- Language toggle (HR / EN) ---------- */
.header-actions { display: inline-flex; align-items: center; gap: 1rem; }
.lang-toggle { display: inline-flex; flex: none; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; background: rgba(255, 255, 255, 0.6); }
.lang-btn { appearance: none; -webkit-appearance: none; border: 0; background: transparent; cursor: pointer; padding: 0.32rem 0.72rem; font: inherit; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--muted); line-height: 1; transition: background 0.2s, color 0.2s; }
.lang-btn + .lang-btn { border-left: 1px solid var(--border); }
.lang-btn.is-active { background: var(--accent); color: #fff; }
.lang-btn:hover:not(.is-active) { color: var(--accent-deep); }
.nav .lang-toggle { margin-left: 0.4rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 110px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(116, 169, 226, 0.32), transparent 62%),
    radial-gradient(680px 400px at 85% 18%, rgba(159, 196, 235, 0.30), transparent 60%),
    radial-gradient(620px 380px at 12% 35%, rgba(196, 214, 240, 0.28), transparent 60%);
  pointer-events: none;
}
.hero-grain { display: none; }
.hero-inner { position: relative; text-align: center; max-width: 860px; margin: 0 auto; }
.hero-title { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: 1.4rem; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); max-width: 640px; margin: 0 auto 2.2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-strip { margin-top: 2.8rem; color: var(--muted-2); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- Section base ---------- */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 3.2rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- O nama ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center; }
.about-copy p { color: var(--muted); margin-bottom: 1rem; }
.ticks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.4rem; margin-top: 1.6rem; }
.ticks li { position: relative; padding-left: 1.7rem; color: var(--text); font-weight: 500; font-size: 0.96rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent-grad); box-shadow: 0 0 8px rgba(79, 143, 214, 0.5);
}

.about-visual { position: relative; }
.filmstrip { display: flex; gap: 6px; margin-bottom: 14px; }
.filmstrip span { flex: 1; height: 26px; border-radius: 4px; background: repeating-linear-gradient(90deg, var(--accent-soft) 0 8px, transparent 8px 14px); opacity: 0.5; border: 1px solid var(--border); }
.about-card {
  background: linear-gradient(160deg, #ffffff 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.6rem 2rem;
  text-align: center;
  box-shadow: 0 24px 50px rgba(28, 55, 98, 0.10);
}
.about-card-icon { width: 46px; height: 46px; margin: 0 auto 1rem; color: var(--accent); }
.about-card-big { font-family: "Playfair Display", serif; font-style: italic; font-size: 2.4rem; color: var(--accent-deep); }
.about-card-small { color: var(--muted); font-size: 0.86rem; letter-spacing: 0.06em; margin-top: 0.4rem; }

/* ---------- Cards (Usluge) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(28, 55, 98, 0.05);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--accent-soft); box-shadow: 0 18px 40px rgba(28, 55, 98, 0.12); }
.card-icon {
  display: inline-flex; width: 52px; height: 52px; border-radius: 12px;
  align-items: center; justify-content: center; margin-bottom: 1.2rem;
  background: rgba(79, 143, 214, 0.12); color: var(--accent-deep);
  border: 1px solid rgba(79, 143, 214, 0.22);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Reference / Projekti ---------- */
.projects { grid-template-columns: repeat(4, 1fr); }
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 55, 98, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.project-card:hover { transform: translateY(-5px); border-color: var(--accent-soft); box-shadow: 0 18px 40px rgba(28, 55, 98, 0.12); }
.project-media {
  position: relative;
  height: 220px;
  background: #1b2a3d;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.project-media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.project-media--logo { background: linear-gradient(150deg, var(--accent) 0%, var(--accent-deep) 100%); }
.project-media--logo img { max-width: 78%; max-height: 58%; }
.project-type {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: rgba(10, 18, 30, 0.62); backdrop-filter: blur(4px);
  padding: 0.25rem 0.7rem; border-radius: 999px;
}
.project-body { padding: 1.3rem 1.4rem 1.5rem; }

.projects-note { text-align: center; color: var(--muted-2); font-size: 0.78rem; line-height: 1.5; max-width: 640px; margin: 2rem auto 0; }
.project-body h3 { margin-bottom: 0.2rem; }
.project-meta { color: var(--accent-deep); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.5rem; }
.project-body p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.6rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: 0 10px 30px rgba(28, 55, 98, 0.05); }
.step-num { font-family: "Playfair Display", serif; font-size: 2.2rem; color: var(--accent-soft); display: block; margin-bottom: 0.8rem; }
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Band (Za produkcije) ---------- */
.band { background: linear-gradient(135deg, #e6f0fb 0%, #f3f8fd 70%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 76px 0; position: relative; }
.band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(620px 320px at 82% 50%, rgba(116, 169, 226, 0.28), transparent 70%); pointer-events: none; }
.band-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.band-copy { max-width: 600px; }
.band-copy p { color: var(--muted); margin-top: 0.6rem; }
.band-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Castinzi ---------- */
.casting-cards { margin-bottom: 2.2rem; }
.casting-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 10px 30px rgba(28, 55, 98, 0.05); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.casting-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 18px 40px rgba(28, 55, 98, 0.12); }
.badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); background: rgba(79, 143, 214, 0.14); border: 1px solid rgba(79, 143, 214, 0.28); padding: 0.25rem 0.7rem; border-radius: 999px; margin-bottom: 1rem; }
.casting-card h3 { margin-bottom: 0.3rem; }
.casting-meta { color: var(--muted-2); font-size: 0.84rem; margin-bottom: 0.7rem; }
.casting-card p { color: var(--muted); font-size: 0.95rem; }
.card-link { display: inline-block; margin-top: 1rem; color: var(--accent-deep); font-weight: 600; font-size: 0.92rem; transition: color 0.2s; }
.card-link:hover { color: var(--accent); }
.casting-follow { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Prijava (CTA on home + dedicated page) ---------- */
.prijava-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: start; }
.prijava-copy p { color: var(--muted); margin-bottom: 1rem; }
.prijava-note { font-size: 0.86rem; color: var(--muted-2); border-left: 2px solid var(--accent); padding-left: 1rem; }

.prijava-cta { max-width: 640px; margin: 0 auto; text-align: center; }
.prijava-cta p { color: var(--muted); margin-bottom: 1.6rem; }
.prijava-cta .btn { margin-bottom: 1.6rem; }
.prijava-cta .prijava-note { display: inline-block; text-align: left; max-width: 460px; }

/* dedicated prijava.html page */
.site-header--static { position: static; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(28, 55, 98, 0.05); }
.back-home { color: var(--muted); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.back-home:hover { color: var(--accent-deep); }
.prijava-main { padding: 3.2rem 0 5rem; background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 220px); }
.form-hero { text-align: center; max-width: 660px; margin: 0 auto 2.4rem; padding: 0 24px; }
.form-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.8rem; }
.form-hero-lead { color: var(--muted); font-size: 1.05rem; }
.form-hero .req, .field-consent .req { color: var(--accent-deep); font-weight: 700; }
.form-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.prijava-page .prijava-form { padding: 2.4rem; }
.prijava-page .field-group { margin-bottom: 1.6rem; }
.prijava-page .field-group legend { font-size: 0.95rem; color: var(--accent-deep); }
.prijava-footer { padding-top: 0; }

.prijava-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: 0 24px 50px rgba(28, 55, 98, 0.10); }
.field { margin-bottom: 1.1rem; }
.field-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.field-row .field { flex: 1 1 140px; margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.field label span { color: var(--accent-deep); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #ffffff;
  box-shadow: 0 0 0 3px rgba(79, 143, 214, 0.16);
}
.field textarea { resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6982' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }
.form-alt { text-align: center; font-size: 0.86rem; color: var(--muted); margin-top: 1rem; }
.form-alt a { color: var(--accent-deep); }

.field-hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem; }
.field-hint--error { color: #c0392b; }
.photo-warn { color: #9a6b00; font-weight: 600; }
.photo-tips { list-style: none; margin: 0.55rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.photo-tips li { position: relative; padding-left: 1.1rem; font-size: 0.78rem; color: var(--muted); line-height: 1.35; }
.photo-tips li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.photo-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.photo-actions input[type="file"] { flex: 1 1 200px; min-width: 0; }
.btn-cam { padding: 0.6rem 1rem; font-size: 0.92rem; white-space: nowrap; }
.photo-previews { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.photo-previews img, .photo-thumb-wrap img { width: 64px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border-2); display: block; }
.photo-thumb-wrap { position: relative; }
.photo-thumb-wrap .photo-del { position: absolute; top: -7px; right: -7px; width: 20px; height: 20px; border: none; border-radius: 50%; background: #c0392b; color: #fff; font-size: 13px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }

/* ---- Camera modal ---- */
.cam-modal { position: fixed; inset: 0; z-index: 1000; background: rgba(10, 18, 30, 0.92); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.cam-box { width: 100%; max-width: 520px; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cam-box video { width: 100%; max-height: 70vh; border-radius: var(--radius); background: #000; transform: scaleX(-1); }
.cam-box video.cam-flash { filter: brightness(2.2); transition: filter 0.05s; }
.cam-controls { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
.cam-err { color: #ffb3b3; font-size: 0.9rem; text-align: center; max-width: 420px; }
.field-group { border: 1px solid var(--border-2); border-radius: var(--radius-sm); padding: 1rem 1.1rem 0; margin-bottom: 1.1rem; min-width: 0; }
.field-group legend { font-size: 0.85rem; font-weight: 600; color: var(--text); padding: 0 0.4rem; }
.field-group .legend-opt { font-weight: 400; color: var(--muted); }
.field-group .field-row { margin-bottom: 0; }
.field input[type="file"] { padding: 0.55rem 0.7rem; background: var(--surface-2); cursor: pointer; }
.field input[type="file"]::file-selector-button {
  font: inherit; font-size: 0.85rem; margin-right: 0.8rem; padding: 0.4rem 0.8rem; cursor: pointer;
  color: var(--accent-deep); background: #ffffff; border: 1px solid var(--border-2); border-radius: var(--radius-sm);
}
.field-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.86rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.5; cursor: pointer; }
.field-consent input { width: 1.05rem; height: 1.05rem; margin-top: 0.15rem; flex: 0 0 auto; accent-color: var(--accent); }
.field-consent .req { color: var(--accent-deep); }

.form-status { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; line-height: 1.45; border: 1px solid var(--border-2); }
.form-status--info  { color: var(--muted); background: var(--surface-2); }
.form-status--ok    { color: #1c7a4e; background: rgba(46, 160, 105, 0.12); border-color: rgba(46, 160, 105, 0.4); }
.form-status--error { color: #c0392b; background: rgba(200, 60, 60, 0.10); border-color: rgba(200, 60, 60, 0.35); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.contact-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; padding: 2rem 1.4rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(28, 55, 98, 0.05); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.contact-item:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 18px 40px rgba(28, 55, 98, 0.12); }
.contact-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(79, 143, 214, 0.12); color: var(--accent-deep); border: 1px solid rgba(79, 143, 214, 0.22); }
.contact-icon svg { width: 24px; height: 24px; }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); }
.contact-value { font-weight: 600; color: var(--text); }
.contact-loc { text-align: center; color: var(--muted); margin-top: 2rem; letter-spacing: 0.08em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding-top: 3.4rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; padding-bottom: 2.6rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.8rem; max-width: 260px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; align-content: start; }
.footer-nav a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-deep); }
.footer-social { display: flex; gap: 0.8rem; align-items: flex-start; }
.footer-social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-2); border-radius: 50%; color: var(--muted); background: #ffffff; transition: color 0.2s, border-color 0.2s, transform 0.2s; }
.footer-social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.4rem 24px; }
.footer-bottom p { color: var(--muted-2); font-size: 0.84rem; text-align: center; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .cards, .steps, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .prijava-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .about-visual { max-width: 460px; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(28, 55, 98, 0.10);
    padding: 0.6rem 24px 1.4rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .site-header.nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav a:not(.btn) { padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-top: 1rem; text-align: center; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 130px 0 80px; }
  .section { padding: 72px 0; }
  .field-row .field { flex-basis: 100%; }
  .band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .cards, .steps, .contact-grid, .ticks { grid-template-columns: 1fr; }
  .casting-follow .btn, .hero-actions .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
