body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }
    nav {
      background: #8c8b89;
      padding: 1rem;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    nav ul {
      display: flex;
      list-style: none;
      justify-content: center;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #cfe2ff;
    }
    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
      }
      nav a {
        font-size: 1rem;
      }
    }
	
	/* Alapbeállítás: a gomb rejtve van asztali gépen */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  text-align: right;
  padding-right: 20px;
}

/* Mobil és Tablet nézet (1024px alatt) */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block; /* Megjelenik a hamburger ikon */
  }

  nav ul {
    display: none; /* Alapból rejtve van a lista */
    flex-direction: column;
    width: 100%;
    background: #8c8b89;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  }

  nav ul.active {
    display: flex; /* Ha rákattintunk, megjelenik */
  }

  nav a {
    font-size: 1.2rem;
    display: block;
    padding: 10px;
  }
}
    section {
      padding: 4rem 2rem;
      max-width: 1000px;
      margin: auto;
    }
    .hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('kepek/kep.webp') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    border-radius: 0 0 16px 16px;
}
	
	
	
    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.2rem;
      background: rgba(0,0,0,0.4);
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
    }
    h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
    }
    .card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 2rem;
    }
    ul {
      padding-left: 1.2rem;
    }
    .gallery-container, .product-images {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }
    .referencia-kep {
      width: 300px;
      height: 300px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .product-images img {
       width: 100%;       /* Kitölti a rendelkezésre álló helyet */
  max-width: 300px;  /* De nem lesz nagyobb 300px-nél */
  height: auto;      /* Megtartja az arányokat, nem nyújtja meg */
  object-fit: cover; /* Kitölti a keretet vágás nélkül */
  image-rendering: -webkit-optimize-contrast; /* Élesíti a megjelenítést */
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	  cursor: pointer; /* Jelezzük, hogy kattintható */
  transition: transform 0.3s ease;
    }
   
	
	footer {
  background: #2c2c2c; /* Sötétebb, elegánsabb szín */
  color: #ddd;
  padding: 3rem 1rem 1rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  padding-bottom: 2rem;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #2c7a4b; /* A márkaszíned */
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
	
	
	
	.cta-btn {
  display: inline-block;
  background: #2c7a4b;
  color: white !important;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none !important;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
  background: #1e5333;
  transform: translateY(-2px);
}
	
	
	
	
	
	
	
	.product-images img:hover {
  transform: scale(1.02); /* Egy kis mozgás hoverre */
}
	

.product-images img,
.product-images .video-thumb {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

/* A lejátszó gomb pontos középre helyezése */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(44, 122, 75, 0.8); /* A zöld színedet használva */
  color: white;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  pointer-events: none; /* Hogy az alatta lévő div kattintható maradjon */
}

.video-thumb:hover .play-btn {
  background: rgba(44, 122, 75, 1);
  scale: 1.1;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.video-thumb {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 300px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

	

	
	
	.product-images div {
  position: relative;
  cursor: pointer;
}
	
	.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.price-card {
  background: #f8f8f8;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: 0.2s;
   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

.price-card:hover {
  transform: translateY(-3px);
}

.price {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 0.5rem;
  color: #2c7a4b;
   text-align: center; 
}

.highlight {
  background: #2c7a4b;
  color: white;
}

.highlight .price {
  color: white;
}


.bulk {
  background: linear-gradient(135deg, #2c7a4b, #3fa86a);
  color: white;
  position: relative;
  overflow: hidden;
  border: 2px solid #2c7a4b;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* függőleges közép */
  align-items: center;       /* vízszintes közép */
  text-align: center;
   grid-column: 1 / -1;   /* teljes sor */
  justify-self: center;  /* középre */
  max-width: 250px;      /* ne legyen túl széles */
   margin-top: 10px;
}

.bulk h3 {
   font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}







.bulk .price {
  color: #fff;
  font-size: 1.4rem;
   text-align: center;
  width: 100%;
  
}

/* kis “badge” a sarokban */
.bulk::before {
  content: "NAGY TÉTEL";
  position: absolute;
  top: 10px;
  right: -40px;
  background: #ff3b3b;
  color: white;
  padding: 5px 40px;
  font-size: 0.7rem;
  transform: rotate(45deg);
  font-weight: bold;
	
}

/* enyhe pulzáló effekt */
.bulk:hover {
  transform: translateY(-5px) scale(1.02);
}




#termek {
  background: url('kepek/kep1.webp') center / cover no-repeat;
  padding: 4rem 2rem;
}

#termek .card {
	background: rgba(255, 255, 255, 0.0); 
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  
}
#termek .card > p, 
#termek .card > ul {
  background: rgba(0, 0, 0, 0.4); /* Finom sötétítés a szöveg alatt */
  padding: 15px;
  border-radius: 8px;
  color: #fff; /* Fehér szöveg a sötét háttéren */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#termek h2 {
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Kiemeli a címet */
}


.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }



.warning {
  color: white;
  background: red;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


#kapcsolat a {
  color: #2c7a4b;
  text-decoration: none;
  font-weight: bold;
}

#kapcsolat a:hover {
  text-decoration: underline;
}



.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.feat-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 250px;
}











