/* About Page Styles */

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

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

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

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

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

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

.about-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

/* Memorial Section */
.memorial-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.memorial-section h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
}

.memorial-section p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.memorial-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature h3 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.feature p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* Tribute Section */
.tribute-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tribute-section h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
}

.tribute-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

@media (min-width: 768px) {
    .tribute-content {
        grid-template-columns: 1fr 1fr;
    }
}

.tribute-text p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tribute-text p:last-child {
    margin-bottom: 0;
}

.tribute-image {
    text-align: center;
}

.memorial-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--card-shadow);
}

/* Get Involved Section */
.get-involved-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.get-involved-section h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

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

.involvement-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.involvement-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
    display: block;
}

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

.involvement-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.involvement-card h3 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.involvement-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
.about-card,
.feature,
.involvement-card {
    animation: fadeIn 0.5s ease-out;
}

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