/* ===== FREE CAMPS PAGE SPECIFIC STYLES ===== */

/* CAMPS HERO */
.camps-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  z-index: 10;
}
.camps-hero-content { max-width: 820px; }
.camps-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,188,212,0.15);
  border: 1px solid rgba(0,188,212,0.3);
  color: #80deea;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeDown 0.7s ease both;
}
.camps-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeDown 0.85s ease 0.1s both;
}
.camps-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 50px;
  line-height: 1.65;
  animation: fadeDown 0.85s ease 0.2s both;
}
.camps-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeDown 0.85s ease 0.35s both;
}
.ch-stat { text-align: center; }
.ch-stat span { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: #00bcd4; }
.ch-stat small { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.ch-div { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* ABOUT CAMPS */
.camps-about { background: rgba(0,0,0,0.1); }
.ca-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: start; }
.ca-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.6rem); color: white; margin-bottom: 22px; line-height: 1.3; }
.ca-text p { color: rgba(255,255,255,0.7); line-height: 1.82; margin-bottom: 18px; font-size: 0.97rem; }
.ca-text strong { color: white; }
.ca-highlight {
  margin-top: 30px;
  padding: 24px 28px;
  background: rgba(0,188,212,0.1);
  border-left: 4px solid #00bcd4;
  border-radius: 0 16px 16px 0;
}
.ca-highlight i { font-size: 1.5rem; color: #00bcd4; opacity: 0.6; margin-bottom: 12px; display: block; }
.ca-highlight p { font-family: 'Playfair Display', serif; font-style: italic; color: white; font-size: 1.05rem; line-height: 1.6; margin-bottom: 12px; }
.ca-highlight span { color: rgba(255,255,255,0.55); font-size: 0.9rem; font-weight: 600; }

.ca-what { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 32px 28px; }
.ca-what h3 { color: white; font-size: 1.05rem; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.ca-what h3 i { color: #00bcd4; }
.camp-services-list { display: flex; flex-direction: column; gap: 16px; }
.camp-services-list li { display: flex; align-items: flex-start; gap: 14px; }
.camp-services-list i { color: #4caf50; font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.camp-services-list div { display: flex; flex-direction: column; gap: 3px; }
.camp-services-list strong { color: white; font-size: 0.9rem; }
.camp-services-list span { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* CAMP PHOTO GALLERY */
.camp-gallery-section {}
.camp-gallery-masonry { display: flex; flex-direction: column; gap: 28px; }
.cg-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cg-card.large { grid-template-columns: 1.3fr 1fr; }
.cg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 60px rgba(0,0,0,0.4); }
/* Alternating layout */
.cg-card:nth-child(even) .cg-img-wrap { order: 2; }
.cg-card:nth-child(even) .cg-info { order: 1; }
.cg-img-wrap { overflow: hidden; }
.cg-img-wrap img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.cg-card:hover .cg-img-wrap img { transform: scale(1.05); }
.cg-info { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.cg-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,188,212,0.15); border: 1px solid rgba(0,188,212,0.25);
  color: #80deea; padding: 6px 14px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 14px; width: fit-content;
}
.cg-info h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.35rem; margin-bottom: 14px; line-height: 1.35; }
.cg-info p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.75; margin-bottom: 18px; }
.cg-meta { color: rgba(255,255,255,0.4); font-size: 0.8rem; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.cg-meta i { color: rgba(0,188,212,0.6); }

/* IMPACT SECTION */
.camps-impact {
  padding: 100px 40px;
  background: linear-gradient(135deg, rgba(30,127,203,0.2), rgba(0,188,212,0.12));
  border-top: 1px solid rgba(30,127,203,0.2);
  border-bottom: 1px solid rgba(30,127,203,0.2);
  position: relative;
  z-index: 10;
}
.impact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; max-width: 1300px; margin: 0 auto; }
.impact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  transition: all 0.3s;
}
.impact-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.impact-card i { font-size: 2.2rem; color: #00bcd4; margin-bottom: 16px; display: block; }
.impact-card h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.impact-card p { color: rgba(255,255,255,0.62); font-size: 0.87rem; line-height: 1.68; }

/* CTA SECTION */
.camp-cta { background: rgba(0,0,0,0.1); }
.cta-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-icon { font-size: 3rem; color: #00bcd4; margin-bottom: 20px; }
.cta-box h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: white; margin-bottom: 18px; }
.cta-box p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.78; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-light { display: inline-flex; align-items: center; gap: 10px; border: 2px solid rgba(255,255,255,0.3); color: white; padding: 14px 28px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .ca-grid { grid-template-columns: 1fr; }
  .cg-card, .cg-card.large { grid-template-columns: 1fr; }
  .cg-card:nth-child(even) .cg-img-wrap { order: 0; }
  .cg-card:nth-child(even) .cg-info { order: 0; }
  .cg-img-wrap img { min-height: 240px; }
  .cta-box { padding: 40px 24px; }
  .camps-hero { padding: 130px 20px 60px; }
  .camps-impact { padding: 70px 20px; }
  .ch-stat span { font-size: 1.8rem; }
}
