/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}



/* Header */
header {
    background-color: #333;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

/* Kontejner */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Raspored elemenata */
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

/* Stilizacija loga */
.logo img {
    width: 100px;
    height: auto;
}

/* Meni u sredini */
.meni {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Naslov */
.meni h1 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

/* Navigacija */
nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0077cc;
}

/* Main Content */
.hero {
  background: url('hero-background.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  font-family: 'Arial', sans-serif;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.5em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero .btn {
  background-color: #004d99;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #003366;
}

.featured-products {
  padding: 50px 20px;
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.featured-products h3 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
}

.product-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 250px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.product h4 {
  margin-top: 15px;
  font-size: 1.3em;
  color: #004d99;
}

.featured-products .btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background-color: #004d99;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.featured-products .btn:hover {
  background-color: #003366;
}



/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

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

footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

footer .logo img {
    max-width: 150px;
    height: auto;
}

footer .kontakt, 
footer .kontakt1, 
footer .radnoVreme {
    flex: 1 1 200px;
}

footer p {
    margin: 8px 0;
}

footer .naslov,
footer .headline {
    font-weight: bold;
    font-size: 16px;
    margin-top: 15px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer .email span {
    font-weight: bold;
}
/* === Responsive dodatak za mobilne uređaje === */

@media (max-width: 768px) {
  /* Header logo centriran i manji */
  .logo img {
    width: 80px;
  }

  /* Meni i naslov ispod loga */
  .meni {
    position: static;
    transform: none;
    margin-top: 10px;
  }

  .meni h1 {
    font-size: 20px;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Hero sekcija */
  .hero {
    padding: 60px 20px;
  }

  .hero h2 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1.2em;
  }

  /* Proizvodi jedan ispod drugog */
  .product-list {
    flex-direction: column;
    align-items: center;
  }

  .product {
    width: 90%;
  }

  /* Footer layout: kolone ispod sebe */
  footer .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  footer .kontakt,
  footer .kontakt1,
  footer .radnoVreme {
    width: 100%;
  }

  footer .logo {
    text-align: center;
    width: 100%;
  }

  footer .logo img {
    margin: 0 auto;
  }
}
