:root {
  --accent: #c9a227; /* zlatna / akcenat */
  --dark: #2c3e50; /* header/footer */
  --light: #f5f6f7; /* pozadina */
  --text-dark: #222;
  --text-light: #fff;
}

* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: Arial, sans-serif; color: var(--text-dark); background: var(--light); line-height: 1.6; }

/* HEADER */
.site-header { background: var(--dark); color: var(--text-light); padding: 15px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.brand a { color: var(--text-light); text-decoration: none; font-weight: bold; font-size: 1.2rem; }
.nav a { color: var(--text-light); margin-left: 20px; text-decoration: none; font-weight: 500; }
.nav a:hover { color: var(--accent); }

/* HERO */
.hero { position: relative; height: 500px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero .hero-inner { position: relative; color: #fff; z-index: 2; max-width: 1000px; }
.hero h1 { font-size: 2.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; }
.hero a.btn { background: var(--accent); color: #fff; padding: 12px 28px; border-radius: 6px; text-decoration: none; font-weight: bold; transition: background 0.3s; }
.hero a.btn:hover { background: #a8821c; }

/* SECTIONS */
.container { max-width: 1100px; margin: 0 auto; padding: 20px; }
.card { background: #fff; border-radius: 8px; padding: 20px; margin-bottom: 20px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.services { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; margin: 30px 0; }
.service { padding: 18px; border-radius: 8px; background: #fff; text-align: center; transition: transform 0.3s; }
.service:hover { transform: translateY(-5px); }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 8px; margin: 12px 0; }
.gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: 6px; }

/* CTA */
.cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px; border-radius: 8px; background: var(--accent); color: #fff; margin: 20px 0; }
.cta a.btn { background: #fff; color: var(--accent); }
.cta a.btn:hover { background: #e0c766; }
@media(max-width:600px){ .cta { flex-direction: column; align-items:flex-start; } }

/* FOOTER */
/* FOOTER FIKSIRAN NA DNU */
.site-footer {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 18px;
    position: fixed;      /* fiksira ga na prozor */
    bottom: 0;            /* na dnu */
    left: 0;
    width: 100%;          /* zauzima celu širinu */
    z-index: 999;         /* da bude iznad ostalog sadržaja */
}

/* Footer link */
.site-footer a.footer-link {
    color: #fff;
    text-decoration: none;
}
.site-footer a.footer-link:hover {
    color: var(--accent);
}

/* Da sadržaj stranice ne bude preklopljen footerom */
main {
    padding-bottom: 70px; /* minimalno visina footera */
}
.gallery-video img {
    border-radius: 6px;
    width: 100%;
    height: 140px;
    object-fit: cover;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-video img:hover {
    transform: scale(1.05);
}
.text-gold {
    color: #a8821c;
}
.btn-gold {
    background-color: #a8821c !important; /* !important da pregazi bootstrap */
    color: #fff !important;
    border: none;
    transition: background-color 0.3s;
}

.btn-gold:hover {
    background-color: #926f1b !important;
    color: #fff !important;
}

