:root{
  --bg:#111611;
  --bg-2:#182019;
  --olive:#53684b;
  --olive-2:#6d7d59;
  --cream:#f0e7c8;
  --gold:#c7a84e;
  --white:#f7f5ee;
  --muted:#b6b9ae;
  --line:rgba(240,231,200,.16);
  --shadow:0 24px 80px rgba(0,0,0,.35);
}

/* =========================================
   GLOBAL
========================================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--white);
  background:var(--bg);
  font-family:"Montserrat",sans-serif;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

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

button{
  font:inherit;
}

.top-stripe{
  height:5px;
  background:linear-gradient(
    90deg,
    var(--cream),
    var(--gold),
    var(--cream)
  );
}


/* =========================================
   HEADER
========================================= */

.site-header{
  position:fixed;
  top:5px;
  left:0;
  right:0;
  height:82px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 5vw;
  z-index:50;

  background:linear-gradient(
    to bottom,
    rgba(12,16,12,.92),
    rgba(12,16,12,.72),
    transparent
  );

  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  letter-spacing:.08em;
}

.brand-mark{
  width:38px;
  height:38px;

  border:1px solid var(--gold);

  display:grid;
  place-items:center;

  transform:rotate(45deg);
  color:var(--gold);
}

.brand strong{
  font-family:"Cinzel",serif;
  display:block;
  font-size:15px;
  color:var(--cream);
}

.brand small{
  color:var(--muted);
  font-size:10px;
}

.nav{
  display:flex;
  gap:28px;
  align-items:center;
}

.nav a{
  position:relative;

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

  text-transform:uppercase;
  letter-spacing:.12em;

  color:#dbded4;
}

.nav a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-7px;

  width:0;
  height:1px;

  background:var(--gold);
  transition:.3s;
}

.nav a:hover::after{
  width:100%;
}

.menu-toggle{
  display:none;

  background:none;
  border:1px solid var(--line);
  color:white;

  padding:8px 11px;
  border-radius:6px;

  cursor:pointer;
}


/* =========================================
   HERO
========================================= */

.hero{
  min-height:100vh;

  position:relative;

  display:grid;
  grid-template-columns:1.35fr .65fr;
  align-items:center;

  padding:130px 7vw 70px;

  background:
    linear-gradient(
      90deg,
      rgba(11,16,11,.96) 0%,
      rgba(15,22,16,.78) 48%,
      rgba(17,22,17,.56) 100%
    ),
    url("assets/hero-bilbord.jpg") center/cover no-repeat;

  isolation:isolate;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at 78% 35%,
      rgba(199,168,78,.10),
      transparent 28%
    ),
    linear-gradient(
      to bottom,
      transparent 70%,
      var(--bg)
    );

  z-index:-1;
}

.hero-grid{
  position:absolute;
  inset:0;

  z-index:-1;
  opacity:.08;

  background-image:
    linear-gradient(
      rgba(255,255,255,.3) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.3) 1px,
      transparent 1px
    );

  background-size:72px 72px;

  mask-image:linear-gradient(
    to right,
    black,
    transparent 75%
  );
}

.eyebrow,
.section-kicker{
  color:var(--gold);

  font-size:11px;
  font-weight:800;

  letter-spacing:.25em;
  text-transform:uppercase;
}

.hero h1,
.section h2,
.memory-section h2{
  font-family:"Cinzel",serif;
  text-transform:uppercase;

  margin:18px 0 22px;
}

.hero h1{
  font-size:clamp(58px,8.8vw,142px);
  line-height:.78;
  letter-spacing:-.04em;

  max-width:1000px;

  color:var(--cream);
  text-shadow:0 8px 40px rgba(0,0,0,.45);
}

.hero h1 span{
  color:var(--cream);
}

.hero-lead{
  max-width:720px;

  color:#e1e1d7;

  font-size:clamp(16px,1.4vw,21px);
  line-height:1.7;
}

.hero-actions{
  display:flex;
  gap:14px;

  margin:32px 0 40px;
}


/* =========================================
   BUTTONS
========================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:48px;

  padding:0 22px;

  border:1px solid var(--gold);

  font-weight:800;
  font-size:12px;

  letter-spacing:.1em;
  text-transform:uppercase;

  transition:.25s;
}

.btn-primary{
  background:var(--gold);
  color:#111;
}

.btn-primary:hover{
  background:var(--cream);
  transform:translateY(-2px);
}

.btn-ghost{
  color:var(--cream);
  background:transparent;
}

.btn-ghost:hover{
  background:rgba(199,168,78,.12);
  color:var(--cream);
}


/* =========================================
   HERO META
========================================= */

