@charset "UTF-8";

/* =========================
   FOALING SECTION
========================= */

.foaling-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(237, 210, 180, 0.35) 0%, rgba(237, 210, 180, 0) 34%),
    radial-gradient(circle at bottom right, rgba(188, 145, 104, 0.18) 0%, rgba(188, 145, 104, 0) 34%),
    linear-gradient(180deg, #fffaf7 0%, #f8efe7 100%);
}

.foaling-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.foaling-bg-shape-1 {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(210,170,125,0.24) 0%, rgba(210,170,125,0) 72%);
}

.foaling-bg-shape-2 {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(160,110,74,0.16) 0%, rgba(160,110,74,0) 74%);
}

.foaling-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.foaling-section .eyebrow {
  color: rgba(104, 68, 42, 0.74);
}

.foaling-head h2 {
  margin-bottom: 16px;
  color: #56351c;
  font-family: "Bellosa DEMO";
  font-size: 48px;
  line-height: 1.08;
}

.foaling-head p {
  color: rgba(63, 44, 31, 0.76);
  line-height: 1.85;
}

.foaling-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.foaling-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(86, 53, 28, 0.10);
  box-shadow: 0 22px 48px rgba(86, 53, 28, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.foaling-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px rgba(86, 53, 28, 0.13);
}

.foaling-card-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: rgba(11,15,20,0.03);
}

.foaling-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.foaling-card-body {
  padding: 26px 22px 24px;
}

.foaling-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3e3d3;
  color: #8b5a2b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.foaling-card h3 {
  margin-bottom: 12px;
  color: #4e311b;
  font-size: 28px;
}

.foaling-card p {
  color: rgba(47,36,28,0.76);
  line-height: 1.8;
}

.foaling-mini-list {
  margin: 16px 0 20px 18px;
  color: rgba(47,36,28,0.82);
  font-family: 'Aesthetic Beauty CF';
}

.foaling-card-link {
  display: inline-block;
  margin-top: 6px;
  color: #8b5a2b;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.foaling-card-link:hover {
  text-decoration: underline;
}

.foaling-live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c83d3d 0%, #9d2323 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  box-shadow: 0 10px 22px rgba(157, 35, 35, 0.25);
}

/* =========================
   ANIMATION
========================= */

.foaling-animate {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.foaling-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (min-width: 1920px) {
  .foaling-head h2 {
    font-size: 60px;
  }

  .foaling-card-img,
  .foaling-card-media {
    height: 320px;
    min-height: 320px;
  }
}

@media screen and (max-width: 1200px) {
  .foaling-grid {
    grid-template-columns: 1fr;
  }

  .foaling-head h2 {
    font-size: 42px;
  }
}

@media screen and (max-width: 768px) {
  .foaling-head h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .foaling-card h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .foaling-head h2 {
    font-size: 30px;
  }

  .foaling-card-body {
    padding: 22px 18px 20px;
  }

  .foaling-card-img,
  .foaling-card-media {
    height: 240px;
    min-height: 240px;
  }
}

@media screen and (max-width: 300px) {
  .foaling-head h2 {
    font-size: 26px;
  }

  .foaling-card-img,
  .foaling-card-media {
    height: 200px;
    min-height: 200px;
  }
}