/* ===================================================================
   Summer Camp Program - Custom Stylesheet
   Durga Saptashati Foundation
   Theme: Vibrant / Playful / Warm Summer palette
=================================================================== */

:root {
  --sc-orange: #ff7a18;
  --sc-amber: #ffb300;
  --sc-coral: #ff5757;
  --sc-teal: #12b3a3;
  --sc-sky: #2bb0ff;
  --sc-purple: #7b5cff;
  --sc-ink: #23233b;
  --sc-muted: #6b6b83;
  --sc-cream: #fff8ef;
  --sc-shadow: 0 18px 45px rgba(255, 122, 24, 0.18);
  --sc-shadow-soft: 0 10px 30px rgba(35, 35, 59, 0.08);
  --sc-radius: 22px;
  --sc-grad: linear-gradient(120deg, #ff7a18 0%, #ffb300 55%, #ff5757 100%);
  --sc-grad-cool: linear-gradient(120deg, #12b3a3 0%, #2bb0ff 100%);
}

.sc-page {
  font-family: "Quicksand", sans-serif;
  color: var(--sc-ink);
  overflow-x: clip;
}

/* ---------- Page Header ---------- */
.summer-page-header {
  position: relative;
  background:
    linear-gradient(rgba(35, 35, 59, 0.55), rgba(35, 35, 59, 0.65)),
    url("../../images/summer%20camp/cover%20page%20ngo.jpg") center/cover
      no-repeat;
}

/* ---------- Hero ---------- */
.sc-hero {
  position: relative;
  padding: 90px 0 110px;
  background: var(--sc-cream);
  overflow: hidden;
}

.sc-hero::before,
.sc-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.35;
  z-index: 0;
}

.sc-hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--sc-amber), transparent 70%);
  top: -80px;
  right: -60px;
}

.sc-hero::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--sc-teal), transparent 70%);
  bottom: -70px;
  left: -50px;
}

.sc-hero .container-fluid {
  position: relative;
  z-index: 2;
  padding: 0 6%;
}

.sc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--sc-orange);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: var(--sc-shadow-soft);
  margin-bottom: 22px;
}

.sc-badge i {
  color: var(--sc-amber);
}

.sc-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1c1c28;
}

.sc-hero-title .sc-grad-text {
  background: var(--sc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sc-hero-desc {
  font-size: 1.05rem;
  color: var(--sc-muted);
  max-width: 540px;
  margin-bottom: 30px;
}

.sc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.sc-btn-primary {
  background: var(--sc-grad);
  color: #fff;
  box-shadow: var(--sc-shadow);
}

.sc-btn-outline {
  background: #fff;
  color: var(--sc-ink);
  box-shadow: var(--sc-shadow-soft);
}

.sc-btn:hover {
  transform: translateY(-4px);
  color: #fff;
}

.sc-btn-outline:hover {
  color: var(--sc-orange);
}

/* Hero stats */
.sc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.sc-stat .sc-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sc-orange);
  line-height: 1;
}

.sc-stat .sc-stat-label {
  font-size: 0.85rem;
  color: var(--sc-muted);
  font-weight: 500;
}

/* Hero visual collage */
.sc-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.sc-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--sc-radius);
  box-shadow: var(--sc-shadow);
}

.sc-hero-visual .sc-img-tall {
  grid-row: span 2;
  min-height: 360px;
}

.sc-hero-visual .sc-img-small {
  min-height: 172px;
}

.sc-float-tag {
  position: absolute;
  bottom: -18px;
  right: -10px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: var(--sc-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  z-index: 3;
}

.sc-float-tag i {
  color: var(--sc-teal);
  font-size: 1.5rem;
}

/* ---------- Section base ---------- */
.sc-section {
  padding: 90px 6%;
}

.sc-section-alt {
  background: var(--sc-cream);
}

.sc-section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 55px;
}

.sc-section-badge {
  display: inline-block;
  background: var(--sc-orange);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.sc-section-title {
  /* font-size: clamp(2.2rem, 5vw, 3.4rem); */
      font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
  color: #1c1c28;
  letter-spacing: -0.5px;
}

.sc-section-desc {
  color: var(--sc-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Activities grid ---------- */
.sc-activities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.sc-activity-card {
  background: #fff;
  border-radius: var(--sc-radius);
  padding: 34px 28px;
  box-shadow: var(--sc-shadow-soft);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35, 35, 59, 0.04);
}

.sc-activity-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--sc-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.sc-activity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sc-shadow);
}

.sc-activity-card:hover::after {
  transform: scaleX(1);
}

.sc-activity-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 20px;
}

.sc-ic-1 {
  background: linear-gradient(135deg, #ff7a18, #ffb300);
}
.sc-ic-2 {
  background: linear-gradient(135deg, #12b3a3, #2bb0ff);
}
.sc-ic-3 {
  background: linear-gradient(135deg, #7b5cff, #ff5757);
}
.sc-ic-4 {
  background: linear-gradient(135deg, #ff5757, #ff7a18);
}
.sc-ic-5 {
  background: linear-gradient(135deg, #2bb0ff, #7b5cff);
}
.sc-ic-6 {
  background: linear-gradient(135deg, #ffb300, #12b3a3);
}

.sc-activity-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sc-activity-card p {
  color: var(--sc-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Gallery ---------- */
.sc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.sc-gallery-card {
  position: relative;
  border-radius: var(--sc-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sc-shadow-soft);
  background: #fff;
}

.sc-gc-imgwrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.sc-gc-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sc-gallery-card:hover .sc-gc-imgwrap img {
  transform: scale(1.1);
}

.sc-gc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 35, 59, 0.8), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.sc-gallery-card:hover .sc-gc-overlay {
  opacity: 1;
}

.sc-gc-overlay span {
  color: #fff;
  font-weight: 600;
}

.sc-gc-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-orange);
  transform: scale(0);
  transition: transform 0.35s ease;
}

.sc-gallery-card:hover .sc-gc-zoom {
  transform: scale(1);
}

/* ---------- CTA ---------- */
.sc-cta {
  margin: 0 6% 90px;
  border-radius: 32px;
  background: var(--sc-grad);
  padding: 70px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sc-shadow);
}

.sc-cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: -160px;
  left: -100px;
}

.sc-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.sc-cta p {
  max-width: 560px;
  margin: 0 auto 30px;
  opacity: 0.95;
  position: relative;
}

.sc-cta .sc-btn-primary {
  background: #fff;
  color: var(--sc-orange);
  position: relative;
}

.sc-cta .sc-btn-primary:hover {
  color: var(--sc-coral);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .sc-hero {
    padding: 60px 0 80px;
  }

  .sc-hero-visual {
    margin-top: 45px;
  }
}

@media (max-width: 575px) {
  .sc-hero-visual .sc-img-tall {
    min-height: 260px;
  }

  .sc-hero-stats {
    gap: 20px;
  }

  .sc-cta {
    padding: 50px 24px;
  }
}
