/* =========================================================
   Akademija za popularnu kulturu i umetnost
   Glavni stilovi
   ========================================================= */

:root {
  --burgundy: #6e1423;
  --burgundy-dark: #4a0d18;
  --burgundy-light: #9c2a3a;
  --gold: #c9a227;
  --gold-light: #e3c75a;
  --ink: #1d1a17;
  --paper: #faf7f2;
  --paper-2: #f1ece3;
  --muted: #6b635a;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(29, 26, 23, 0.12);
  --radius: 14px;
  --maxw: 1160px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--burgundy-dark);
  margin: 0 0 0.5em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.005em; }
h3 { font-size: 1.5rem; }

a { color: var(--burgundy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

p { margin: 0 0 1.1em; }

img { max-width: 100%; display: block; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn-primary {
  background: var(--gold);
  color: var(--burgundy-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--white);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  isolation: isolate;
  border-bottom: 1px solid var(--paper-2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--burgundy-dark);
  flex: 0 0 auto;          /* logo se nikad ne skuplja u nav redu */
  min-width: 0;
}
.brand:hover { color: var(--burgundy-dark); }
.brand-logo {
  height: 76px;
  width: auto;
  max-width: none;          /* spreči horizontalno sabijanje */
  flex: 0 0 auto;
  display: block;
  object-fit: contain;      /* uvek čuva proporcije, nikad spljošteno */
}
.brand-logo-light {
  width: 300px;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;           /* centriran u futeru */
  object-fit: contain;
}
.footer-logo {
  text-align: center;
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  border: 2px solid var(--gold);
}
.brand-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--burgundy-dark);
}
.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { background: var(--paper-2); color: var(--burgundy); }
.nav-links a.active { color: var(--burgundy); font-weight: 700; }
.nav-cta { margin-left: 6px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--burgundy-dark);
  border-radius: 3px;
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 120px 0 130px;
  background:
    linear-gradient(rgba(74, 13, 24, 0.82), rgba(74, 13, 24, 0.88)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='%236e1423'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23792130' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover;
  overflow: hidden;
}
/* pozadinski video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* pozadinska slika banera (prikazuje se kada se postavi u admin panelu) */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-img:not([src]) { display: none; }
/* tamni preliv preko videa da tekst ostane čitljiv (neutralan, ne crveni) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(20, 16, 14, 0.40), rgba(20, 16, 14, 0.58));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 50% 20%, rgba(201,162,39,0.18), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 3; }
.hero h1 { color: var(--white); margin-bottom: .3em; position: relative; z-index: 1; }
.hero .kicker {
  display: inline-block;
  color: var(--gold-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.hero .slogan {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold-light);
  margin: 18px 0 30px;
  position: relative;
  z-index: 1;
}
.hero .lead {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  position: relative;
  z-index: 1;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- Page header (interior) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: var(--white);
  padding: 70px 0 60px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: .25em; }
.page-header p { color: var(--gold-light); margin: 0; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--paper-2); }
.section-burgundy { background: var(--burgundy-dark); color: var(--paper); }
.section-burgundy h2, .section-burgundy h3 { color: var(--white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .kicker {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head p { color: var(--muted); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(29,26,23,0.16); }
.card .icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 { color: var(--burgundy-dark); }
.card p { color: var(--muted); margin-bottom: 0; }

/* ---------- Two-column intro ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split .media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.4rem;
  text-align: center;
  padding: 20px;
}
/* slika unutar media bloka (kad se postavi u admin panelu) */
.media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-img:not([src]) { display: none; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.stat .label { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* ---------- News cards ---------- */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s;
}
.news-card:hover { transform: translateY(-5px); }
.news-card .thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy-dark));
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 2.5rem;
}
.news-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card .tag {
  align-self: flex-start;
  background: var(--paper-2);
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.news-card .date { color: var(--muted); font-size: 0.85rem; margin-bottom: 8px; }
.news-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.news-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.news-card .more { font-weight: 600; font-size: 0.92rem; margin-top: 10px; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s;
}
.gallery-item:nth-child(3n+2) { background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy-dark)); }
.gallery-item:nth-child(3n) { background: linear-gradient(135deg, var(--gold), var(--burgundy)); }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--sans);
  padding: 26px 14px 12px;
  text-align: left;
}

