body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  margin: 0;
  padding: 0;
}

.hero-section {
  position: relative;
  background: url('hatter.png') top center / cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
z-index: 1;

}

.hero-content {
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

footer {
  background-color: #212529;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

.lego-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.btn-gradient {
  background: linear-gradient(135deg, #4f46e5, #3b82f6); /* indig� � k�k */
  color: white;
  border: none;
  transition: background 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #4338ca, #2563eb); /* s�t�tebb �rnyalat */
}
.carousel-item {
  transition: opacity 0.3s ease-in-out; /* alapértelmezett 0.6s helyett */
}