.primary-gradient {
  position: absolute;
  background: linear-gradient(
    to top,
    rgba(52, 175, 184, 0.35),
    transparent
  );
  pointer-events: none;
}

.boss-heading {
    font-size: 2.25rem; /* lg:text-4xl */
}

@media (min-width: 768px) {
    .boss-heading {
        font-size: 1.875rem; /* md:text-3xl */
    }
}

@media (min-width: 1024px) {
    .boss-heading {
        font-size: 2.25rem; /* lg:text-4xl */
    }
}

@media (min-width: 1280px) {
    .boss-heading {
        font-size: 3rem; /* xl:text-5xl */
    }
}



.responsive-title {
  font-size: 1.875rem; /* text-3xl környéke mobilon (alap) */
  margin-bottom: 1.25rem;
}

/* md ≈ tablet */
@media (min-width: 768px) {
  .responsive-title {
    font-size: 2.25rem;
  }
}

/* lg */
@media (min-width: 1024px) {
  .responsive-title {
    font-size: 3rem; /* ~text-5xl */
  }
}

/* xl */
@media (min-width: 1280px) {
  .responsive-title {
    font-size: 3.75rem; /* ~text-6xl */
  }
}

/* 2xl (ha “xl:text-7xl”-t akarod igazán) */
@media (min-width: 1536px) {
  .responsive-title {
    font-size: 4.5rem; /* text-7xl */
  }
}



.col-1 {
grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) {
.col-2 { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 768px) {
.col-3 { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 1024px) {
.col-4 { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 1280px) {
.col-5 { grid-template-columns: repeat(5, 1fr); } }


#scene{
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none; /* EZ miatt tudsz kattintani mindenen minhol is */
}


.card-soft {
    background-color: #f3f4f6; /* bg-gray-100 */
    padding: 2rem; /* p-8 */
    border-radius: 1rem; /* rounded-2xl */

    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.12),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.sine-button {
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sine-button:hover {
    background: #34afb8; 
}

.custom-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.custom-card:hover {
    border-color: rgba(52, 175, 184, 0.5);
    box-shadow:
        0 0 40px rgba(52, 175, 184, 0.15),
        0 0 80px rgba(52, 175, 184, 0.20);
}

.custom-gradient-overlay {
    background: radial-gradient(
        circle at top left,
        rgba(52, 175, 184, 0.12),
        transparent 60%
    );

    opacity: 0;
    transition: opacity 0.4s ease;
}


.tremcard-text {
  font-size: 1.25rem; /* text-lg */
}

/* md (>=768px) */
@media (min-width: 768px) {
  .tremcard-text {
    font-size: 1.875rem; /* text-3xl */
  }
}

/* lg (>=1024px) */
@media (min-width: 1024px) {
  .tremcard-text {
    font-size: 2.25rem; /* text-4xl */
  }
}

/* xl (>=1280px) */
@media (min-width: 1280px) {
  .tremcard-text {
    font-size: 3rem; /* text-5xl */
  }
}



/* =========================================================
   RESPONSIVE HERO VIDEO
   Asztali és mobil videó váltása
   ========================================================= */

.responsive-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Alapértelmezés: mobil */
.responsive-video--desktop {
    display: none !important;
}

.responsive-video--mobile {
    display: block !important;
}

/* Tablet és asztali nézet */
@media screen and (min-width: 768px) {
    .responsive-video--desktop {
        display: block !important;
    }

    .responsive-video--mobile {
        display: none !important;
    }
}

/* egyedi termékoldal szinválasztó */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-float {
    animation: float 5s ease-in-out infinite;
}

.secondary-text {
    color: #858585;
}



.custom-grid-5 {
    display: grid;
    grid-template-columns: 1fr;
}

/* md és minden nagyobb kijelző */
@media (min-width: 768px) {
    .custom-grid-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

