@font-face {
  font-family: 'Poppins';
  src: local('Poppins'), 
       local('Poppins-Regular'),
       url('poppins-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: #566E52;
  background-color: #FDD881;
  overflow-x: hidden;
}

    a { text-decoration: none; color: inherit; }

    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      padding: 0.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      flex-wrap: wrap;
    }

    nav .logo {
      font-weight: bold;
      font-size: 1.5rem;
      color: #3B4C3D;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    nav ul {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    nav ul li a {
      border: none;
	  border-radius: 5px;
	  padding: 12px;
    }
	
	nav ul li a:hover {
      border: 2px solid #EEB854;
	  border-radius: 5px;
	  padding: 10px;
    }

#unmuteBtn {
  padding: 4px;
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
}

#unmuteBtn img {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

#unmuteBtn:hover {
  color: white;
  border: 2px solid #EEB854;
}

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #3B4C3D;
      border-radius: 2px;
      transition: 0.3s;
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      nav ul {
        position: absolute;
        top: 65px;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 1rem;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }

      nav ul.active {
        transform: translateX(0);
      }

      .nav-right {
        gap: 1rem;
      }
    }

    .hero {
      height: 100vh;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      overflow: hidden;
      animation: fadeIn 2s ease-out;
      z-index: 1;
    }

    .hero video {
      position: fixed;
      top: 0;
      left: 0;
      object-fit: cover;
      width: 100%;
      height: 100vh;
      z-index: -1;
      transition: transform 0.5s ease;
    }

    .hero .content {
      position: relative;
      z-index: 2;
    }

    section {
      padding: 1rem 2rem;
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 3;
    }

    section h2 {
      background: rgba(255, 255, 255, 0.0);
      padding: 2rem;
      backdrop-filter: blur(10px);
      text-align: center;
    }

    section p {
      background: rgba(255, 255, 255, 0.0);
      padding: 1rem;
      backdrop-filter: blur(10px);
      text-align: center;
    }

    #o-nama { background-color: #fefefe; }
    #znacajke { background-color: #fff7d1; }
    #cijene { background-color: #fefefe; }
    #kontakt { background-color: #fff7d1; }

    .about p {
      font-size: 1rem;
      max-width: 700px;
      margin: auto;
      color: #566E52;
      text-align: center;
    }

    .organic-lemon {
      text-align: center;
      margin: 2rem 0;
    }

    .organic-lemon img {
      width: 90%;
      max-width: 500px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
    }

    .organic-lemon img:hover {
      transform: scale(1.05);
    }

    .lemon-text {
      margin-top: 1rem;
      font-size: 1.1rem;
      color: #3B4C3D;
    }
	
	  .bold-text {
      color: #3B4C3D;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      padding: 1rem;
      gap: 2rem;
	    color: #3B4C3D;
    }

    .feature {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .feature:hover {
      transform: scale(1.05);
    }

    .feature img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      cursor: zoom-in;
    }

    .feature h3 {
      padding: 1rem;
      font-size: 1rem;
    }

    .pricing {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 1rem;
      justify-content: center;
    }

    .price-card {
      background: #fff;
      border: 4px solid #EEB854;
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      width: 250px;
      transition: transform 0.3s ease;
    }

    .price-card:hover {
      transform: scale(1.05);
    }

    .price-card h3 {
      margin-bottom: 0.0rem;
    }

    .price-card p {
      font-size: 1.5rem;
      font-weight: bold;
      color: #3B4C3D;
    }

    .price-image {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
    }

    .price-image img {
      width: 230px;
      height: auto;
      border-radius: 8px;
    }

    .contact {
      text-align: center;
    }

    .socials {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      font-size: 2.5rem;
      margin-top: 1.5rem;
    }

    .socials img {
      cursor: pointer;
      width: 60px;
      height: 60px;
      transition: transform 0.3s ease;
    }

    .socials img:hover {
      transform: scale(1.15) rotate(5deg);
    }

    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .lightbox {
      display: none;
      position: fixed;
      z-index: 999;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.85);
      justify-content: center;
      align-items: center;
    }

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  animation: fadeIn 0.4s ease-in-out;
  cursor: default;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }

.video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1024px;
  height: 768px;
  transform: translate(-50%, -50%) scale(var(--scale));
  transform-origin: center center;
  pointer-events: none;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.0), #efb854);
  min-height: 100vh;
}
