/* ---------------------------
   Base styles
----------------------------*/
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background-color: #fafaf7;
  color: #2f3a2f;
  line-height: 1.6;
}

/* ---------------------------
   Experience grid
----------------------------*/
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ---------------------------
   Experience cards
----------------------------*/
.experience-card {
  background: #eef4ee;               /* light green */
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

/* Hover lift */
.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* Full-width card (wildlife rule) */
.experience-card.full-width {
  grid-column: 1 / -1;
}

/* ---------------------------
   Titles & text
----------------------------*/
.experience-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: #1f3a2a; /* deep green */
}

.experience-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3f5a47; /* softer green */
  margin: 0;
}

/* ---------------------------
   Thumbnail images
----------------------------*/
.thumb-row {
  display: flex;
  gap: 8px;
}

.experience-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  filter: saturate(1.05);
}

/* casual natural placement */
.thumb-row img:nth-child(2) {
  transform: translateY(4px) rotate(2deg);
}

.thumb-row img:nth-child(3) {
  transform: translateY(2px) rotate(-2deg);
}

/* ---------------------------
   Links (Growers Café)
----------------------------*/
.experience-card a {
  font-size: 0.9rem;
  color: #2f6f4f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.experience-card a:hover {
  text-decoration: underline;
}

/* ---------------------------
   Mobile tweaks
----------------------------*/
@media (max-width: 600px) {
  .experience-card {
    padding: 16px;
  }

  .experience-card img {
    width: 56px;
    height: 56px;
  }
}
/* ---------------------------------
   Final experience card styling
   (override all previous rules)
---------------------------------- */

.experience-card {
  background: #eef4ee;           /* light Malnad green */
  color: #1f3a2e;                /* deep forest green text */
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(31, 58, 46, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(31, 58, 46, 0.18);
}
.wide-card {
  margin-top: 20px; /* space above the wide card */
}
/* Gallery placeholders */
.gallery-grid.placeholder {
  opacity: 0.85;
}

.placeholder-box {
  background: repeating-linear-gradient(
    45deg,
    #e6eee6,
    #e6eee6 10px,
    #f1f6f1 10px,
    #f1f6f1 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #5f7a66;
  font-style: italic;
}

/* =========================
   GALLERY LIGHTBOX (IMPROVED)
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.lb-prev,
.lb-next,
.lightbox-close {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  line-height: 1;
}

.lb-prev,
.lb-next {
  font-size: 2rem;
  padding: 0.2rem 0.7rem;
  top: 50%;
  transform: translateY(-50%);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 1.6rem;
  padding: 0.2rem 0.55rem;
}
@media (max-width: 768px) {
  .lb-prev,
  .lb-next {
    display: none; /* swipe feels more natural on mobile */
  }
}
.airbnb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ff385c;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(255,56,92,0.25);
  transition: all 0.25s ease;
}

.airbnb-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255,56,92,0.35);
}

.airbnb-logo {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #ff385c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.experience-grid {
  margin-bottom: 2.5rem;
}
.reach-map iframe {
  width: 100%;
  height: 220px;          /* 👈 makes map small & elegant */
  border: none;
  border-radius: 16px;
}

.reach-map {
  background: #f3f7f3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.reach-grid {
  align-items: start;
}
.reach-map-mini {
  text-align: center;
}

.map-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(79,124,79,0.12);
  color: #2f5a3a;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
}

.map-pill:hover {
  background: rgba(79,124,79,0.2);
}

