@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Lora:ital,wght@1,400;0,700&display=swap');

/* ===== CARD: srpsko-boho-vencanje-u-prirodi ===== */
/* Style: Serbian Orchard — Golden Hour Documentary  */
/* Palette: Gold #D4A853, Sage #8A9E7C, Clay #B5654A, Forest #2D3D2A, Cream #F5F0E0 */

.card--srpsko-boho {
  background: #F5F0E0;
  overflow: hidden;
  position: relative;
  font-family: 'Lora', Georgia, serif;
  color: #2D3D2A;
}

/* Image wrapper — hover/scale on CHILD only (CSS columns bug prevention) */
.card--srpsko-boho .card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.card--srpsko-boho .card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: saturate(0.9) brightness(1.03);
}

/* Scale on child, NOT root — avoids CSS columns disappearing card */
.card--srpsko-boho:is(:hover, .pulse) .card__img {
  transform: scale(1.04);
}

/* Badge */
.card--srpsko-boho .card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: 'Gloock', serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A853;
  background: rgba(245, 240, 224, 0.88);
  padding: 4px 10px;
  border: none;
  backdrop-filter: blur(2px);
}

/* Card body */
.card--srpsko-boho .card__body {
  padding: 22px 24px 26px;
  background: linear-gradient(135deg, #F5F0E0 0%, #EDE8D0 100%);
  position: relative;
}

/* Top decorative line — gold to sage gradient */
.card--srpsko-boho .card__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4A853, #8A9E7C, transparent);
}

/* Year label */
.card--srpsko-boho .card__year {
  font-family: 'Gloock', serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8A9E7C;
  margin-bottom: 8px;
  display: block;
}

/* Title */
.card--srpsko-boho .card__title {
  font-family: 'Gloock', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #2D3D2A;
  transition: color 0.4s ease;
}

/* Title colour on hover — on child, safe for CSS columns */
.card--srpsko-boho:is(:hover, .pulse) .card__title {
  color: #B5654A;
}

/* Description */
.card--srpsko-boho .card__desc {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(45, 61, 42, 0.55);
  font-style: italic;
}
