/* Sections and Layout Styles - ElderWorldsStudio Templates */

.section {
    background: rgba(255,255,255,0.05);
    margin-bottom: 30px;
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #ba55d3;
    border-bottom: 2px solid #6a5acd;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #6a5acd, #ba55d3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Progress and Status Elements */
.progress-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 20px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6a5acd, #ba55d3);
    border-radius: 10px;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-planning { background: #ffa500; color: #000; }
.status-development { background: #00bfff; color: #000; }
.status-testing { background: #ffff00; color: #000; }
.status-completed { background: #00ff00; color: #000; }
.status-on-hold { background: #ff4500; color: #fff; }

/* Team Member Styles */
.team-member {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #6a5acd;
}

.team-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6a5acd, #ba55d3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.team-info h4 {
    margin-bottom: 5px;
    color: #ba55d3;
}

.team-info p {
    opacity: 0.8;
    font-size: 14px;
}

/* Responsive Sections */
@media (max-width: 768px) {
    .section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.4em;
    }
}