.hero-meta{
  display:grid;
  grid-template-columns:repeat(3,max-content);
  gap:34px;

  padding-top:25px;

  border-top:1px solid var(--line);
}

.hero-meta div{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.hero-meta span{
  font-size:9px;

  color:var(--gold);

  font-weight:800;
  letter-spacing:.2em;
}

.hero-meta strong{
  font-family:"Cinzel",serif;
  font-size:13px;
  color:var(--cream);
}


/* =========================================
   HERO BADGE
========================================= */

.hero-badge{
  justify-self:center;
}

.hero-badge-ring{
  width:220px;
  height:220px;

  border-radius:50%;

  border:1px solid rgba(240,231,200,.36);

  outline:1px solid rgba(199,168,78,.2);
  outline-offset:12px;

  background:rgba(12,17,12,.55);

  backdrop-filter:blur(9px);

  display:grid;
  place-items:center;
  align-content:center;

  box-shadow:var(--shadow);
}

.hero-badge-ring strong{
  font-family:"Cinzel",serif;
  font-size:70px;

  line-height:.9;

  color:var(--cream);
}

.hero-badge-ring small{
  letter-spacing:.25em;
  font-weight:800;
  color:var(--gold);
}

.hero-badge-ring span{
  font-size:10px;
  letter-spacing:.3em;

  color:var(--muted);

  margin:8px;
}


/* =========================================
   QUOTE BAND
========================================= */

.quote-band{
  min-height:66px;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:28px;

  background:var(--cream);
  color:#182019;

  font-family:"Cinzel",serif;
  font-weight:700;

  font-size:12px;
  letter-spacing:.18em;

  overflow:hidden;
  white-space:nowrap;
}

.quote-band span{
  color:#7b6c3b;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section{
  padding:110px 7vw;
}

.intro{
  background:#121812;
}

.intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;

  gap:60px;

  align-items:start;
}

.section h2{
  font-size:clamp(38px,5.5vw,76px);

  line-height:.95;
  letter-spacing:-.03em;
}

.section h2 span{
  color:var(--gold);
}

.intro-copy{
  padding-top:12px;
}

.intro-copy p,
.section-heading > p{
  color:#bfc2b8;

  line-height:1.8;
  font-size:15px;
}


/* =========================================
   STATISTIKA
========================================= */

.stat-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);

  margin-top:72px;

  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.stat-grid article{
  padding:35px;

  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.stat-grid strong{
  display:block;

  font-family:"Cinzel",serif;
  font-size:55px;

  color:var(--cream);
}

.stat-grid span{
  color:var(--muted);

  font-size:11px;

  text-transform:uppercase;
  letter-spacing:.14em;
}


/* =========================================
   BRIGADE
========================================= */

.brigade-section{
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(109,125,89,.16),
      transparent 28%
    ),
    #0e130f;
}

.section-heading{
  display:flex;

  justify-content:space-between;
  align-items:end;

  gap:40px;

  margin-bottom:54px;
}

.section-heading > div{
  max-width:840px;
}

.section-heading > p{
  max-width:470px;
}

.section-heading h2{
  margin-bottom:0;
}

.brigade-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:18px;
}

.brigade-card{
  position:relative;

  min-height:520px;

  overflow:hidden;

  background:linear-gradient(
    180deg,
    #1e281f,
    #121812
  );

  border:1px solid var(--line);

  transition:.35s ease;
}

.brigade-card:hover{
  transform:translateY(-8px);

  border-color:rgba(199,168,78,.55);

  box-shadow:var(--shadow);
}

.brigade-card .number{
  position:absolute;

  top:8px;
  right:12px;

  font-family:"Cinzel",serif;
  font-size:72px;
  font-weight:800;

  color:rgba(240,231,200,.06);
}

.brigade-emblem{
  height:290px;

  display:grid;
  place-items:center;

  padding:34px;

  background:linear-gradient(
    to bottom,
    rgba(255,255,255,.025),
    rgba(0,0,0,.18)
  );
}

