/* 
   =============================================
   SHREE RAM INTERNATIONAL PRE SCHOOL
   Summer Camp Premium Extensions v1.0
   ============================================= 
*/

/* ─── 1. HERO REFINEMENT — CORPORATE STYLE ─── */
.sc-hero {
    position: relative !important;
    padding: clamp(140px, 15vw, 200px) 0 100px !important;
    background: #ffffff !important;
    overflow: hidden !important;
}

.sc-hero-glow {
    position: absolute !important;
    border-radius: 50% !important;
    filter: blur(100px) !important;
    z-index: 0 !important;
    opacity: 0.5 !important;
}
.sc-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #FFE082, transparent 70%);
    top: -150px; left: -100px;
    animation: scFloatHero 18s infinite alternate;
}
.sc-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #FFCCBC, transparent 70%);
    bottom: -100px; right: -150px;
    animation: scFloatHero 22s infinite alternate-reverse;
}

@keyframes scFloatHero {
    from { transform: translate(0,0) rotate(0deg); }
    to { transform: translate(40px, 30px) rotate(5deg); }
}

@keyframes scFloatShape {
    0% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.1) translate(30px, -50px); }
    66% { transform: scale(0.9) translate(-20px, 20px); }
    100% { transform: scale(1) translate(0, 0); }
}

/* Decorative Background Elements */
.sc-hero-deco {
    position: absolute !important;
    font-size: 24px !important;
    opacity: 0.1 !important;
    color: var(--primary-color) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    animation: scFloatShape 12s ease-in-out infinite alternate !important;
}

.deco-1 { top: 15%; left: 5%; color: var(--accent-orange) !important; font-size: 32px !important; }
.deco-2 { top: 40%; right: 5%; color: var(--accent-purple) !important; animation-delay: -3s !important; }
.deco-3 { bottom: 20%; left: 10%; color: var(--accent-green) !important; animation-delay: -6s !important; }

.sc-hero-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 60px !important;
    align-items: center !important;
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 992px) {
    .sc-hero-grid { grid-template-columns: 1fr !important; gap: 40px !important; text-align: center !important; }
}

.sc-hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4rem) !important;
    line-height: 1.1 !important;
    color: var(--primary-dark) !important;
    margin-bottom: 24px !important;
}
.sc-hero-content h1 em {
    font-style: italic !important;
    color: var(--accent-orange) !important;
}
.sc-hero-content p {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    margin-bottom: 36px !important;
    max-width: 95% !important;
}

@media (max-width: 992px) {
    .sc-hero-content p { margin: 0 auto 36px !important; }
    .sc-hero-actions { justify-content: center !important; display: flex; }
}

.sc-hero-visual {
    position: relative !important;
}

.sc-hero-img-frame {
    border-radius: 32px !important;
    overflow: hidden !important;
    box-shadow: 0 40px 100px rgba(62, 35, 108, 0.12) !important;
    border: 1px solid rgba(62, 35, 108, 0.05) !important;
    background: #ffffff !important;
}

.sc-hero-img-frame video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    aspect-ratio: 4/3 !important;
}

/* Floating Badges */
.sc-hero-float {
    position: absolute !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    padding: 14px 22px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(62, 35, 108, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    z-index: 5 !important;
    animation: scBadgeFloat 4s ease-in-out infinite !important;
    white-space: nowrap !important;
}

.sc-float-icon-wrap {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
}

.sc-float-tl { top: -20px; left: -30px; animation-delay: 0s !important; }
.sc-float-tr { top: 30px; right: -40px; animation-delay: 1s !important; }
.sc-float-bl { bottom: 40px; left: -40px; animation-delay: 2s !important; }
.sc-float-br { bottom: -20px; right: -20px; animation-delay: 1.5s !important; }

@keyframes scBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 576px) {
    .sc-hero-float { display: none !important; }
}

/* ─── 2. WHY CHOOSE CARDS — SOFT GLASS ─── */
.sc-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 32px !important;
    margin-top: 60px !important;
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 768px) {
    .sc-benefits-grid { grid-template-columns: 1fr !important; }
}

