/* Activities Section Styles - Cool4Scool */

/* Activity Icon Background Colors */
.bg-c4s-music-teal {
    background-color: #009689 !important;
}

.bg-c4s-english-red {
    background-color: #e7000b !important;
}

.bg-c4s-psychology-blue {
    background-color: #165dfc !important;
}

/* Activity Cards */
.activity-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
}



/* Activity Icon Wrapper */
.activity-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.activity-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.12);
}


/* Activity Features */
.activity-features {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.activity-features i {
    font-size: 1rem;
}


/* Activity Button */
.activity-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.activity-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Button hover removed */

/* Mobile Optimizations */
@media (max-width: 768px) {
    .activity-card {
        margin-bottom: 1.5rem;
    }

    .activity-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .activity-card:last-child {
        margin-bottom: 0;
    }
}

/* Animation Classes Removed for visibility */

/* Staggered Animation Delays */
.activity-card:nth-child(1) {
    animation-delay: 0.1s;
}

.activity-card:nth-child(2) {
    animation-delay: 0.2s;
}

.activity-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Loading State */
.activity-card.loading {
    pointer-events: none;
    opacity: 0.6;
}

.activity-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--c4s-green);
    border-top-color: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Hover Effects Removed */

/* Touch Device Optimizations - All hover/active effects removed */

/* Accessibility Focus States */
.activity-btn:focus {
    outline: 3px solid var(--c4s-green);
    outline-offset: 2px;
}

.activity-btn:focus:not(:focus-visible) {
    outline: none;
}

/* Print Styles */
@media print {
    .activity-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .activity-btn {
        display: none;
    }
}