/* container (agar already hai to keep one only) */
.container{
  width:min(1200px,92%);
  margin:0 auto;
}

/* =========================
   HERO COVER (same pattern)
========================= */
.hero-cover{
  position:relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  padding: 120px 0 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-cover::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.55);
}

.hero-cover .container{
  position:relative;
  z-index:1;
}

.hero-cover__title{
  color:#fff;
  font-weight:900;
  letter-spacing:-0.02em;
  line-height:1.05;
  margin:0 0 18px;
  font-size: clamp(34px, 4.8vw, 72px);

  opacity:0;
  transform: translateX(-32px);
  animation: heroTitleIn .75s ease forwards;
}

.hero-cover__text{
  color: rgba(255,255,255,0.9);
  max-width: 920px;
  line-height:1.75;
  margin:0;
  font-size: clamp(14px, 1.15vw, 16px);

  opacity:0;
  transform: translateY(12px);
  animation: heroTextIn .75s ease forwards;
  animation-delay: .15s;
}

@keyframes heroTitleIn{ to{ opacity:1; transform: translateX(0);} }
@keyframes heroTextIn{ to{ opacity:1; transform: translateY(0);} }

/* ✅ summer hero background (replace image if you want) */
.hero-cover--summer{
  background-image:url("images/summer.png");
}

/* =========================
   INFO BLOCK (why section)
========================= */
.info-block{
  padding: 60px 0;
  background:#fff;
}

.info-block__title{
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  color:#0f172a;
  margin: 0 0 14px;

  opacity:0;
  transform: translateX(-18px);
  animation: infoTitleIn .65s ease forwards;
}

.info-block__text{
  max-width: 980px;
  font-size: 15.5px;
  line-height: 1.75;
  color:#334155;
  margin: 0;

  opacity:0;
  transform: translateY(10px);
  animation: infoTextIn .65s ease forwards;
  animation-delay: .12s;
}

@keyframes infoTitleIn{ to{opacity:1; transform: translateX(0);} }
@keyframes infoTextIn{ to{opacity:1; transform: translateY(0);} }

/* School*/
/* =========================
   SUMMER CAMPS LIST (Screenshot style)
========================= */
.camp-list{
  padding: 60px 0;
  background:#fff;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.camp-head h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  color:#0f172a;
  letter-spacing:-0.02em;
}

.camp-head p{
  margin:0 0 26px;
  max-width: 920px;
  color:#475569;
  line-height:1.65;
}

/* Card */
.camp-card{
  display:grid;
  grid-template-columns: 230px 1fr 320px;
  gap: 20px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background:#fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  margin-bottom: 22px;
  align-items: stretch;
}

/* Left image */
.camp-left{
  border-radius: 16px;
  overflow:hidden;
  background:#f3f4f6;
  min-height: 230px;
}
.camp-img{
  width:100%;
  height:100%;
  min-height: 230px;
  object-fit: cover;
  display:block;
}

/* Mid */
.camp-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.camp-title{
  margin:0;
  font-size: 22px;
  font-weight: 950;
  color:#0f172a;
  line-height:1.2;
}

.camp-mini{
  display:flex;
  align-items:center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
}
.camp-mini__tag{
  font-weight: 900;
  color:#0f172a;
}
.camp-mini__sep{ color:#cbd5e1; }
.camp-mini__muted{ color:#64748b; }

.camp-rating{
  margin-top: 8px;
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
}
.camp-rating__score{ font-weight: 950; color:#0f172a; }
.camp-rating__stars{ color:#f59e0b; letter-spacing: 1px; }
.camp-rating__count{ color:#64748b; }

.camp-facts{
  margin-top: 12px;
  display:grid;
  gap: 6px;
  font-size: 14px;
  color:#334155;
  line-height:1.45;
}
.camp-facts p{ margin:0; }
.camp-facts b{ color:#0f172a; }

.camp-link a{
  color:#2563eb;
  font-weight: 900;
  text-decoration:none;
}
.camp-link a:hover{ text-decoration:underline; }

.camp-desc{
  margin: 12px 0 0;
  color:#475569;
  line-height:1.7;
  font-size: 14px;
}

/* Right */
.camp-right{
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

/* box */
.camp-box{
  border: 1px solid #dbeafe;
  background:#f8fbff;
  border-radius: 16px;
  padding: 14px;
}

.camp-box__label{
  border: 1px solid rgba(22,163,74,.35);
  background:#fff;
  color:#16a34a;
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
}

.camp-box__row{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.camp-pill{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 999px;
  background:#fb923c;
  color:#fff;
}

.camp-price{
  display:flex;
  align-items:baseline;
  gap: 6px;
}
.camp-price strong{
  font-size: 30px;
  font-weight: 1000;
  color:#ef4444;
  letter-spacing:-0.02em;
  line-height:1;
}
.camp-price span{
  color:#64748b;
  font-size: 13px;
  font-weight: 800;
}

.camp-box__sub{
  margin-top: 10px;
  color:#16a34a;
  font-weight: 900;
  font-size: 13px;
}

/* button */
.camp-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px 18px;
  border-radius: 14px;
  background:#16a34a;
  color:#fff;
  font-weight: 950;
  text-decoration:none;
  box-shadow: 0 12px 22px rgba(22,163,74,0.22);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.camp-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
  background:#12863d;
}

/* Responsive */
@media (max-width: 980px){
  .camp-card{
    grid-template-columns: 190px 1fr;
    grid-template-areas:
      "img mid"
      "right right";
  }
  .camp-left{ grid-area: img; min-height: 200px; }
  .camp-img{ min-height: 200px; }
  .camp-mid{ grid-area: mid; }
  .camp-right{
    grid-area: right;
    flex-direction: row;
    align-items: stretch;
  }
  .camp-box{ flex:1; }
  .camp-btn{ flex:1; }
}

@media (max-width: 620px){
  .camp-card{
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "mid"
      "right";
    padding: 14px;
  }
  .camp-left{ min-height: 180px; }
  .camp-img{ min-height: 180px; }
  .camp-top{ flex-direction: column; align-items:flex-start; }
  .camp-right{ flex-direction: column; }
}



/* =========================
   FAQ (screenshot style)
========================= */
.faq-sec{
  padding: 70px 0;
  background:#fff;
}

.faq-title{
  font-size: 24px;
  font-weight: 900;
  color:#0f172a;
  margin: 0 0 16px;
}

.faq-accordion{
  display:grid;
  gap: 14px;
}

.faq-item{
  border:1px solid #e5e7eb;
  border-radius: 14px;
  background:#fff;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}

.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 16px 18px;
  border:0;
  background:transparent;
  cursor:pointer;
  text-align:left;
  font-weight: 800;
  color:#0f172a;
  font-size: 15px;
  line-height:1.35;
}

.faq-icon{
  width: 22px;
  height: 22px;
  display:grid;
  place-items:center;
  font-size: 14px;
  color:#0f172a;
  transition: transform .2s ease;
}

.faq-a{
  max-height: 0;
  overflow:hidden;
  transition: max-height .25s ease;
  border-top:1px solid #eef2f7;
}

.faq-a__inner{
  padding: 14px 18px 18px;
  color:#475569;
  line-height:1.7;
  font-size: 14px;
}

.faq-item.is-open .faq-a{ max-height: 320px; }
.faq-item.is-open .faq-icon{ transform: rotate(90deg); }

.faq-q:hover{ background:#f8fafc; }

/* =========================
   RESPONSIVE
========================= */


@media (max-width: 600px){
  .hero-cover{
    min-height: 420px;
    padding: 90px 0 70px;
  }
  
}