.brigade-emblem img{
  max-height:210px;
  max-width:82%;

  object-fit:contain;

  filter:drop-shadow(
    0 15px 25px rgba(0,0,0,.35)
  );
}

.brigade-info{
  padding:26px;
}

.brigade-info small{
  color:var(--gold);

  font-size:9px;

  letter-spacing:.16em;
  font-weight:700;
}

.brigade-info h3{
  font-family:"Cinzel",serif;

  font-size:22px;

  margin:10px 0 12px;
}

.brigade-info p{
  color:var(--muted);

  line-height:1.65;
  font-size:13px;
}


/* =========================================
   PROGRAM
========================================= */

.program-section{
  position:relative;

  overflow:hidden;

  background:linear-gradient(
    135deg,
    #576a4d,
    #33412f
  );
}

.program-bg-text{
  position:absolute;

  right:-50px;
  top:40px;

  font-family:"Cinzel",serif;
  font-size:15vw;
  font-weight:800;

  color:rgba(255,255,255,.035);

  pointer-events:none;
}

.light .section-kicker{
  color:#efe2b5;
}

.light p{
  color:#e2e5dc;
}


/* PROGRAM TABOVI */

.program-tabs{
  display:flex;

  border-bottom:1px solid rgba(255,255,255,.22);

  margin-bottom:30px;
}

.tab{
  border:0;
  border-bottom:3px solid transparent;

  background:transparent;
  color:#d7dccf;

  padding:16px 28px;

  font-weight:800;
  letter-spacing:.12em;
  font-size:11px;

  cursor:pointer;

  transition:.25s ease;
}

.tab:hover{
  color:#fff;
}

.tab.active{
  color:#fff;
  border-color:var(--cream);
}


/* PROGRAM TIMELINE */

.timeline{
  display:none;
}

.timeline.active{
  display:block;
}

.timeline-item{
  display:grid;
  grid-template-columns:110px 28px 1fr;

  min-height:140px;
}

.time{
  font-family:"Cinzel",serif;
  font-size:28px;
  font-weight:700;

  color:var(--cream);

  padding-top:8px;
}

.line{
  position:relative;
}

.line::before{
  content:"";

  position:absolute;

  left:50%;
  top:0;
  bottom:0;

  width:1px;

  background:rgba(255,255,255,.3);
}

.line::after{
  content:"";

  position:absolute;

  left:50%;
  top:17px;

  width:11px;
  height:11px;

  border-radius:50%;

  background:var(--cream);

  transform:translate(-50%,-50%);

  box-shadow:
    0 0 0 6px rgba(240,231,200,.12);
}

.event{
  padding:0 0 38px 28px;
}

.event small{
  font-size:9px;

  letter-spacing:.17em;
  font-weight:800;

  color:#e9dfbc;
}

.event h3{
  font-family:"Cinzel",serif;

  font-size:24px;

  margin:6px 0 10px;
}

.event p{
  margin:0;

  color:#e2e5dc;

  line-height:1.7;
  font-size:13px;
}


/* =========================================
   NOVOSTI
========================================= */

.news-section{
  background:#f0ecdf;
  color:#172018;
}

.news-section .section-kicker{
  color:#6d6238;
}

.news-section h2{
  color:#172018;
}

.news-section h2 span{
  color:#7b6c3b;
}

.news-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;

  gap:20px;
}

.news-card{
  min-height:350px;

  border:1px solid rgba(23,32,24,.14);

  background:#f7f3e8;

  display:flex;
  flex-direction:column;

  overflow:hidden;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.news-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 25px 50px rgba(35,40,28,.12);
}


/* SLIKE NOVOSTI */

.news-image{
  position:relative;

  width:100%;
  height:240px;
  min-height:240px;

  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;

  overflow:hidden;
}

.news-image::after{
  content:"";

  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(15,20,15,.28),
    transparent 55%
  );

  pointer-events:none;
}

.news-tag{
  position:absolute;

  left:18px;
  top:18px;

  z-index:2;

  background:var(--gold);
  color:#111;

  padding:8px 10px;

  font-size:9px;
  font-weight:800;

  letter-spacing:.15em;
}


/* SADRŽAJ NOVOSTI */

.news-content{
  padding:26px;

  display:flex;
  flex-direction:column;

  flex:1;
}

.news-date{
  font-size:10px;

  letter-spacing:.12em;

  color:#747968;

  text-transform:uppercase;
  font-weight:700;
}

