

h2{
background: #FFB76B;
background: linear-gradient(to right, #FFB76B, #FFA73D, #FF7C00, #FF7F04 );
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
} 


.holographic-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.75s ease;
}

.holographic-card h2 {
  color: #bc6b25;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.holographic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg,
      transparent,
      transparent 30%,
      #bc6b25);
  transform: rotate(-45deg);
  transition: all 0.75s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #bc6b25;
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}


#particles {
  pointer-events: none; /* Ne blokkolja az egérrel való interakciókat */
  opacity: 0.2; /* Halvány részecskék a kontraszt megtartásához */
}


.swiper-container {
  width: 100%;
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
  padding-left: 10%;
  padding-right: 10%;
  overflow: hidden;
  transform-style: preserve-3d;
  position: relative;
}

.swiper-pagination {
  position: relative !important; /* ne legyen absolute */
  bottom: auto !important;
  margin-top: 1rem;
  text-align: center;
}
.swiper-slide {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.4;
  transition: transform 0.4s ease, opacity 0.4s ease;
  cursor: pointer;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff!important;
}

.swiper-pagination-bullet {
  background: #bc6b25!important;
}


.shape-1 {
  width: 600px;
  height: 600px;
  top: 20%;
  left: -200px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  width: 800px;
  height: 800px;
  top: 25%;
  right: -400px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
  width: 600px;
  height: 600px;
  top: 45%;
  border-radius: 50%;
}

.shape-4 {
  width: 600px;
  height: 600px;
  top: 50%;
  right: -200px;
  border-radius: 50%;
}
.shape-5 {
  width: 1000px;
  height: 1000px;
  top: 75%;
  left:10%;
  border-radius: 50%;
}
.shape-6 {
  width: 800px;
  height: 800px;
  top: 60%;
  left:-350px;
  border-radius: 50%;
}

.headline-wrapper,
.tagline-wrapper {
  overflow: hidden;
}

.main-headline {
  font-size: clamp(2.5rem, 8vw, 3rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -1px;
}

.tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  opacity: 0.9;
}