/*
Theme Name: Vodek Theme
Theme URI: https://vodek.hr
Author: Vodek Team
Author URI: https://vodek.hr
Description: Minimalistička prezentacijska tema za Vodek javnu česmu - tri u jedan: direktna konzumacija, punjenje boce, pristup životinjama.
Version: 1.0
Text Domain: vodek
*/

:root {
  --primary: #25addc;
  --secondary: #24a869;
  --text: #222;
  --bg: #f5f7fa;
  --white: #ffffff;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: var(--primary);
  color: var(--white);
  padding: 1.4rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
}

.site-title img {
  height: 1.2rem;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.25s;
}

nav a:hover {
  opacity: 1;
}

section {
  padding: 4rem 1.5rem;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

footer {
  background: #333;
  color: #ccc;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}
