/* ==========================================================
   CAMPS HERO
========================================================== */

.camp-hero{

    padding:6rem 0;

    text-align:center;

    color:#ffffff;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("/static/images/camps/camps.jpg");

    background-size:cover;

    background-position:center;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:.75rem 1.5rem;

    margin-bottom:1.5rem;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    color:#ffffff;

    font-weight:600;

}

.camp-hero h1{

    color:#ffffff;

    font-size:clamp(2.8rem,6vw,4.5rem);

    margin-bottom:1.5rem;

}

.camp-hero p{

    max-width:720px;

    margin:0 auto 2rem;

    color:rgba(255,255,255,.90);

    line-height:1.9;

    font-size:1.1rem;

}

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:1rem 2.5rem;

    border-radius:12px;

    background:var(--primary);

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.hero-btn:hover{

    transform:translateY(-3px);

    filter:brightness(.95);

}

/* ==========================================================
   INTRODUCTION
========================================================== */

.camp-intro{

    padding:5rem 0;

}

.intro-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:4rem;

    align-items:center;

}

.intro-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.intro-content h2{

    margin-bottom:1.5rem;

}

.intro-content p{

    color:var(--text);

    line-height:1.9;

}

.intro-content p:not(:last-child){

    margin-bottom:1.5rem;

}

/* ==========================================================
   HIGHLIGHTS
========================================================== */

.camp-highlights{

    padding:5rem 0;

    background:var(--surface);

}

.section-header{

    text-align:center;

    margin-bottom:3rem;

}

.section-header p{

    max-width:700px;

    margin:auto;

    color:var(--text);

}

.highlights-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:1.5rem;

}

.highlight-card{

    background:#ffffff;

    padding:2rem;

    border-radius:18px;

    border:1px solid var(--border);

    text-align:center;

    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

.icon-circle{

    width:70px;

    height:70px;

    margin:0 auto 1.5rem;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,165,0,.10);

    font-size:1.8rem;

}

.highlight-card h3{

    margin-bottom:1rem;

}

.highlight-card p{

    color:var(--text);

    line-height:1.8;

}

/* ==========================================================
   EXPERIENCE
========================================================== */

.camp-experience{

    padding:5rem 0;

}

.experience-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:1.5rem;

}

.experience-card{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:150px;

    padding:2rem;

    background:#111827;

    color:#ffffff;

    border-radius:18px;

    text-align:center;

    transition:.35s;

}

.experience-card:hover{

    background:var(--primary);

    transform:translateY(-6px);

}

.experience-card h4{

    margin:0;

    color:#ffffff;

}

/* ==========================================================
   FAQ
========================================================== */

.camp-faq{

    padding:5rem 0;

    background:var(--surface);

}

.faq-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:1.5rem;

}

.faq-card{

    background:#ffffff;

    padding:2rem;

    border-radius:18px;

    border:1px solid var(--border);

    transition:.3s;

}

.faq-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

.faq-card h4{

    margin-bottom:1rem;

}

.faq-card p{

    color:var(--text);

    line-height:1.8;

}

/* ==========================================================
   CTA
========================================================== */

.camp-cta{

    padding:5rem 0;

    text-align:center;

    background:#111827;

}

.camp-cta h2{

    color:#ffffff;

    margin-bottom:1rem;

}

.camp-cta p{

    max-width:700px;

    margin:0 auto 2rem;

    color:rgba(255,255,255,.85);

}

.cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:1rem 2.5rem;

    border-radius:12px;

    background:var(--primary);

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.cta-btn:hover{

    transform:translateY(-3px);

    filter:brightness(.95);

}

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

@media (max-width:992px){

    .intro-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .camp-hero{

        padding:5rem 0;

    }

    .highlights-grid,

    .experience-grid,

    .faq-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:576px){

    .camp-intro,

    .camp-highlights,

    .camp-experience,

    .camp-faq,

    .camp-cta{

        padding:4rem 0;

    }

}