.news-content h3{
  font-family:"Cinzel",serif;

  font-size:21px;
  line-height:1.3;

  margin:12px 0;
}

.news-featured .news-content h3{
  font-size:28px;
}

.news-content p{
  font-size:13px;

  line-height:1.7;

  color:#5e665a;
}

.news-loading,
.news-empty{
  grid-column:1 / -1;

  padding:50px 20px;

  text-align:center;

  color:#5e665a;

  font-size:13px;

  letter-spacing:1px;
}


/* =========================================
   MEMORY SECTION
========================================= */

.memory-section{
  min-height:600px;

  display:grid;
  place-items:center;

  text-align:center;

  position:relative;

  background:
    linear-gradient(
      rgba(8,12,8,.78),
      rgba(8,12,8,.9)
    ),
    url("assets/hero-bilbord.jpg")
    center/cover fixed no-repeat;
}

.memory-content{
  padding:80px 20px;
}

.memory-section h2{
  font-size:clamp(42px,6.6vw,92px);

  line-height:1;

  max-width:1200px;
}

.memory-section h2 span{
  color:var(--cream);
}

.memory-section p{
  color:#c8cabf;

  letter-spacing:.08em;
}


/* =========================================
   FOOTER
========================================= */

.site-footer{
  position:relative;

  background:linear-gradient(
    135deg,
    rgba(12,17,12,.98),
    rgba(25,34,25,.98)
  );

  color:#f2f0e8;

  padding:75px 7% 0;

  border-top:
    1px solid rgba(210,193,137,.35);
}

.footer-main{
  max-width:1400px;

  margin:0 auto;

  display:grid;

  grid-template-columns:
    1.2fr 1fr 1fr;

  gap:70px;

  padding-bottom:65px;
}

.footer-column{
  min-width:0;
}

.footer-kicker,
.footer-label{
  display:block;

  color:#cabb86;

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

  letter-spacing:2.5px;

  margin-bottom:18px;
}


/* FOOTER IDENTITET */

.footer-identity h3{
  margin:0 0 18px;

  font-family:"Cinzel",serif;

  font-size:clamp(25px,3vw,38px);

  line-height:1.05;

  letter-spacing:1px;

  color:#fff;
}

.footer-identity p{
  margin:0;

  color:rgba(255,255,255,.58);

  line-height:1.8;

  font-size:13px;

  text-transform:uppercase;

  letter-spacing:1px;
}


/* FOOTER KONTAKT */

.footer-email{
  display:inline-block;

  max-width:100%;

  color:#fff;

  font-size:17px;
  font-weight:600;

  text-decoration:none;

  padding-bottom:6px;

  border-bottom:
    1px solid rgba(202,187,134,.4);

  transition:.3s ease;

  overflow-wrap:anywhere;
}

.footer-email:hover{
  color:#cabb86;
  border-color:#cabb86;
}


/* FACEBOOK */

.footer-social{
  margin-top:28px;
}

.facebook-link{
  display:inline-flex;

  align-items:center;

  gap:13px;

  color:#fff;

  text-decoration:none;

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

  transition:.3s ease;
}

.facebook-icon{
  width:39px;
  height:39px;

  flex:0 0 39px;

  border:
    1px solid rgba(202,187,134,.5);

  display:flex;

  align-items:center;
  justify-content:center;

  font-family:Arial,sans-serif;

  font-size:21px;

  color:#cabb86;

  transition:.3s ease;
}

.facebook-link small{
  display:block;

  color:rgba(255,255,255,.45);

  font-size:8px;

  letter-spacing:2px;

  margin-bottom:2px;
}

.facebook-link:hover{
  color:#cabb86;
}

.facebook-link:hover .facebook-icon{
  background:#cabb86;
  color:#182019;
}


/* FOOTER PORUKA */

.footer-message blockquote{
  margin:0 0 28px;

  padding:0;

  border:0;

  color:rgba(255,255,255,.82);

  font-family:"Cinzel",serif;

  font-size:17px;

  line-height:1.65;
}

.footer-top{
  display:inline-flex;

  gap:10px;

  align-items:center;

  color:#cabb86;

  text-decoration:none;

  font-size:10px;
  font-weight:800;

  letter-spacing:2px;
}

.footer-top span{
  font-size:17px;

  transition:transform .25s ease;
}

