:root {
    --blue:    #1e73be;
    --blue2:   #0d4f8a;
    --sky:     #7dd9ff;
    --yellow:  #ffd166;
    --green:   #8be9a6;
    --pink:    #ff9ecd;
    --light:   #f0f7ff;
    --dark:    #0d1b2a;
    --grey:    #555;
    --radius:  16px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: #f8faff;
    color: var(--dark);
    overflow-x: hidden;
}

img { max-width:100%; height:auto; display:block; }

/* ── NAVBAR ── */
.topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px clamp(16px, 4vw, 40px);
    background: rgb(36, 36, 231);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo span {
    font-family: 'Fredoka', sans-serif;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.back-btn {
    color: var(--yellow);
    text-decoration: none;
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.3s;
}

.back-btn:hover { color: white; }

/* ── HEADER ── */
.lp-header {
    position: relative;
    min-height: clamp(320px, 55vh, 520px);
    background: linear-gradient(135deg, #1e73be 0%, #0d4f8a 50%, #05294d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* subtle grid pattern overlay */
.lp-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.lp-header-overlay {
    position: relative;
    z-index: 2;
    padding: clamp(30px, 5vw, 60px) clamp(20px, 6vw, 60px);
}

.lp-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: clamp(12px, 2.5vw, 15px);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}

.lp-header h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(28px, 7vw, 62px);
    color: white;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 3px 16px rgba(0,0,0,0.3);
}

.lp-header h1 span { color: var(--yellow); }

.lp-header p {
    font-size: clamp(14px, 2.8vw, 20px);
    color: rgba(255,255,255,0.82);
    font-weight: 600;
}

/* floating emoji shapes */
.shape {
    position: absolute;
    font-size: clamp(22px, 5vw, 42px);
    animation: floaty 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.s1 { top: 14%; left: 7%;  animation-delay: 0s; }
.s2 { top: 18%; right: 9%; animation-delay: 0.8s; }
.s3 { bottom: 20%; left: 10%; animation-delay: 0.4s; }
.s4 { bottom: 14%; right: 7%; animation-delay: 1.2s; }

@keyframes floaty {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-16px) rotate(6deg); }
}

/* ── SHARED SECTION STYLES ── */
section {
    padding: clamp(45px, 7vw, 90px) clamp(16px, 6vw, 80px);
}

.section-tag {
    display: inline-block;
    background: var(--light);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(24px, 5vw, 40px);
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span { color: var(--blue); }

.section-sub {
    font-size: clamp(14px, 2.3vw, 17px);
    color: var(--grey);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
    text-align: center;
}

/* ── ABOUT SECTION ── */
.about-section { background: #fff; }

.about-inner {
    display: flex;
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.about-img {
    flex: 1;
    min-width: 260px;
    position: relative;
}

.about-img img {
    width: 100%;
    height: clamp(240px, 38vw, 400px);
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.img-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255,255,255,0.93);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    font-family: 'Fredoka', sans-serif;
}

.about-text-block {
    flex: 1;
    min-width: 260px;
}

.about-text-block p {
    font-size: clamp(14px, 2.2vw, 16px);
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 13px;
}

.about-text-block strong { color: var(--blue); }

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feat {
    background: var(--light);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ── ACTIVITIES SECTION ── */
.activities-section {
    background: var(--light);
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-top: 10px;
}

.activity-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.activity-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.13);
}

.activity-img {
    position: relative;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: clamp(170px, 25vw, 210px);
    object-fit: cover;
    transition: transform 0.4s;
}

.activity-card:hover .activity-img img {
    transform: scale(1.05);
}

.card-num {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--blue);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 700;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-body {
    padding: clamp(16px, 3vw, 22px);
}

.activity-body h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(17px, 2.8vw, 21px);
    color: var(--blue);
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-body p {
    font-size: clamp(13px, 2vw, 15px);
    color: var(--grey);
    line-height: 1.7;
}



@media (max-width: 500px) {
    .stat-divider { display: none; }
    .stats-strip { gap: 10px; }
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, #1e73be, #0d4f8a);
    padding: clamp(50px, 8vw, 90px) clamp(20px, 6vw, 80px);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.cta-emoji {
    font-size: clamp(38px, 7vw, 58px);
    margin-bottom: 14px;
    display: block;
    animation: floaty 3s ease-in-out infinite;
}

.cta-inner h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(22px, 5vw, 38px);
    color: white;
    margin-bottom: 12px;
}

.cta-inner p {
    font-size: clamp(14px, 2.3vw, 17px);
    color: rgba(255,255,255,0.80);
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2.3vw, 16px);
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-ghost {
    background: transparent;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2.3vw, 16px);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.55);
    transition: background 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* ── FOOTER ── */
.lp-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 22px 20px;
    font-size: 13px;
}