

.tooltip-icon {
    display: inline-block;
    background: #444;
    color: white;
    border-radius: 9999px;
    padding: 0.15rem 0.45rem;
    font-size: 0.75rem;
    cursor: help;
    position: relative;
  }
  .tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 120%;
    background: #333;
    color: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .tooltip-icon:hover::after {
    opacity: 1;
  }



  .container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-header #contact-hdr{
    text-decoration: underline 3px;
    text-underline-offset: 8px;
    color:#BC6C25;
    font-weight: 600;
}

.container .glass {
  position: relative;
  width: 270px;
  height: 300px;
  background: linear-gradient(#fff2, transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0 -45px;
  backdrop-filter: blur(10px);
  transform: rotate(calc(var(--r) * 1deg));
}

.container:hover .glass {
  transform: rotate(0deg);
  margin: 0 10px;
}

.container .glass::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.container .glass svg {
  width: 40px;   /* fix szélesség */
  height: 40px;  /* fix magasság */
  fill: #fff;
}


/* Mobil nézet (max 768px) */
@media (max-width: 768px) {
  .container {
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .container .glass {
    width: 100px;
    height: 130px;
    margin: 0;
    transform: none !important; /* ne forogjon */
  }

  .container .glass::before {
    font-size: 0.8rem;
    height: 40px;
  }

  /* Hover kikapcsolása */
  .container:hover .glass {
    transform: none;
    margin: 0;
  }

  /* SVG mindig látható, kicsinyítés */
  .container .glass svg {
    width: 30px;   /* fix szélesség */
    height: 30px;  /* fix magasság */
    margin-top: -10px;
  }
}


.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: 60%;
  border-radius: 50%;
}
