/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Osnovni stil */
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }

/* Header */
header {
    display: flex; justify-content: space-between; align-items: center;
    background: #0d47a1; color: #fff; padding: 15px 30px;
}
header .logo { font-size: 1.5em; font-weight: bold; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { color: #fff; text-decoration: none; font-weight: bold; }

/* Hero sekcija */
.hero {
    background: url('images/voce.jpg') no-repeat center center/cover;
    height: 80vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    color: #fff; background-color: #1565c0;
}
.hero h1 { font-size: 3em; margin-bottom: 20px; }
.hero .btn {
    background: #ffffff; color: #0d47a1; padding: 10px 20px;
    text-decoration: none; border-radius: 5px; font-weight: bold;
}

/* Sekcije */
section { padding: 50px 20px; text-align: center; }

/* Proizvodi */
.products .product-grid {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.product-card {
    background: #e3f2fd; padding: 20px; border-radius: 10px;
    width: 250px; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.product-card img { width: 100%; border-radius: 10px; }

/* Kontakt forma */
.contact form {
    display: flex; flex-direction: column; gap: 15px;
    max-width: 400px; margin: 0 auto 30px auto;
}
.contact input, .contact textarea {
    padding: 10px; border: 1px solid #ccc; border-radius: 5px;
}
.contact button {
    background: #0d47a1; color: #fff; padding: 10px;
    border: none; border-radius: 5px; cursor: pointer;
}
.contact button:hover { background: #1565c0; }

/* Google