/* Labs page specific styles */
.labs-hero {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.labs-content {
    width: 100%;
    max-width: 1000px;
    padding: 0 1rem;
}

.labs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.labs-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 400;
}

.labs-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.labs-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Project Section */
.project-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.project-info {
    flex: 1;
    min-width: 300px;
}

.project-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.project-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.github-button, .docs-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.github-button {
    background-color: #171515;
    color: #fff;
    border: 1px solid #333;
}

.github-button:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}

.docs-button {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}

.docs-button:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Code Sample */
.project-visual {
    flex: 1;
    min-width: 300px;
}

.code-sample {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    overflow: auto;
    max-width: 100%;
    text-align: left;
}

.code-sample pre {
    margin: 0;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre;
    text-align: left;
}

.code-sample code {
    color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    display: block;
    text-align: left;
}

/* Features Section */
.features-section {
    margin-bottom: 5rem;
}

.features-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.feature p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Contribute Section */
.contribute-section {
    text-align: center;
    margin-bottom: 3rem;
}

.contribute-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.contribute-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .labs-hero {
        padding-top: 2.5rem;
        padding-bottom: 4rem;
    }
    
    .labs-title {
        font-size: 4rem;
    }
    
    .labs-description {
        font-size: 1.4rem;
    }
    
    .project-info h2, 
    .features-section h2,
    .contribute-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .labs-title {
        font-size: 3.5rem;
    }

    .labs-description {
        font-size: 1.2rem;
    }

    .project-section {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .project-info h2, 
    .features-section h2,
    .contribute-section h2 {
        font-size: 2rem;
    }
    
    .project-info p, 
    .contribute-section p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .feature h3 {
        font-size: 1.4rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .labs-hero {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
    
    .labs-header {
        margin-bottom: 3rem;
    }
    
    .labs-subtitle {
        font-size: 1.2rem;
    }
    
    .labs-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .labs-description {
        font-size: 1rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .project-info h2, 
    .features-section h2,
    .contribute-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .project-info p, 
    .contribute-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .github-button, .docs-button {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.4rem;
        font-size: 0.95rem;
    }
    
    .features-section {
        margin-bottom: 3rem;
    }
    
    .features-section h2 {
        margin-bottom: 2rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .feature p {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .labs-subtitle {
        font-size: 1.1rem;
    }
    
    .labs-title {
        font-size: 2.5rem;
    }
    
    .project-info h2, 
    .features-section h2,
    .contribute-section h2 {
        font-size: 1.6rem;
    }
    
    .feature {
        padding: 1.25rem;
    }
} 