
:root{
  --bg-top:#FCF7F0; /* pozadina */
  --bg-bottom:#f3eadf;
  --surface:#fffdf9;
  --surface-2:#FCF7F0; /* meni */
  --text:#2c241d;
  --muted:#6a5b4f;
  --line:#dccfbe;
  --accent:#7a4f2a;
  --accent-2:#9a6a3e;
  --shadow:0 10px 26px rgba(78, 55, 32, 0.08);
}

*{box-sizing:border-box}

html, body{
  margin:0;
  padding:0;
  scroll-behavior:smooth;
}

body{
  font-family:Georgia, "Times New Roman", serif;
  background:linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color:var(--text);
  line-height:1.65;
}

.container{
  width:980px;
  margin:0 auto;
  padding:0 18px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid var(--line);
  background:rgba(255, 252, 247, 0.92);
  backdrop-filter:blur(6px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 0;
}

.brand-logo{
  height:56px;
  width:auto;
  display:block;
}

.header-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.site-nav{
  display:flex;
  gap:8px;
  font-family:system-ui, Arial, sans-serif;
  font-size:14px;
}

.site-nav a{
  text-decoration:none;
  color:var(--accent);
  padding:7px 10px;
  border-radius:8px;
  transition:background-color .15s ease, color .15s ease;
}

.site-nav a:hover{
  background:var(--surface-2);
  color:var(--accent-2);
}

.lang-switch select{
  font-family:system-ui, Arial, sans-serif;
  font-size:13px;
  color:var(--accent);
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:6px 28px 6px 10px;
  cursor:pointer;
}

.hero{
  padding:34px 0 12px 0;
}

h1, h2, h3{
  margin:0 0 10px 0;
  font-weight:700;
  letter-spacing:.2px;
}

h1{
  font-size:30px;
  line-height:1.25;
}

h2{
  font-size:20px;
  color:var(--accent);
}

h3{
  font-size:18px;
}

.lead{
  margin:0;
  color:var(--muted);
  max-width:82ch;
  font-size:16px;
}

.card{
  background:rgba(255, 253, 249, 0.88);
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
  padding:18px 20px;
  margin:18px 0;
}

.kv-row{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:14px;
  padding:10px 0;
  border-top:1px solid var(--line);
}

.kv-row:first-child{
  border-top:none;
}

.kv-row strong{
  font-family:system-ui, Arial, sans-serif;
  font-size:13px;
  color:var(--text);
}

.team-grid{
  list-style:none;
  padding:0;
  margin:12px 0 0 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 18px;
  font-family:system-ui, Arial, sans-serif;
  font-size:14px;
}

.team-grid li{
  position:relative;
  padding-left:16px;
}

.team-grid li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--accent);
}

.news-date{
  margin:0 0 4px 0;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.4px;
  color:var(--accent);
  font-family:system-ui, Arial, sans-serif;
}

.site-footer{
  border-top:1px solid var(--line);
  margin-top:24px;
  padding:16px 0 24px 0;
}

.small{
  font-size:13px;
  color:var(--muted);
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
  gap:14px;
  margin-top:12px;
}

.gallery img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:8px;
  border:1px solid var(--line);
  transition:transform .18s ease, box-shadow .18s ease;
}

.gallery img:hover{
  transform:scale(1.04);
  box-shadow:0 6px 14px rgba(0,0,0,0.12);
}
