
:root{
  --mint:#b7ecec;
  --mint-soft:#e6f7f7;
  --peach:#fde3cf;
  --cream:#fff6df;
  --blue-soft:#dff1ff;
  --ink:#1f2937;
  --ink-soft:#4b5563;
  --accent:#ffda46;
  --white:#ffffff;
}

/* RESET */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  background:var(--cream);
  color:var(--ink);
}
a{text-decoration:none;color:inherit}
img{
  max-width:100%;
  height:auto;
}


/* =========================
   NAV
========================= */
.nav{
  background:var(--white);
  border-bottom:1px solid #e5e7eb;
  position:sticky;
  top:0;
  z-index:100;
}
.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}
.logo{
  font-weight:700;
  font-size:18px;
}

.menu{
  display:flex;
  align-items:center;
  gap:18px;
}
.menu a{
  font-weight:500;
  color:var(--ink-soft);
  padding:10px 10px;
  border-radius:10px;
  transition:0.2s ease;
}
.menu a:hover{
  color:var(--accent);
}
.menu a[aria-current="page"]{
  color:var(--accent);
}

/* hamburger */
.hamburger{
  display:none;
  background:none;
  border:0;
  padding:10px;
  border-radius:12px;
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:26px;
  height:3px;
  margin:5px 0;
  background:var(--ink);
  border-radius:3px;
  transition:transform .2s ease, opacity .2s ease;
}
.hamburger.is-open span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2){
  opacity:0;
}
.hamburger.is-open span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* overlay */
.nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(17,24,39,0.35);
  z-index:90;
}

/* =========================
   CONTENT
========================= */
.section{
  max-width:900px;
  margin:70px auto;
  padding:44px 28px;
  border-radius:18px;
}
.hero{
  background:var(--peach);
}
.content{
  background:var(--mint-soft);
}
.section h1{
  font-size:36px;
  margin-bottom:18px;
}
.section h2{
  font-size:26px;
  margin-top:32px;
}
.section p{
  max-width:720px;
  line-height:1.7;
}
.section ul{
  margin-top:14px;
  padding-left:20px;
}
.section li{
  margin-bottom:8px;
}

.cta{
  display:inline-block;
  margin:24px;
  padding:12px 22px;
  background:var(--accent);
  color:#282424;                 /* crn tekst da bude čitljiv */
  border-radius:10px;
  font-weight:700;
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:0 8px 18px rgba(0,0,0,0.10);
  transition:transform .15s ease, filter .15s ease;
}
.cta:hover{
  filter:brightness(1.1);
  transform:translateY(-1px);
}
.cta:active{
  transform:translateY(0px);
}


/* =========================
   FOOTER
========================= */
.site-footer{
  background:#fafafa;
  padding:60px 20px 40px;
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}
.site-footer__inner{max-width:900px;margin:0 auto}
.site-footer__nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;
  margin-bottom:40px;
}
.site-footer__nav a{
  color:#666;
  font-size:14px;
  padding:8px 0;
}
.site-footer__brand{
  text-align:center;
  color:#2f4d3b;
  font-size:22px;
  font-weight:300;
  margin-bottom:5px;
}
.site-footer__copy{
  text-align:center;
  color:#483939;
  font-size:13px;
}
.site-footer{
  background:#fafafa;
  padding:60px 20px 40px;
  text-align:center;
}

.footer-inner{
  max-width:900px;
  margin:0 auto;
}

.footer-nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;
  margin-bottom:40px;
}

.footer-nav a{
  color:#666;
  font-size:14px;
  text-decoration:none;
  position:relative;
  padding:8px 0;
}

.footer-nav a:hover{
  color:#4b765c;
}

.footer-brand{
  font-size:22px;
  font-weight:300;
  margin-bottom:10px;
  color:#2f4d3b;
}

.footer-copy{
  font-size:13px;
  color:#483939;
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){

  .hamburger{display:block}

  .menu{
    position:fixed;
    top:64px;
    left:16px;
    right:16px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:6px;

    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:10px;

    box-shadow:0 18px 40px rgba(28, 27, 27, 0.922);

    opacity:0;
    transform:translateY(-8px);
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
    z-index:99;
  }

.menu a{
  font-weight:500;
  color:var(--ink-soft);
  padding:10px 4px;
  transition:0.2s ease;
}

.menu a:hover{
  color:var(--ink);
}

.menu a[aria-current="page"]{
  color:var(--accent);
  font-weight:600;
}


  .menu.open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }

  .section{
    margin:40px 16px;
    padding:32px 20px;
  }
  .section h1{font-size:28px}
}
