:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: rgba(0,0,0,0.65);

  --card: rgba(255,255,255,0.78);
  --border: rgba(0,0,0,0.10);
  --shadow: 0 10px 30px rgba(0,0,0,0.10);

  --accent: rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(255,255,255,0.6), transparent),
              radial-gradient(1000px 500px at 80% 10%, rgba(255,255,255,0.4), transparent),
              var(--bg);
  color: var(--text);
}

.skip{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
}
.skip:focus{ left: 10px; }

.topbar{
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.55);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.topbar-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand{ display: flex; align-items: center; gap: 10px; }
.logo{
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--accent);
  border: 1px solid var(--border);
}
.brand-title{ font-weight: 700; line-height: 1.1; }
.brand-sub{ font-size: 12px; color: var(--muted); }

.nav{ display: flex; align-items: center; gap: 10px; color: var(--muted); }
.nav a{
  color: inherit;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav a:hover{
  border-color: var(--border);
  background: rgba(255,255,255,0.45);
}
.dot{ opacity: 0.6; }
.season-pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.45);
}

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 16px 26px;
}

.hero{
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.hero h1{
  margin: 0 0 6px;
  font-size: clamp(26px, 3.0vw, 34px);
}
.hero p{
  margin: 0;
  color: var(--muted);
}

.grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 16px;
}

.card{
  display: grid;
  grid-template-columns: 44px 1fr 18px;
  gap: 12px;
  align-items: center;

  text-decoration: none;
  color: inherit;

  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  padding: 16px 16px;
  box-shadow: var(--shadow);

  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
  border-color: rgba(0,0,0,0.16);
}

.card-icon{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--accent);
  border: 1px solid var(--border);
  font-size: 20px;
}
.card-body h2{ margin: 0 0 4px; font-size: 18px; }
.card-body p{ margin: 0; color: var(--muted); font-size: 14px; }
.card-arrow{ color: var(--muted); font-size: 18px; }

.panel{
  margin-top: 16px;
  padding: 18px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.panel h2{ margin: 0 0 10px; font-size: 18px; }
.panel p{ margin: 0 0 10px; color: var(--muted); }

.actions{ margin-top: 14px; }
.btn{
  display: inline-block;
  text-decoration: none;
  color: inherit;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.45);
}
.btn:hover{ background: rgba(255,255,255,0.65); }

.footer{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px 20px;
  color: var(--muted);
}

/* ---------- SEZONE ---------- */
body.season-winter{
  --bg: #ffffff;
  --text: #111111;
  --muted: rgba(0,0,0,0.65);
  --card: rgba(255,255,255,0.85);
  --border: rgba(0,0,0,0.10);
  --accent: rgba(0,0,0,0.06);
}

body.season-spring{
  --bg: #eaf7ee;         /* nežno zelena */
  --text: #123018;
  --muted: rgba(18,48,24,0.72);
  --card: rgba(255,255,255,0.62);
  --border: rgba(18,48,24,0.14);
  --accent: rgba(18,48,24,0.08);
}

body.season-summer{
  --bg: #fff6d9;         /* nežno rumena */
  --text: #3a2a00;
  --muted: rgba(58,42,0,0.70);
  --card: rgba(255,255,255,0.60);
  --border: rgba(58,42,0,0.14);
  --accent: rgba(58,42,0,0.08);
}

body.season-autumn{
  --bg: #f2e3c6;         /* rjavo-zlata */
  --text: #3b2410;
  --muted: rgba(59,36,16,0.70);
  --card: rgba(255,255,255,0.60);
  --border: rgba(59,36,16,0.14);
  --accent: rgba(59,36,16,0.08);
}
.footer-inner{
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer .sep{
  margin: 0 6px;
  opacity: 0.6;
}
.nav a.active{
  border-color: var(--border);
  background: rgba(255,255,255,0.65);
  font-weight: 600;
}
.footer-disclaimer{
  max-width: 980px;
  margin: 6px auto 0;
  padding: 0 16px 10px;
  text-align: center;
  opacity: 0.65;
  font-size: 12px;
  line-height: 1.4;
}

