:root {
  --primary: #8b0000;
  --secondary: #f5f5f5;
  --text: #222;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: var(--text); background: var(--secondary); }

header {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 20px;
}
header h1 { font-size: 2rem; }
header p { font-size: 1.1rem; }

nav {
  background: #333;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav a {
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
  transition: 0.3s;
}
nav a:hover { background: var(--primary); }

section {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}
.hero {
  background: url('img/trubaci-hero.jpg') no-repeat center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero h2 {
  background: rgba(0,0,0,0.5);
  padding: 15px;
  border-radius: 10px;
  font-size: 2rem;
}

.card {
  background: #fff;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

@media(max-width: 768px) {
  header h1 { font-size: 1.5rem; }
  .hero h2 { font-size: 1.5rem; padding: 10px; }
  nav { flex-direction: column; }
}
@media(max-width: 768px) {
  header h1 { font-size: 1.5rem; }
  .hero h2 { font-size: 1.5rem; padding: 10px; }
  nav { flex-direction: column; }

  /* Centriranje svih slika */
  img {
    display: block;
    margin: 10px auto; /* centriranje horizontalno */
    max-width: 90%;    /* da slike ne izlaze sa ekrana */
    height: auto;      /* proporcionalno smanjenje visine */
  }

  .gallery {
    grid-template-columns: 1fr; /* galerija u jednoj koloni na mobilnom */
  }
}
.hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.contact-icons a {
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.contact-icons a:hover {
  background: #222;
}

.contact-icons img {
  width: 24px;
  height: 24px;
}
.usluge-slike img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}
.hero-text-ukras {
  text-align: center;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff8e1; /* svetla, dekorativna boja pozadine */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 900px;
}

.hero-text-ukras .highlight-text {
  color: #b22222; /* bordo crvena, ističe tekst */
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
}