.footer-top:hover span{
  transform:translateY(-4px);
}


/* DONJI DIO FOOTERA */

.footer-bottom{
  max-width:1400px;

  margin:0 auto;

  min-height:65px;

  border-top:
    1px solid rgba(255,255,255,.09);

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  color:rgba(255,255,255,.35);

  font-size:10px;

  letter-spacing:1px;

  text-transform:uppercase;
}

.footer-credit{
  text-align:right;
}

.footer-credit span{
  margin:0 7px;

  color:#cabb86;
}

.footer-credit strong{
  color:rgba(255,255,255,.68);

  font-weight:600;

  transition:color .3s ease;
}

.footer-credit:hover strong{
  color:#cabb86;
}


/* =========================================
   REVEAL ANIMACIJA
========================================= */

.reveal{
  opacity:0;

  transform:translateY(26px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width:1100px){

  .nav{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav.open{
    display:flex;

    position:absolute;

    top:78px;
    left:5vw;
    right:5vw;

    flex-direction:column;

    align-items:flex-start;

    padding:22px;

    background:#111711;

    border:1px solid var(--line);
  }

  .hero{
    grid-template-columns:1fr;
  }

  .hero-badge{
    display:none;
  }

  .brigade-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .news-grid{
    grid-template-columns:1fr 1fr;
  }

  .news-featured{
    grid-column:span 2;
  }

  .footer-main{
    grid-template-columns:1fr 1fr;
    gap:50px;
  }

  .footer-message{
    grid-column:1 / -1;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width:760px){

  .site-header{
    height:70px;
    padding:0 20px;
  }

  .brand strong{
    font-size:12px;
  }

  .brand small{
    font-size:8px;
  }

  .nav.open{
    top:70px;
    left:20px;
    right:20px;
  }


  /* HERO */

  .hero{
    min-height:94vh;

    padding:
      120px 20px 55px;

    background-position:
      38% center;
  }

  .hero h1{
    font-size:
      clamp(48px,16vw,82px);

    line-height:.86;
  }

  .hero-lead{
    font-size:15px;
  }

  .hero-actions{
    flex-direction:column;

    align-items:stretch;
  }

  .hero-meta{
    grid-template-columns:1fr;

    gap:16px;
  }


  /* QUOTE */

  .quote-band{
    justify-content:flex-start;

    padding-left:20px;

    gap:18px;

    font-size:10px;
  }


  /* SECTIONS */

  .section{
    padding:78px 20px;
  }

  .intro-grid,
  .section-heading{
    display:block;
  }

  .section-heading > p{
    margin-top:20px;
  }


  /* STATISTIKA */

  .stat-grid{
    grid-template-columns:
      repeat(2,1fr);
  }

  .stat-grid article{
    padding:25px 18px;
  }

  .stat-grid strong{
    font-size:42px;
  }


  /* BRIGADE */

  .brigade-grid{
    grid-template-columns:1fr;
  }

  .brigade-card{
    min-height:auto;
  }

  .brigade-emblem{
    height:250px;
  }


  /* PROGRAM */

  .program-tabs{
    overflow-x:auto;

    scrollbar-width:none;
  }

  .program-tabs::-webkit-scrollbar{
    display:none;
  }

  .tab{
    flex:0 0 auto;

    padding:15px 18px;
  }

  .timeline-item{
    grid-template-columns:
      78px 20px 1fr;
  }

  .time{
    font-size:18px;
  }

  .event{
    padding-left:16px;
  }

  .event h3{
    font-size:20px;
  }


  /* NOVOSTI */

  .news-grid{
    grid-template-columns:1fr;
  }

  .news-featured{
    grid-column:auto;
  }

  .news-image{
    height:220px;
    min-height:220px;
  }

  .news-featured .news-content h3{
    font-size:23px;
  }


  /* MEMORY */

  .memory-section{
    min-height:500px;

    background-attachment:scroll;
  }


  /* FOOTER */

  .site-footer{
    padding:55px 24px 0;
  }

  .footer-main{
    grid-template-columns:1fr;

    gap:42px;

    padding-bottom:45px;
  }

  .footer-message{
    grid-column:auto;
  }

  .footer-column:not(:last-child){
    padding-bottom:35px;

    border-bottom:
      1px solid rgba(255,255,255,.08);
  }

  .footer-email{
    font-size:14px;
  }

  .footer-bottom{
    padding:22px 0;

    flex-direction:column;

    align-items:flex-start;

    line-height:1.7;
  }

  .footer-credit{
    text-align:left;
  }
}


/* =========================================
   VRLO MALI EKRANI
========================================= */

@media (max-width:420px){

  .brand-mark{
    width:32px;
    height:32px;
  }

  .brand{
    gap:9px;
  }

  .brand strong{
    font-size:10px;
  }

  .hero h1{
    font-size:46px;
  }

  .stat-grid{
    grid-template-columns:1fr 1fr;
  }

  .timeline-item{
    grid-template-columns:
      68px 18px 1fr;
  }

  .time{
    font-size:16px;
  }

  .event{
    padding-left:12px;
  }

  .event h3{
    font-size:18px;
  }

  .footer-identity h3{
    font-size:27px;
  }
}

/* =====================================================
   HERO COLORS — FINAL OVERRIDE
   Hero tekst je krem, akcenti su zlatni.
===================================================== */

.hero,
.hero .hero-content,
.hero .hero-content p,
.hero .hero-meta,
.hero .hero-meta strong {
  color:#f0e7c8 !important;
}

.hero h1,
.hero h1 span,
.hero h1 strong,
.hero h1 em {
  color:#f0e7c8 !important;
  -webkit-text-fill-color:#f0e7c8 !important;
}

.hero .hero-lead {
  color:#f0e7c8 !important;
  -webkit-text-fill-color:#f0e7c8 !important;
}

.hero .eyebrow,
.hero .section-kicker,
.hero .hero-meta span {
  color:#c7a84e !important;
  -webkit-text-fill-color:#c7a84e !important;
}

.hero .btn-ghost {
  color:#f0e7c8 !important;
  -webkit-text-fill-color:#f0e7c8 !important;
}

.hero .btn-primary {
  color:#111611 !important;
  -webkit-text-fill-color:#111611 !important;
}

.hero-badge-ring strong {
  color:#f0e7c8 !important;
  -webkit-text-fill-color:#f0e7c8 !important;
}

.hero-badge-ring small,
.hero-badge-ring span {
  color:#c7a84e !important;
  -webkit-text-fill-color:#c7a84e !important;
}

.site-header .brand strong {
  color:#f0e7c8 !important;
  -webkit-text-fill-color:#f0e7c8 !important;
}

.site-header .brand small {
  color:#b6b9ae !important;
  -webkit-text-fill-color:#b6b9ae !important;
}

/* =====================================================
   BRIGADE — MOĆNI VOJNI EFEKTI
   Finalni override za kartice brigada
===================================================== */

.brigade-grid{
  perspective:1400px;
}

/* Osnovna kartica */
.brigade-card{
  position:relative;
  overflow:hidden;
  isolation:isolate;

  background:
    linear-gradient(180deg, rgba(31,43,31,.98) 0%, rgba(15,21,16,.98) 72%, rgba(9,13,10,1) 100%);

  border:1px solid rgba(199,168,78,.18);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.025),
    inset 0 -28px 55px rgba(0,0,0,.28),
    0 18px 45px rgba(0,0,0,.28);

  transform-style:preserve-3d;

  transition:
    transform .55s cubic-bezier(.2,.8,.2,1),
    box-shadow .55s ease,
    border-color .55s ease,
    background .55s ease;
}

/* Tamni vojni sloj / vinjeta */
.brigade-card::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at 50% 22%, rgba(199,168,78,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.025), transparent 28%),
    linear-gradient(to bottom, transparent 58%, rgba(0,0,0,.28));

  opacity:.55;
  pointer-events:none;
  z-index:1;

  transition:opacity .5s ease;
}

