:root{
  /* GOLD THEME (flat, jasne ivice) */
  --bg:#034d69;          
  --bg-2:#fff2cc;        
  --card:#f5d37f;        
  --text:#1c1a12;        
  --muted:#5e5430;       

  --brand:#d4af37;       
  --brand-2:#b8922a;     
  --accent:#ffcc66;      

  --line:#e0c97a;        
  --shadow:none;         
}

*{box-sizing:border-box}
html,body{
  margin:0; padding:0;
  background:linear-gradient(180deg,var(--bg) 0%, var(--bg-2) 100%);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}

/* linkovi u toplom tonu */
a{color:#7a5a00; text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1180px;margin:0 auto;padding:0 20px}

/* Header */
.site-header{
  position:relative; 
  background:#034d69;                 
  border-bottom:2px solid var(--line);
  box-shadow:var(--shadow);
  z-index:80; 
}
.header-wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:14px 20px;
  color:#f0f0f0;
}
.left-side{display:flex; align-items:center; gap:12px}
.right-side{display:flex; align-items:center; gap:24px}

/* Brand (logo) */
.brand{display:flex; align-items:center}
.brand img{display:block; max-height:72px; width:auto}

/* Desktop nav + CTA */
.nav{display:flex; gap:24px}
.nav a{color:#f0f0f0}
.nav a:hover{color:#ffffff}

.btn{
  display:inline-block; border:2px solid var(--brand); 
  padding:10px 16px; border-radius:12px;
  transition:.2s transform ease, .2s background ease, .2s color ease, .2s border-color ease;
  box-shadow:var(--shadow);
}
.btn.primary{
  background:var(--brand); color:#1f1600; border-color:var(--brand);
}
.btn.primary:hover{
  transform:translateY(-1px);
  background:var(--brand-2); border-color:var(--brand-2);
}
.btn.ghost{
  background:transparent; color:#3a2f10; border-color:#9f8a3a;
}
.btn.ghost:hover{
  transform:translateY(-1px);
  background:#fff6d9; border-color:var(--brand);
}

/* Hamburger */
.nav-toggle{
  display:none;
  background:transparent; border:0; cursor:pointer;
  width:40px; height:40px; padding:8px; border-radius:10px;
  outline-offset:2px;
}
.nav-toggle span{display:block; width:22px; height:2px; background:#f0f0f0; margin:4px 0}

/* Overlay */
.nav-overlay{
  position:fixed; inset:0;
  background:rgba(125,100,20,.25);   
  opacity:0; visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
  z-index:50;
}
.nav-overlay.show{opacity:1; visibility:visible}

/* Mobile drawer */
.mobile-nav{
  position:fixed; top:0; left:0;
  height:100vh; width:84%; max-width:420px;
  background:#ffffff; border-right:2px solid var(--line);
  box-shadow:var(--shadow);
  transform:translateX(-100%);
  opacity:1;
  display:flex; flex-direction:column;
  padding-top:72px; 
  transition: transform .28s ease;
  will-change: transform;
  z-index:60;
}
.mobile-nav.show{transform:translateX(0)}
.mobile-nav a{padding:14px 20px; border-top:2px solid var(--line); color:#3a2f10}

/* Close gumb */
.close-drawer{
  position:absolute; top:12px; right:12px;
  width:40px; height:40px;
  border:2px solid var(--line); background:#fff; color:#3a2f10;
  border-radius:10px; font-size:26px; line-height:1; cursor:pointer;
}

/* Hero */
.hero{
  padding:72px 0; 
  border-bottom:2px solid var(--line);
  background:linear-gradient(180deg,#fffdf5 0%, var(--bg) 100%);
}
.hero .container{
  display:grid; 
  grid-template-columns:1.15fr .85fr; 
  gap:36px; 
  align-items:center;
}
.hero h1{
  font-size:44px; 
  line-height:1.2; 
  margin:0 0 10px; 
  color:#f0f0f0;
}
.hero p{
  color:#f0f0f0; 
  margin:0 0 18px; 
  max-width:720px;
}
.hero-cta{display:flex; gap:12px}

.hero-media{
  display:flex; 
  align-items:center; 
  justify-content:center;
}
.hero-media img{
  width:100%; 
  height:auto; 
  display:block; 
  border-radius:16px;
  box-shadow:var(--shadow); 
  border:2px solid var(--line); 
  background:#fff;
}

.domain-badges{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.domain-badges span{
  font-size:12px; color:#f0f0f0;
  border:2px solid var(--line); background:#034d69;
  border-radius:999px; padding:6px 10px
}

/* Sekcije */
section{
  padding:72px 0;
  border-bottom:2px solid var(--line);
  background:#034d69;
  color:#f0f0f0;
}
section:nth-of-type(even){background:#034d69}
h2{font-size:28px; margin:0 0 24px; color:#f0f0f0}

/* Gridovi i kartice */
.grid-4,.grid-3{display:grid; gap:18px}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.card,.price-card,.quote{
  background:var(--card);
  border:2px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:18px
}
.card h3{margin:0 0 8px; color:#1a1506}
.card p{margin:0; color:#4a4326}

/* Kako radi */
.steps{counter-reset:step; list-style:none; padding:0; margin:0; display:grid; gap:14px}
.steps li{
  position:relative; padding-left:60px; background:var(--card);
  border:2px solid var(--line); border-radius:14px; padding-top:16px; padding-bottom:16px;
  box-shadow:var(--shadow);
  color:#1a1506; /* tamni tekst */
}
.steps li::before{
  counter-increment:step; content:counter(step);
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  width:28px; height:28px; border-radius:50%;
  background:var(--accent); color:#3a2f10; font-weight:800; display:grid; place-items:center;
  border:2px solid #d5b25d
}

/* Cjenik */
.price-card h3{margin:0 0 6px; color:#1a1506}
.price-card .subtitle{color:#6a5d2e; margin:0 0 10px}
.price-card .price{font-size:28px; margin:8px 0 14px; color:#1a1506}
.price-card .price span{font-size:42px; font-weight:800; color:#000}
.price-card .features{list-style:none; margin:0 0 16px; padding:0}
.price-card .features li{padding:8px 0; border-bottom:2px dashed #d6c07a; color:#3f371d}
.price-card .features li:last-child{border-bottom:0}
.price-card .btn{width:100%; text-align:center}

/* Testimonijali */
.quote{
  font-style:italic;
  color:#1a1506; /* tamni tekst */
}
.quote cite{display:block; margin-top:10px; color:#6c6033; font-style:normal}

/* FAQ */
.faq details{
  background:var(--card); border:2px solid var(--line); border-radius:14px; padding:12px; margin-bottom:10px;
  box-shadow:var(--shadow);
  color:#1a1506; /* tamni tekst */
}
.faq summary{cursor:pointer; font-weight:600; color:#1a1506}

/* CTA */
.cta{text-align:center}
.cta p{color:#f0f0f0}

/* Footer */
.site-footer{
  background:#034d69; border-top:1px solid var(--line);
  color:#f0f0f0;
}
.footer-grid{display:grid; gap:22px; grid-template-columns:2fr 1fr 1fr}
.footer-grid h3{margin:0 0 8px; color:#f0f0f0}
.footer-grid ul{list-style:none; margin:0; padding:0}
.footer-grid li{margin:6px 0}
.footer-grid a{color:#f0f0f0}
.footer-bottom{
  padding:14px 0; border-top:2px solid var(--line);
  display:flex; justify-content:space-between; gap:12px; color:#f0f0f0; font-size:14px
}

/* Responsive */
@media (max-width:1120px){
  .brand img{max-height:64px}
}
@media (max-width:980px){
  .nav-toggle{display:block}
  .nav{display:none}
  .cta-desktop{display:none}
  .brand img{max-height:56px}
}
@media (max-width:900px){
  .hero .container{
    grid-template-columns:1fr; 
    gap:24px;
  }
  .hero h1{font-size:34px}
}
@media (max-width:740px){
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero h1{font-size:28px}
  .price-card .price span{font-size:36px}
  .brand img{max-height:48px}
}
