/* Acts of Kindness Page Styles */

/* Acts Grid */
.acts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .acts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .acts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Act Card */
.act-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.act-card:hover {
    transform: translateY(-5px);
}

.act-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.act-card h2 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.act-card p {
    color: var(--text-color);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.act-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.act-link:hover {
    color: var(--primary-dark);
}

/* Kindness Challenge */
.kindness-challenge {
    margin-bottom: 40px;
}

.kindness-challenge h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.challenge-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.challenge-icon {
    font-size: 2.5rem;
}

.challenge-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
}

.challenge-content p {
    color: var(--text-color);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.challenge-tasks {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.challenge-tasks li {
    color: var(--text-color);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.challenge-tasks li:last-child {
    border-bottom: none;
}

/* Share Section */
.share-section {
    text-align: center;
    margin-bottom: 40px;
}

.share-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.share-section p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.share-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .share-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.share-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.share-button:hover {
    transform: translateY(-5px);
    color: var(--text-color);
}

.share-icon {
    font-size: 2rem;
}

.share-button span {
    font-weight: 500;
}

/* Animations */
.act-card,
.challenge-card,
.share-button {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a.challenge-button,
.challenge-button {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

a.challenge-button:hover,
.challenge-button:hover,
a.challenge-button:focus,
.challenge-button:focus {
    background-color: var(--primary-color) !important;
    color: white !important;
    opacity: 0.9 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
} 