/* "metalni" bljesak koji prođe preko kartice */
.brigade-card::after{
  content:"";
  position:absolute;

  top:-35%;
  left:-75%;

  width:42%;
  height:175%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(240,231,200,.02),
      rgba(240,231,200,.20),
      rgba(199,168,78,.13),
      transparent
    );

  transform:rotate(14deg);
  filter:blur(.3px);

  z-index:5;
  pointer-events:none;

  transition:left .85s cubic-bezier(.2,.7,.2,1);
}

/* Hover cijele kartice */
.brigade-card:hover{
  transform:
    translateY(-14px)
    rotateX(1.4deg)
    scale(1.018);

  border-color:rgba(199,168,78,.72);

  background:
    linear-gradient(180deg, rgba(39,52,38,.99) 0%, rgba(17,24,18,.99) 72%, rgba(9,13,10,1) 100%);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    inset 0 -35px 70px rgba(0,0,0,.34),
    0 34px 85px rgba(0,0,0,.55),
    0 0 0 1px rgba(199,168,78,.06),
    0 0 44px rgba(199,168,78,.12);
}

.brigade-card:hover::before{
  opacity:1;
}

.brigade-card:hover::after{
  left:145%;
}


/* =====================================================
   VELIKI BROJ 503 / 504 / 510 / 517
===================================================== */

