/* Emergence Collective - Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #2c5282;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5282;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.section {
    padding: 80px 20px;
}

.alt-bg {
    background: #f8f9fa;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c5282;
    text-align: center;
}

.section-intro {
    font-size: 1.2em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #4a5568;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.two-column p {
    margin-bottom: 20px;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.role-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.role-card h3 {
    color: #2c5282;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.role-card em {
    color: #718096;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
}

.role-card p {
    margin-bottom: 15px;
}

.role-card ul {
    margin-left: 20px;
    margin-top: 15px;
}

.role-card li {
    margin-bottom: 10px;
    color: #4a5568;
}

.framework-footer {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.framework-footer h3 {
    color: #2c5282;
    margin-bottom: 20px;
}

.framework-footer ul {
    margin-left: 20px;
    margin-top: 20px;
}

.framework-footer li {
    margin-bottom: 15px;
}

.framework-footer strong {
    color: #2c5282;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.join-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.join-card h3 {
    color: #2c5282;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.join-card p {
    margin-bottom: 15px;
}

.join-card ul {
    margin: 20px 0 20px 20px;
}

.join-card li {
    margin-bottom: 10px;
    color: #4a5568;
}

.text-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-link:hover {
    color: #764ba2;
}

.signup-form {
    margin-top: 20px;
}

.signup-form input,
.signup-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
}

.signup-form input:focus,
.signup-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.4);
}

.vision-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vision-quote {
    font-size: 1.5em;
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
    padding: 40px;
    border-left: 4px solid white;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.vision-text {
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
}

footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer a {
    color: #667eea;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .join-options {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .section h2 {
        font-size: 2em;
    }
    
    .vision-quote {
        font-size: 1.2em;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .section {
        padding: 50px 20px;
    }
}
