/* Development Lab Page Styles */

/* Hero Section */
.lab-hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.lab-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.lab-hero-content {
    position: relative;
    z-index: 2;
}

.lab-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Lab Feature Cards */
.lab-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.lab-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.lab-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #7B68EE);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.lab-feature-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lab-feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Lab Sections */
.lab-section {
    padding: 4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.lab-section:last-child {
    border-bottom: none;
}

.lab-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4A90E2, #7B68EE);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lab-content h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lab-content .lead {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lab-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #555;
    font-weight: 500;
}

.lab-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.lab-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.lab-image:hover img {
    transform: scale(1.05);
}

/* Environment Cards */
.environment-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.environment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.environment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF8C42, #FFD700);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.environment-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.environment-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lab-hero-section {
        padding: 2rem 0;
        min-height: 80vh;
    }
    
    .lab-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .lab-stats .row {
        margin-top: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .lab-section {
        padding: 2rem 0;
    }
    
    .lab-content h3 {
        font-size: 1.5rem;
    }
    
    .lab-features {
        grid-template-columns: 1fr;
    }
    
    .lab-image img {
        height: 250px;
    }
    
    .lab-feature-card,
    .environment-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .lab-hero-content h1 {
        font-size: 2rem;
    }
    
    .lab-content h3 {
        font-size: 1.3rem;
    }
    
    .lab-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .lab-feature-icon,
    .environment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lab-feature-card,
.environment-card,
.lab-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4A90E2, #7B68EE);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #357ABD, #6A5ACD);
}