.brigade-card .number{
  z-index:4;

  color:rgba(240,231,200,.055);

  text-shadow:
    0 1px 0 rgba(255,255,255,.03);

  transition:
    color .5s ease,
    transform .5s cubic-bezier(.2,.8,.2,1),
    letter-spacing .5s ease,
    opacity .5s ease;
}

.brigade-card:hover .number{
  color:rgba(199,168,78,.16);

  transform:
    translate(-8px,7px)
    scale(1.08);

  letter-spacing:.025em;
}


/* =====================================================
   GRB / EMBLEM
===================================================== */

.brigade-emblem{
  position:relative;
  overflow:hidden;
  z-index:2;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.026),
      rgba(0,0,0,.20)
    );

  transition:
    background .5s ease,
    box-shadow .5s ease;
}

/* Zlatni halo iza grba */
.brigade-emblem::before{
  content:"";
  position:absolute;

  width:220px;
  height:220px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(199,168,78,.24) 0%,
      rgba(199,168,78,.10) 38%,
      rgba(199,168,78,.025) 55%,
      transparent 72%
    );

  opacity:.22;
  transform:scale(.72);

  filter:blur(1px);

  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.2,.8,.2,1);
}

/* Diskretni "radar" prsten */
.brigade-emblem::after{
  content:"";
  position:absolute;

  width:185px;
  height:185px;

  border-radius:50%;

  border:1px solid rgba(199,168,78,.14);
  box-shadow:
    0 0 0 12px rgba(199,168,78,.025),
    0 0 0 25px rgba(199,168,78,.012);

  opacity:.35;
  transform:scale(.88);

  transition:
    opacity .55s ease,
    transform .55s ease,
    border-color .55s ease;
}

.brigade-card:hover .brigade-emblem::before{
  opacity:1;
  transform:scale(1.28);
}

.brigade-card:hover .brigade-emblem::after{
  opacity:.75;
  transform:scale(1.08);
  border-color:rgba(199,168,78,.35);
}

.brigade-emblem img{
  position:relative;
  z-index:3;

  transform:translateY(0) scale(1);

  filter:
    drop-shadow(0 15px 25px rgba(0,0,0,.40));

  transition:
    transform .58s cubic-bezier(.2,.8,.2,1),
    filter .58s ease;
}

.brigade-card:hover .brigade-emblem img{
  transform:
    translateY(-7px)
    scale(1.105);

  filter:
    drop-shadow(0 25px 36px rgba(0,0,0,.58))
    drop-shadow(0 0 13px rgba(199,168,78,.24));
}


/* =====================================================
   TEKST KARTICE
===================================================== */

.brigade-info{
  position:relative;
  z-index:4;

  transition:
    transform .45s ease;
}

.brigade-card:hover .brigade-info{
  transform:translateY(-2px);
}

.brigade-info small{
  color:var(--gold);

  transition:
    color .4s ease,
    letter-spacing .4s ease,
    text-shadow .4s ease;
}

.brigade-card:hover .brigade-info small{
  color:#dec36f;
  letter-spacing:.205em;

  text-shadow:
    0 0 18px rgba(199,168,78,.18);
}

.brigade-info h3{
  color:var(--cream);

  transition:
    color .4s ease,
    transform .4s cubic-bezier(.2,.8,.2,1),
    text-shadow .4s ease;
}

.brigade-card:hover .brigade-info h3{
  color:#fff3ca;

  transform:translateX(6px);

  text-shadow:
    0 8px 22px rgba(0,0,0,.32);
}

.brigade-info p{
  transition:
    color .4s ease,
    transform .4s ease;
}

