# HULA KAMEN — SEO JSON-LD Structured Data
# ==========================================
# 
# UPUTE: Kopirajte donji kod i zalijepite ga u <head> sekciju 
# svake HTML stranice PRIJE zatvaranja </head> taga.
# 
# Ovaj kod služi za Google Rich Snippets, Knowledge Panel
# i poboljšano prikazivanje u rezultatima pretrage.
# ==========================================


## 1. LocalBusiness Schema (za sve stranice)

```html
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "HULA KAMEN",
  "description": "Obrt za eksploataciju i obradu benkovačkog pločastog kamena. Proizvodnja i prodaja prirodnog vapnenca za građevinarstvo i uređenje interijera i eksterijera.",
  "url": "https://www.hulakamen.hr",
  "telephone": "+385-xx-xxx-xxxx",
  "email": "info@hulakamen.hr",
  "foundingDate": "2013",
  "image": "https://www.hulakamen.hr/img/og-image.jpg",
  "logo": "https://www.hulakamen.hr/img/logo.png",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Benkovac",
    "addressLocality": "Benkovac",
    "postalCode": "23420",
    "addressRegion": "Zadarska županija",
    "addressCountry": "HR"
  },
  "geo": {
    "@type": "GeoCoordinates",
    "latitude": 44.0328,
    "longitude": 15.6115
  },
  "areaServed": [
    {"@type": "Country", "name": "Croatia"},
    {"@type": "Country", "name": "Austria"},
    {"@type": "Country", "name": "Germany"},
    {"@type": "Country", "name": "Slovenia"},
    {"@type": "Country", "name": "Italy"},
    {"@type": "Country", "name": "France"},
    {"@type": "Country", "name": "Netherlands"},
    {"@type": "Country", "name": "Czech Republic"},
    {"@type": "Country", "name": "Poland"}
  ],
  "makesOffer": [
    {"@type": "Offer", "itemOffered": {"@type": "Product", "name": "Fasadni kamen", "description": "Benkovački vapnenac za oblaganje fasada"}},
    {"@type": "Offer", "itemOffered": {"@type": "Product", "name": "Podni kamen", "description": "Kamene ploče za podove i terase"}},
    {"@type": "Offer", "itemOffered": {"@type": "Product", "name": "Bunja", "description": "Rustikalni kamen za zidove"}},
    {"@type": "Offer", "itemOffered": {"@type": "Product", "name": "Lomljeni kamen", "description": "Tradicionalni kamen za suhozide"}},
    {"@type": "Offer", "itemOffered": {"@type": "Product", "name": "Sječeni kamen", "description": "Strojno rezani kamen za zidanje"}}
  ],
  "openingHoursSpecification": [
    {"@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday","Tuesday","Wednesday","Thursday","Friday"], "opens": "07:00", "closes": "16:00"},
    {"@type": "OpeningHoursSpecification", "dayOfWeek": "Saturday", "opens": "07:00", "closes": "13:00"}
  ],
  "priceRange": "$$",
  "paymentAccepted": "Bank Transfer, Cash",
  "currenciesAccepted": "EUR",
  "hasOfferCatalog": {
    "@type": "OfferCatalog",
    "name": "Benkovac Natural Stone Products",
    "itemListElement": [
      {"@type": "OfferCatalog", "name": "Facade Stone", "description": "Natural limestone slabs for interior and exterior wall cladding"},
      {"@type": "OfferCatalog", "name": "Floor Stone", "description": "Durable limestone slabs for floors, terraces and pathways"},
      {"@type": "OfferCatalog", "name": "Rustic Stone (Bunja)", "description": "Rough-hewn rectangular blocks for walls and fireplaces"},
      {"@type": "OfferCatalog", "name": "Split Slab", "description": "Traditional stone for dry-stone walls and fences"},
      {"@type": "OfferCatalog", "name": "Cut Stone", "description": "Machine-cut stone of precise dimensions"},
      {"@type": "OfferCatalog", "name": "Wall Caps", "description": "Finishing elements for walls and fences"},
      {"@type": "OfferCatalog", "name": "Custom Stone", "description": "Stone processed to client specifications"}
    ]
  },
  "knowsAbout": ["limestone quarrying", "natural stone processing", "facade cladding", "Mediterranean architecture", "dry-stone walls", "stone flooring"],
  "sameAs": []
}
</script>
```


## 2. WebSite Schema (za početnu stranicu)

```html
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "WebSite",
  "name": "HULA KAMEN",
  "url": "https://www.hulakamen.hr",
  "potentialAction": {
    "@type": "SearchAction",
    "target": "https://www.hulakamen.hr/search?q={search_term_string}",
    "query-input": "required name=search_term_string"
  }
}
</script>
```


## 3. NAPOMENE:

- Zamijenite "+385-xx-xxx-xxxx" sa stvarnim brojem telefona
- Dodajte URL slike u "image" i "logo" polja
- U "sameAs" dodajte linkove na društvene mreže (Facebook, Instagram, LinkedIn)
- Testirajte na: https://search.google.com/test/rich-results
- Testirajte JSON validnost na: https://validator.schema.org/
