/* Nature Educators Meet-ups Page Styles */

.nem-page {
    --nem-primary: #3a6b4a;
    --nem-primary-hover: #4a7c59;
    --nem-accent: #d4a373;
    --nem-bg: #f5f4ef;
    --nem-bg-light: #fafaf7;
    --nem-white: #ffffff;
    --nem-text-primary: #333;
    --nem-text-secondary: #666;
    --nem-text-muted: #777;
    --nem-border-light: rgba(0, 0, 0, 0.08);
    --nem-radius-lg: 16px;
    --nem-radius-md: 10px;
    --nem-radius-full: 100px;
    --nem-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: var(--nem-bg);
}

/* ── Hero Section ── */
.nem-hero {
    padding: 160px 10% 60px;
    text-align: center;
    background-color: transparent;
}

.nem-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: var(--nem-primary);
    margin-bottom: 0;
    font-weight: 400;
}

/* ── About Section ── */
.nem-about-section {
    padding: 40px 5% 60px;
}

.nem-about-card {
    max-width: 900px;
    margin: 0 auto;
}

.nem-about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--nem-text-secondary);
    margin-bottom: 24px;
}

.nem-about-content a {
    color: var(--nem-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.3s;
}

.nem-about-content a:hover {
    color: var(--nem-primary-hover);
}

/* ── Highlights Section ── */
.nem-highlights-section {
    padding: 60px 5% 80px;
    background: #fdfcf9;
    border-top: 1px solid var(--nem-border-light);
}

.nem-highlights-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.nem-highlight-card {
    flex: 1;
    background: var(--nem-white);
    border-radius: var(--nem-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--nem-transition);
    border-top: 4px solid var(--nem-primary);
}

.nem-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 124, 89, 0.1);
}

.nem-highlight-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--nem-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.nem-highlight-label {
    font-size: 0.95rem;
    color: var(--nem-text-muted);
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

/* ── Contact Section ── */
.nem-contact-section {
    padding: 60px 5% 80px;
    border-top: 1px solid var(--nem-border-light);
}

.nem-contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--nem-white);
    border-radius: var(--nem-radius-lg);
    padding: 40px 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.nem-contact-icon {
    width: 56px;
    height: 56px;
    background: var(--nem-primary);
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nem-contact-card p {
    font-size: 1.1rem;
    color: var(--nem-text-secondary);
    line-height: 1.8;
    margin: 0;
}

.nem-contact-card a {
    color: var(--nem-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.3s;
}

.nem-contact-card a:hover {
    color: var(--nem-primary-hover);
}

/* ── Explore More Section ── */
.nem-explore-more {
    text-align: center;
    padding: 60px 5% 80px;
    background-color: transparent;
}

.nem-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--nem-primary);
    color: #ffffff !important;
    border-radius: var(--nem-radius-full);
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--nem-transition);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.2);
}

.nem-explore-btn:hover {
    background: var(--nem-primary-hover);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nem-hero {
        padding: 120px 6% 40px;
    }

    .nem-hero h1 {
        font-size: 3.2rem;
    }

    .nem-about-section {
        padding: 30px 6% 40px;
    }

    .nem-highlights-container {
        flex-direction: column;
        gap: 20px;
    }

    .nem-highlight-card {
        padding: 30px 24px;
    }

    .nem-contact-card {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .nem-hero h1 {
        font-size: 2.4rem;
    }

    .nem-highlight-number {
        font-size: 2.8rem;
    }
}