.brigade-card:hover .brigade-info p{
  color:#d4d8cf;
}


/* Zlatna linija kao "čin" ispod teksta */
.brigade-info::after{
  content:"";
  display:block;

  width:42px;
  height:2px;

  margin-top:23px;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--cream)
    );

  opacity:.62;

  transform-origin:left center;
  transform:scaleX(.48);

  box-shadow:
    0 0 14px rgba(199,168,78,.15);

  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    opacity .5s ease,
    box-shadow .5s ease;
}

.brigade-card:hover .brigade-info::after{
  transform:scaleX(2.25);
  opacity:1;

  box-shadow:
    0 0 18px rgba(199,168,78,.35);
}


/* Gornja komandna linija */
.brigade-card > .brigade-emblem{
  border-top:1px solid rgba(255,255,255,.025);
}

.brigade-card:hover > .brigade-emblem{
  box-shadow:
    inset 0 -1px 0 rgba(199,168,78,.08);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:760px){

  .brigade-card{
    transform:none;
  }

  .brigade-card:hover{
    transform:translateY(-6px);
  }

  .brigade-card::after{
    display:none;
  }

  .brigade-card:hover .brigade-emblem img{
    transform:translateY(-3px) scale(1.055);
  }

  .brigade-card:hover .brigade-info h3{
    transform:translateX(3px);
  }
}

/* Poštuj korisnike koji isključe animacije */
@media (prefers-reduced-motion:reduce){

  .brigade-card,
  .brigade-card *,
  .brigade-card::before,
  .brigade-card::after{
    transition:none !important;
  }
}
/* =========================================
   4 BRIGADE · 1 GRAD · VJEČNA ZAHVALNOST
   MOĆNI EFEKAT
========================================= */

.quote-band{
  position:relative;
  isolation:isolate;

  background:
    linear-gradient(
      110deg,
      #e9dfbd 0%,
      #f0e7c8 35%,
      #d8c58a 50%,
      #f0e7c8 65%,
      #e9dfbd 100%
    );

  background-size:220% 100%;

  animation:quoteBackground 8s ease-in-out infinite;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -1px 0 rgba(92,74,27,.25),
    0 8px 30px rgba(0,0,0,.22);
}


/* tamnije i snažnije slovo */

.quote-band{
  color:#182019;

  font-weight:800;

  text-shadow:
    0 1px 0 rgba(255,255,255,.55);

  letter-spacing:.20em;
}


/* zlatne tačke / razdjelnici */

.quote-band span{
  color:#80671f;

  font-size:16px;

  text-shadow:
    0 0 12px rgba(128,103,31,.22);

  animation:quoteDot 2.8s ease-in-out infinite;
}


/* svjetlosni odsjaj preko cijele trake */

.quote-band::before{
  content:"";

  position:absolute;

  top:0;
  left:-35%;

  width:25%;
  height:100%;

  background:
    linear-gradient(
      100deg,
      transparent,
      rgba(255,255,255,.08),
      rgba(255,255,255,.50),
      rgba(255,255,255,.10),
      transparent
    );

  transform:skewX(-18deg);

  pointer-events:none;
  z-index:-1;

  animation:quoteSweep 6s ease-in-out infinite;
}


/* tanke vojne linije gore i dole */

.quote-band::after{
  content:"";

  position:absolute;

  left:7%;
  right:7%;

  bottom:5px;

  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(92,74,27,.30),
      rgba(92,74,27,.55),
      rgba(92,74,27,.30),
      transparent
    );

  pointer-events:none;
}


/* pomjeranje metalik pozadine */

@keyframes quoteBackground{

  0%,
  100%{
    background-position:0% 50%;
  }

  50%{
    background-position:100% 50%;
  }

}


/* prolazak svjetlosti */

@keyframes quoteSweep{

  0%{
    left:-35%;
    opacity:0;
  }

  12%{
    opacity:1;
  }

  35%{
    left:125%;
    opacity:0;
  }

  100%{
    left:125%;
    opacity:0;
  }

}


/* pulsiranje razdjelnika */

@keyframes quoteDot{

  0%,
  100%{
    opacity:.65;
    transform:scale(.85);
  }

  50%{
    opacity:1;
    transform:scale(1.18);
  }

}


/* MOBITEL */

@media(max-width:760px){

  .quote-band{
    letter-spacing:.13em;
  }

}
