/* ===============================
   FLIP CARD ALAP
================================= */

.ba-card {
  position: relative;
  perspective: 1500px;
  height: 300px;
  cursor: pointer;
  overflow: hidden;
}

.ba-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

/* Desktop hover flip */
@media (hover:hover) {
  .ba-card:hover .ba-card-inner {
    transform: rotateY(180deg);
  }
}

/* Flip class */
.ba-card.flipped .ba-card-inner {
  transform: rotateY(180deg);
}

/* Front / Back */
.ba-card-front,
.ba-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.ba-card-back {
  transform: rotateY(180deg);
}

/* Image */
.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* ===============================
   LABELS (azonos méret)
================================= */

.ba-label {
  position: absolute;
  top: 12px;
  width: 90px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,0,0,0.75);
  color: #fff;
  border-radius: 20px;
  z-index: 5;
}

/* ===============================
   ELŐTTE címke
================================= */
.ba-label.before {
  left: 10px;
  background: #592c0e;  /* barna háttér */
  color: #c7f464;       /* világoszöld szöveg */
}

/* ===============================
   UTÁNA címke
================================= */
.ba-label.after {
  right: 10px;
  background: #84b026;  /* világoszöld háttér */
  color: #592c0e;       /* barna szöveg */
}


/* ===============================
   LIGHTBOX
================================= */

.ba-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.ba-lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* 80% méret */
.ba-lightbox-content {
  width: 600px;
  height: 800px;
  max-width: 900px;
  max-height: 90vh;
}

/* kép kitöltés */
.ba-lightbox .ba-card {
  width: 100%;
  height: 100%;
}

/* ===============================
   MOBIL FIX – KÖZÉPRE IGAZÍTÁS
================================= */

@media (max-width: 768px) {

  .ba-lightbox-content {
    width: 90vw;
    height: auto;
	aspect-ratio: 3 / 4;
    max-height: 80vh;
  }
	
  .ba-card .ba-label {
    display: none;
  }

  /* DE lightboxban maradjon */
  .ba-lightbox .ba-label {
    display: block;
  }
}

/* ===============================
   CLOSE (fehér X)
================================= */

.ba-close {
  position: absolute;
  top: 25px;
  right: 30px;

  font-size: 50px;
  color: #ffffff;
  font-weight: 300;

  cursor: pointer;
  z-index: 100000;

  transition: 0.2s;
}

.ba-close:hover {
  transform: scale(1.2);
}