/* ---------- Books ---------- */
.book {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.book .cover {
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, var(--burgundy), var(--burgundy-dark));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--gold-light);
  font-family: var(--serif);
  position: relative;
}
.book .cover::before {
  content: "";
  position: absolute;
  left: 14px; top: 10px; bottom: 10px;
  width: 4px;
  background: rgba(0,0,0,0.25);
}
.book .cover .title-on-cover { font-size: 1.15rem; line-height: 1.25; }
.book .cover .author-on-cover { font-size: 0.85rem; opacity: 0.85; margin-top: 10px; font-family: var(--sans); }
.book .info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.book .info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.book .info .author { color: var(--muted); font-size: 0.9rem; margin-bottom: 10px; }
.book .info p { font-size: 0.92rem; color: var(--muted); flex: 1; }
.book .info .price { font-weight: 700; color: var(--burgundy); margin: 10px 0; }

/* ---------- Lists with check ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  position: relative;
  padding: 10px 0 10px 38px;
  border-bottom: 1px dashed var(--paper-2);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 9px;
  width: 26px; height: 26px;
  background: var(--gold);
  color: var(--burgundy-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--gold);
  border-radius: 3px;
}
.timeline-item { position: relative; padding: 0 0 34px 28px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px; top: 4px;
  width: 16px; height: 16px;
  background: var(--burgundy);
  border: 3px solid var(--gold);
  border-radius: 50%;
}
.timeline-item .year { font-family: var(--serif); color: var(--gold); font-size: 1.25rem; font-weight: 700; }
.timeline-item h3 { font-size: 1.15rem; margin: 4px 0; }
.timeline-item p { color: var(--muted); margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--paper-2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--paper);
  transition: border .2s, box-shadow .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-success {
  display: none;
  background: #eaf6ec;
  border: 1.5px solid #9ed3a8;
  color: #226b34;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-item .ci-icon {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: var(--gold-light);
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.contact-item strong { display: block; color: var(--burgundy-dark); }
.contact-item span, .contact-item a { color: var(--muted); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 56px 30px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 26px;
  isolation: isolate;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--gold-light); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-brand .brand-mark { margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}
.social-row a:hover { background: var(--burgundy); color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- Prose ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 8px; }
.lead-text { font-size: 1.15rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .d-br { display: none; }
  .brand-logo { height: 58px; }
  .brand-logo-light {
    width: 40vw;
    max-width: 100%;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    top: 86px;
    right: 0;
    width: min(82vw, 320px);
    max-width: 100vw;
    height: calc(100vh - 86px);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 6px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform .3s;
    overflow-y: auto;
    visibility: hidden;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links a { padding: 13px 14px; border-radius: 10px; white-space: normal; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-cta .btn { display: block; text-align: center; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 70px 0 80px; }
  .page-header { padding: 50px 0 44px; }
  section { padding: 60px 0; }
  .section-tight { padding: 44px 0; }
  .section-head { margin-bottom: 40px; }
}

@media (max-width: 400px) {
  .stats { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

/* =========================================================
   Animacije pri skrolovanju (reveal)
   Aktiviraju se samo kada JS doda klasu .anim na <html>,
   pa bez JS-a sadržaj ostaje normalno vidljiv.
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .anim .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.8s cubic-bezier(0.16, 0.84, 0.44, 1),
      transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: opacity, transform;
  }
  /* slike / vizuali — blagi zum umesto pomaka */
  .anim .reveal-zoom {
    opacity: 0;
    transform: scale(0.92);
    transition:
      opacity 0.9s cubic-bezier(0.16, 0.84, 0.44, 1),
      transform 0.9s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: opacity, transform;
  }
  /* dolazak sa strane za split sekcije */
  .anim .reveal-left { transform: translateX(-40px); }
  .anim .reveal-right { transform: translateX(40px); }

  .anim .reveal.visible,
  .anim .reveal-zoom.visible {
    opacity: 1;
    transform: none;
  }

  /* suptilan hover „lift" za slike u galeriji i karticama je već definisan;
     ovde dodajemo nežno isticanje naslova sekcija */
  .anim .section-head .kicker { transition: letter-spacing 0.5s ease; }
}

/* =========================================================
   Animacija pri učitavanju (hero i zaglavlja stranica)
   Keyframe pristup -> bez treperenja, kreće odmah na vrhu.
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  @keyframes introUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
  }
  .hero .kicker,
  .hero h1,
  .hero .slogan,
  .hero .lead,
  .hero-actions,
  .page-header .breadcrumb,
  .page-header h1,
  .page-header p {
    opacity: 0;
    animation: introUp 0.9s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
  }
  .hero .kicker       { animation-delay: 0.05s; }
  .hero h1            { animation-delay: 0.18s; }
  .hero .slogan       { animation-delay: 0.34s; }
  .hero .lead         { animation-delay: 0.48s; }
  .hero-actions       { animation-delay: 0.62s; }

  .page-header .breadcrumb { animation-delay: 0.05s; }
  .page-header h1          { animation-delay: 0.16s; }
  .page-header p           { animation-delay: 0.30s; }
}