.sc-benefit-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 32px !important;
    padding: 48px 36px !important;
    box-shadow: 0 15px 40px rgba(62, 35, 108, 0.04) !important;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-align: center !important;
    position: relative !important;
}

.sc-benefit-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 50%;
    width: 60px; height: 4px;
    background: var(--accent);
    border-radius: 0 0 10px 10px;
    transform: translateX(-50%);
    opacity: 0.15;
    transition: width 0.4s ease;
}

.sc-benefit-card:hover::before {
    width: 100px;
}

.sc-benefit-card:hover {
    transform: translateY(-12px) !important;
    background: #ffffff !important;
    box-shadow: 0 30px 70px rgba(62, 35, 108, 0.1) !important;
}

.sc-benefit-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 24px !important;
    margin: 0 auto 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    transition: all 0.4s ease !important;
}

.sc-benefit-card:hover .sc-benefit-icon {
    transform: scale(1.1) rotate(5deg) !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

/* ─── 3. ACTIVITY CARDS — SCRAPBOOK TILT ─── */
.sc-activities-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 32px !important;
    margin-top: 60px !important;
}

.sc-activity-item {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 32px !important;
    padding: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 12px 35px rgba(62, 35, 108, 0.06) !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: hidden !important;
    height: 100% !important;
}

/* Individual Scrapbook Tilts */
.sc-activity-item:nth-child(odd) { transform: rotate(-1.2deg); }
.sc-activity-item:nth-child(even) { transform: rotate(1.2deg); }

.sc-activity-item:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.02) !important;
    box-shadow: 0 35px 80px rgba(62, 35, 108, 0.15) !important;
    z-index: 10 !important;
}

.sc-act-img-wrap {
    position: relative !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    aspect-ratio: 4/3 !important;
}

.sc-act-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
}

.sc-activity-item:hover .sc-act-img-wrap img {
    transform: scale(1.1) !important;
}

.sc-act-info {
    padding: 24px 12px 12px !important;
    text-align: left !important;
}

.sc-act-info h4 {
    font-size: 1.4rem !important;
    color: var(--primary-dark) !important;
    margin-bottom: 12px !important;
    font-family: var(--font-heading) !important;
}

.sc-act-info p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: var(--text-muted) !important;
    margin-bottom: 20px !important;
}

.sc-act-tag {
    display: inline-block !important;
    padding: 6px 14px !important;
    background: var(--bg-soft-purple) !important;
    color: var(--primary-color) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-radius: 50px !important;
}

.sc-act-icon-badge {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--primary-color) !important;
    font-size: 1.1rem !important;
    z-index: 5 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

/* ─── 4. SCHEDULE — MODERN & NEAT ─── */
.sc-schedule-block {
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 40px 100px rgba(62, 35, 108, 0.08) !important;
    border-radius: 50px !important;
    padding: clamp(32px, 6vw, 84px) !important;
    overflow: hidden !important;
    position: relative !important;
}

.sc-schedule-block::before {
    content: '' !important;
    position: absolute !important;
    top: -200px; right: -200px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.05), transparent 70%);
    border-radius: 50%;
}

.sc-s-title {
    font-size: 1.6rem !important;
    margin-bottom: 32px !important;
    color: var(--primary-dark) !important;
}

.sc-s-list li {
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(62, 35, 108, 0.05) !important;
}

.sc-s-list li strong {
    background: var(--bg-soft-purple);
    color: var(--primary-color) !important;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ─── 5. CTA REFINEMENT ─── */
/* Cleaned up sc-cta in favor of premium hp-cta used in Corporate page */
.sc-hero-visual {
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 991px) {
    .sc-why-camp > .container > div:last-of-type {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    #activities > .container > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
}

@media (max-width: 640px) {
    .sc-why-camp {
        padding: 72px 0 !important;
    }

    .sc-why-camp > .container > div:last-of-type {
        grid-template-columns: 1fr !important;
    }

    #activities,
    .hp-activities.hp-activities-premium,
    .crp-routine-section {
        padding: 80px 0 !important;
    }

    #activities > .container > div:first-child > div:last-child > div {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    #activities video[style*="max-height: 600px"] {
        max-height: 360px !important;
    }
}
