/* TOP Page Specific Styles */

.hero-description {
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.next-event-section {
    text-align: center;
}

.next-event-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.next-event-card {
    background: rgba(107, 142, 35, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.next-event-name {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.next-event-date {
    font-size: 1.2rem;
    font-weight: 500;
}

.next-event-desc {
    margin-bottom: 30px;
}

.pillars-section {
    padding: 80px 0;
}

.pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-title {
    font-size: 2.2rem;
}

.pillars-subtitle {
    color: var(--text-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-item {
    margin: 0;
    padding: 40px 30px;
}

.pillar-title {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.story-section {
    margin-bottom: 100px;
}

.story-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-link {
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
}

.story-image-container {
    flex: 1;
    min-width: 300px;
}

.story-image-placeholder {
    background: var(--accent-color);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-image-placeholder p {
    color: var(--secondary-color);
    opacity: 0.5;
}
