 <style>
  * { box-sizing: border-box; }

  html {
    height: 100%;
    background: url('slike/trava.webp') no-repeat center center fixed;
    background-size: cover;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background: transparent;
  }

  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    z-index: -1;
  }

  .navbar {
    background: rgba(244, 244, 244, 0.8);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border-radius: 10px;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 100%;
  }

  .navbar a {
    text-decoration: none;
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .navbar a:hover { background: rgba(200,200,200,0.8); }

  .hero {
    background: rgba(255,255,255,0.75);
    padding: 80px 20px;
    border-radius: 20px;
    margin: auto;
    max-width: 1000px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    animation: fadeInDown 1s ease forwards;
  }
  .hero-title span {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76,175,80,0.6);
  }

  .typing {
    font-size: 1.3rem;
    margin-top: 15px;
    border-right: 2px solid #4CAF50;
    white-space: nowrap;
    overflow: hidden;
    min-height: 1.5em;
  }

  .special-btn {
    margin-top: 25px;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .special-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

  @keyframes fadeInDown {
    from {opacity:0; transform: translateY(-30px);}
    to {opacity:1; transform: translateY(0);}
  }

  .cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
    margin-top: 10px;
  }
  .cta-button:hover { background-color: #388E3C; }

  .section {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  .section-title{
    text-align: center;
  }
  .section.active { opacity:1; transform: translateY(0); }

  .section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
  .gallery a img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .gallery a img:hover { transform: scale(1.05); }

  table {
    border-collapse: collapse;
    width: 80%;
    margin: 0 auto;
    background: white;
  }
  th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
  }

  .footer {
    margin-top: auto;
    background: rgba(244,244,244,0.9);
    padding: 15px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    border-radius: 0;
  }

  @media (max-width:600px){
    .navbar { flex-direction: column; gap:10px; }
    .hero { padding:40px 10px; }
    .cta-button { padding:10px 20px; font-size:20px; }
    table { width:100%; font-size:14px; }
    .gallery { grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); }
    .section h2 { font-size:1.6rem; }
  }
  /* 2. Animacija ikon ob hoverju */
ul li h3 {
  transition: transform 0.3s, color 0.3s;
  cursor: default;
}
ul li h3:hover {
  transform: scale(1.05) rotate(-2deg);
  color: #388E3C;
}

/* 5. Fade-in efekt za slike v galeriji */
.gallery img {
  opacity: 0;
  transition: opacity 1s ease;
}
.gallery img.loaded {
  opacity: 1;
}
.falling {
  position: fixed;
  top: -50px;
  pointer-events: none;
  animation: fall linear forwards;
  z-index: 0;
}

@keyframes fall {
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}
#storitev ul li a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, color 0.2s;
}

#storitev ul li a:hover {
  transform: scale(1.05);
  color: #388E3C;
}
#cenik table tr {
  background-color: white;
  transition: background-color 2s ease;
}

.highlight {
  background-color: #8dda8f !important; /* svetlo zelena */
}
/* Odmik za vse vrstice v ceniku */
[id^="cenik-"] {
  scroll-margin-top: 120px; /* prilagodi glede na višino headerja */
}
#komentar-box {
  transition: opacity 0.5s ease;
}
.komentar-kartica {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  max-width: 700px;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: opacity 0.6s ease;
  opacity: 1;
}

.komentar-ime {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #2E7D32;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.komentar-zvezdice {
  color: #FFD700;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.komentar-besedilo {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}
.komentar-kartica {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  max-width: 700px;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.komentar-kartica.fade-out {
  opacity: 0;
}
.komentar-kartica {
  background: linear-gradient(135deg, #ffffff, #f0f4f0);
  border-radius: 16px;
  padding: 30px;
  max-width: 700px;
  margin: 30px auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.komentar-kartica.fade-out {
  opacity: 0;
}

.komentar-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.komentar-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.komentar-ime {
  font-weight: 600;
  font-size: 1.2rem;
  color: #2E7D32;
}

.komentar-zvezdice {
  color: #FFD700;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.komentar-besedilo {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}
#cenik table {
      border-collapse: collapse;
      width: 100%;
      margin: 20px auto;
      background: white;
      animation: fadeIn 1s ease-in;
    }
    #cenik th, #cenik td {
      border: 1px solid #ccc;
      padding: 12px;
      text-align: left;
    }
    #cenik th {
      background-color: #f0f4f0;
      font-weight: bold;
    }
    #cenik table tr:hover {
      background-color: #e8f5e9;
      transform: scale(1.01);
      transition: background-color 0.4s ease, transform 0.3s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .cenik-intro 
    {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(to right, #0f2b0f, #031004);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(59, 172, 28, 0.3);
  }

.cenik-pes-box {
  margin-top: 40px;
  padding: 20px;
  background: #f9f9f9;
  border-left: 6px solid #4CAF50;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-in;
}

.cenik-pes-box h3 {
  font-size: 1.4rem;
  color: #2E7D32;
  margin-bottom: 10px;
}

.cenik-pes-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.cenik-pes-cena {
  font-size: 1.3rem;
  margin-top: 10px;
  color: #388E3C;
  font-weight: bold;
}
.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1d8a16; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease-out;
  line-height: 1.4;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  position: relative;
  padding: 15px;
  background-color: rgba(244,244,244,0.9);
  color: rgb(5, 5, 5);
  font-size: 20px;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  text-align: right;
}

.nav-links {
  display: none;
  flex-direction: column;
  margin-top: 15px;
 
}

.nav-links a {
  color: rgb(13, 11, 11);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
}

.nav-links a:hover {
  background-color: rgba(244,244,244,0.9);
}

/* Optional: show menu on desktop */
@media (min-width: 768px) {
  .hamburger {
    display: none;
    text-align: right;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    gap: 20px;
    margin-top: 0;
  }
}
